Reddit Sidebar Collapser

Hide the Reddit sidebar until you actually need it.

什麼是Reddit Sidebar Collapser?

Reddit Sidebar Collapser是由awswrd開發的Chrome擴展程式,該擴展的主要功能是“Hide the Reddit sidebar until you actually need it.”。

擴展截圖

screenshot

下載Reddit Sidebar Collapser擴展crx文件

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

擴展使用說明

                        Posts with lots of text in reddit can become extremely crowded by the sidebar, especially if you frequently have two windows open side by side. This extension fixes that by adding a widget to the top of the sidebar to collapse and expand it as needed.

If you'd rather have the sidebar still there, but have the option to collapse it, you can change the default behavior in the options page.                    

擴展基本資訊

名稱 Reddit Sidebar Collapser Reddit Sidebar Collapser
ID kkbbjempbnpnfmeldlaghacohkcaiind
官方網址 https://chromewebstore.google.com/detail/reddit-sidebar-collapser/kkbbjempbnpnfmeldlaghacohkcaiind
簡介 Hide the Reddit sidebar until you actually need it.
檔案大小 7.68 KB
安裝次數 29
目前版本 1.0.3
更新時間 2013-06-20
上架時間 2013-06-19
評分 2.00/5 共 1 次評分
開發者 awswrd
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Sidebar Collapser",
    "description": "Hide the Reddit sidebar until you actually need it.",
    "version": "1.0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.reddit.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}