Sidebar Toggle
Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E
什麼是Sidebar Toggle?
Sidebar Toggle是由https://rahatol.com開發的Chrome擴展程式,該擴展的主要功能是“Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E”。
擴展截圖
下載Sidebar Toggle擴展crx文件
下載Sidebar Toggle擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Clear the arbitrary spaces in pages that are constantly open on your screen. Currently only on pages: - Reddit - Wikipedia - Youtube - Facebook I can add more sites on demand. Note: Because wikipedia pages can be hosted on sites other than wikipedia.org the permissions require you to allow for all pages. I dont do anything other than remove some css elements and this can be seen on the extension code https://github.com/sinanm89/Wiki-NavBar-Toggle
擴展基本資訊
名稱 | Sidebar Toggle |
ID | phedkmlklpciilhmiombagckiidaghje |
官方網址 | https://chromewebstore.google.com/detail/sidebar-toggle/phedkmlklpciilhmiombagckiidaghje |
簡介 | Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E |
檔案大小 | 23.96 KB |
安裝次數 | 96 |
目前版本 | 0.1.0.1 |
更新時間 | 2017-11-02 |
上架時間 | 2017-11-01 |
評分 | 5.00/5 共 6 次評分 |
開發者 | https://rahatol.com |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "permissions": [ "storage", "*:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "onload.js" ] } ], "browser_action": { "default_icon": "fold.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Ctrl+Shift+E" } } }, "author": "Sinan Midillili", "name": "Sidebar Toggle", "short_name": "ST", "description": "Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command\/Ctrl+Shift+E", "version": "0.1.0.1", "manifest_version": 2, "icons": { "16": "fold.png", "48": "fold.png", "128": "fold.png" } } |