Extension Switch
Provides a switch to toggle statuses of installed extensions.
Qu'est-ce que Extension Switch ?
Extension Switch est une extension Chrome développée par Goto Hayato, et sa fonction principale est "Provides a switch to toggle statuses of installed extensions.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Extension Switch
Téléchargez les fichiers d'extension Extension Switch au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 :)
Informations de Base sur l'Extension
Nom | Extension Switch |
ID | gnphfcibcphlpedmaccolafjonmckcdn |
URL Officiel | https://chromewebstore.google.com/detail/extension-switch/gnphfcibcphlpedmaccolafjonmckcdn |
Description | Provides a switch to toggle statuses of installed extensions. |
Taille du Fichier | 87.12 KB |
Nombre d'Installations | 8,136 |
Version Actuelle | 1.6.0 |
Dernière Mise à Jour | 2021-04-15 |
Date de Publication | 2019-09-09 |
Évaluation | 4.75/5 Total 73 Évaluations |
Développeur | Goto Hayato |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://gotohayato.com/work/chrome-extension-switch/ |
URL de la Page d'Aide | https://github.com/gh640/chrome-extension-extension-switch/issues |
Langues Prises en Charge | 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" ] } |