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 |
公式URL | 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 |
Eメール | [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" ] } |