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
官方URL 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
}