Extension Switch
Provides a switch to toggle statuses of installed extensions.
Wat is Extension Switch?
Extension Switch is een Chrome-extensie ontwikkeld door Goto Hayato, en de belangrijkste functie is "Provides a switch to toggle statuses of installed extensions.".
Extensie Screenshots
Download het CRX-bestand van de extensie Extension Switch
Download Extension Switch-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 :)
Basisinformatie over de Extensie
Naam | Extension Switch |
ID | gnphfcibcphlpedmaccolafjonmckcdn |
Officiële URL | https://chromewebstore.google.com/detail/extension-switch/gnphfcibcphlpedmaccolafjonmckcdn |
Beschrijving | Provides a switch to toggle statuses of installed extensions. |
Bestandsgrootte | 87.12 KB |
Aantal Installaties | 8,136 |
Huidige Versie | 1.6.0 |
Laatst Bijgewerkt | 2021-04-15 |
Publicatiedatum | 2019-09-09 |
Beoordeling | 4.75/5 Totaal 73 Beoordelingen |
Ontwikkelaar | Goto Hayato |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://gotohayato.com/work/chrome-extension-switch/ |
Help Pagina-URL | https://github.com/gh640/chrome-extension-extension-switch/issues |
Ondersteunde Talen | 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" ] } |