Extension Switch

Provides a switch to toggle statuses of installed extensions.

Was ist Extension Switch?

Extension Switch ist eine Chrome-Erweiterung, die von Goto Hayato entwickelt wurde, und ihr Hauptmerkmal ist "Provides a switch to toggle statuses of installed extensions.".

Erweiterungsscreenshots

screenshot
screenshot

Extension Switch-Erweiterungs-CRX-Datei herunterladen

Laden Sie Extension Switch-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Extension Switch Extension Switch
ID gnphfcibcphlpedmaccolafjonmckcdn
Offizielle URL https://chromewebstore.google.com/detail/extension-switch/gnphfcibcphlpedmaccolafjonmckcdn
Beschreibung Provides a switch to toggle statuses of installed extensions.
Dateigröße 87.12 KB
Installationsanzahl 8,136
Aktuelle Version 1.6.0
Letztes Update 2021-04-15
Veröffentlichungsdatum 2019-09-09
Bewertung 4.75/5 Insgesamt 73 Bewertungen
Entwickler Goto Hayato
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://gotohayato.com/work/chrome-extension-switch/
Hilfeseite URL https://github.com/gh640/chrome-extension-extension-switch/issues
Unterstützte Sprachen 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"
    ]
}