Reddit Column View

Splits posts into columns. Compatible with old and new Reddit layouts.

什麼是Reddit Column View?

Reddit Column View是由omniZero開發的Chrome擴展程式,該擴展的主要功能是“Splits posts into columns. Compatible with old and new Reddit layouts.”。

擴展截圖

screenshot
screenshot
screenshot

下載Reddit Column View擴展crx文件

下載Reddit Column View擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Rearranges posts into columns! Works with old Reddit and with redesign (in Card layout; Classic and Compact aren't currently fully supported).

Number of columns scales with screen resolution and can be forced via extension's settings.                    

擴展基本資訊

名稱 Reddit Column View Reddit Column View
ID ipomnohmaidpmcbgnlmcndlhdlmikicc
官方網址 https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc
簡介 Splits posts into columns. Compatible with old and new Reddit layouts.
檔案大小 97.43 KB
安裝次數 157
目前版本 1.0.7
更新時間 2021-02-15
上架時間 2021-01-14
評分 4.60/5 共 5 次評分
開發者 omniZero
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Column View",
    "version": "1.0.7",
    "description": "Splits posts into columns. Compatible with old and new Reddit layouts.",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/*",
                "https:\/\/old.reddit.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "images\/*.ico"
    ],
    "manifest_version": 2
}