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" ] } |