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