Extension Switch
Provides a switch to toggle statuses of installed extensions.
什麼是Extension Switch?
Extension Switch是由Goto Hayato開發的Chrome擴展程式,該擴展的主要功能是“Provides a switch to toggle statuses of installed extensions.”。
擴展截圖
下載Extension Switch擴展crx文件
下載Extension Switch擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is an extension to switch on/off installed extensions quickly. You just have to click the name of the extension you want to toggle. This extension has that simple function and is as small as possible. This is useful especially for developers and people who make use of many extensions. Thank you for kind reviews. The developer reads all the reviews :)
擴展基本資訊
名稱 | Extension Switch |
ID | gnphfcibcphlpedmaccolafjonmckcdn |
官方網址 | https://chromewebstore.google.com/detail/extension-switch/gnphfcibcphlpedmaccolafjonmckcdn |
簡介 | Provides a switch to toggle statuses of installed extensions. |
檔案大小 | 87.12 KB |
安裝次數 | 8,136 |
目前版本 | 1.6.0 |
更新時間 | 2021-04-15 |
上架時間 | 2019-09-09 |
評分 | 4.75/5 共 73 次評分 |
開發者 | Goto Hayato |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://gotohayato.com/work/chrome-extension-switch/ |
說明頁面URL | https://github.com/gh640/chrome-extension-extension-switch/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Extension Switch", "short_name": "Extension Switch", "description": "Provides a switch to toggle statuses of installed extensions.", "version": "1.6.0", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "icons": { "19": "images\/icon19.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "default_title": "Click to switch extensions", "default_popup": "html\/popup.html" }, "options_ui": { "page": "html\/options.html" }, "background": { "scripts": [ "scripts\/update.js" ], "persistent": false }, "permissions": [ "management", "storage", "notifications" ] } |