Reddit-Sidebar-Hider
This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…
什麼是Reddit-Sidebar-Hider?
Reddit-Sidebar-Hider是由Nick Chirico開發的Chrome擴展程式,該擴展的主要功能是“This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…”。
擴展截圖
下載Reddit-Sidebar-Hider擴展crx文件
下載Reddit-Sidebar-Hider擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click the icon in the chrome extension menu. Preferences are stored, and used on each Reddit page load. Source code can be found at https://github.com/kiddico/Reddit-Sidebar-Hider
擴展基本資訊
名稱 | Reddit-Sidebar-Hider |
ID | aipfmjljjkiepeocilaillicdohnkehp |
官方網址 | https://chromewebstore.google.com/detail/reddit-sidebar-hider/aipfmjljjkiepeocilaillicdohnkehp |
簡介 | This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click… |
檔案大小 | 18.06 KB |
安裝次數 | 17 |
目前版本 | 1.4 |
更新時間 | 2017-01-07 |
上架時間 | 2017-01-06 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Nick Chirico |
付費類型 | free |
擴展官網 | https://github.com/kiddico/Reddit-Sidebar-Hider |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reddit-Sidebar-Hider", "version": "1.4", "permissions": [ "storage", "tabs", "https:\/\/www.reddit.com\/*", "http:\/\/www.reddit.com\/*" ], "icons": { "16": "images\/16_icon.png", "32": "images\/32_icon.png", "64": "images\/64_icon.png", "128": "images\/128_icon.png" }, "content_scripts": [ { "all_frames": true, "matches": [ "https:\/\/www.reddit.com\/*", "http:\/\/www.reddit.com\/*", "http:\/\/np.reddit.com\/*", "https:\/\/np.reddit.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "images\/128_icon.png", "default_title": "Toggle Reddit Sidebar" }, "background": { "scripts": [ "eventpage.js" ], "persistent": false }, "externally_connectable": { "ids": [ "*" ], "matches": [ "https:\/\/www.reddit.com\/*", "http:\/\/www.reddit.com\/*", "http:\/\/np.reddit.com\/*", "https:\/\/np.reddit.com\/*" ] }, "web_accessible_resources": [ "images\/*.png" ] } |