Extension Switch

Provides a switch to toggle statuses of installed extensions.

Cos'è Extension Switch?

Extension Switch è un'estensione di Chrome sviluppata da Goto Hayato, e la sua funzione principale è "Provides a switch to toggle statuses of installed extensions.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Extension Switch

Scarica i file di estensione Extension Switch in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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 :)                    

Informazioni di Base sull'Estensione

Nome Extension Switch Extension Switch
ID gnphfcibcphlpedmaccolafjonmckcdn
URL Ufficiale https://chromewebstore.google.com/detail/extension-switch/gnphfcibcphlpedmaccolafjonmckcdn
Descrizione Provides a switch to toggle statuses of installed extensions.
Dimensione del File 87.12 KB
Conteggio Installazioni 8,136
Versione Corrente 1.6.0
Ultimo Aggiornamento 2021-04-15
Data di Pubblicazione 2019-09-09
Valutazione 4.75/5 Totale 73 Valutazioni
Sviluppatore Goto Hayato
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://gotohayato.com/work/chrome-extension-switch/
URL della Pagina di Aiuto https://github.com/gh640/chrome-extension-extension-switch/issues
Lingue Supportate 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"
    ]
}