Extension Switch
Provides a switch to toggle statuses of installed extensions.
O que é Extension Switch?
Extension Switch é uma extensão do Chrome desenvolvida por Goto Hayato, e sua principal característica é "Provides a switch to toggle statuses of installed extensions.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Extension Switch
Baixe arquivos de extensão Extension Switch no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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 :)
Informações Básicas da Extensão
Nome | Extension Switch |
ID | gnphfcibcphlpedmaccolafjonmckcdn |
URL Oficial | https://chromewebstore.google.com/detail/extension-switch/gnphfcibcphlpedmaccolafjonmckcdn |
Descrição | Provides a switch to toggle statuses of installed extensions. |
Tamanho do Arquivo | 87.12 KB |
Contagem de Instalações | 8,136 |
Versão Atual | 1.6.0 |
Última Atualização | 2021-04-15 |
Data de Publicação | 2019-09-09 |
Classificação | 4.75/5 Total de 73 Avaliações |
Desenvolvedor | Goto Hayato |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://gotohayato.com/work/chrome-extension-switch/ |
URL da Página de Ajuda | https://github.com/gh640/chrome-extension-extension-switch/issues |
Idiomas Suportados | 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" ] } |