Cleaner Reddit

This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.

什麼是Cleaner Reddit?

Cleaner Reddit是由Chema Leon開發的Chrome擴展程式,該擴展的主要功能是“This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Cleaner Reddit擴展crx文件

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

擴展使用說明

                        Update Version 1.2 - Now Cleaner Reddit allows you to toggle the visibility of Reddit's post flairs.

Update Version 1.1 - Now Cleaner Reddit allows you to toggle the visibility of Reddit's recommended links.

Cleaner Reddit allows users to toggle the visibility of Reddit's sidebar, their thumbnails or their voting arrows for a cleaner interface while visiting reddit.com.                    

擴展基本資訊

名稱 Cleaner Reddit Cleaner Reddit
ID fbmjfgjjjpjkkmiclfbhgaemglcjpjlh
官方網址 https://chromewebstore.google.com/detail/cleaner-reddit/fbmjfgjjjpjkkmiclfbhgaemglcjpjlh
簡介 This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.
檔案大小 430 KB
安裝次數 47
目前版本 1.2
更新時間 2018-11-09
上架時間 2018-11-09
評分 5.00/5 共 2 次評分
開發者 Chema Leon
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cleaner Reddit",
    "description": "This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.",
    "version": "1.2",
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "name": "Toggle Sidebar",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "background",
        "storage",
        "*:\/\/www.reddit.com\/*",
        "*:\/\/reddit.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "ThirdParty\/jquery-3.2.1.min.js",
                "popup.js"
            ],
            "matches": [
                "*:\/\/www.reddit.com\/*",
                "*:\/\/reddit.com\/*"
            ]
        }
    ]
}