Extension Switch

Provides a switch to toggle statuses of installed extensions.

What is Extension Switch?

Extension Switch is a Chrome extension developed by Goto Hayato, and its main feature is "Provides a switch to toggle statuses of installed extensions.".

Extension Screenshots

screenshot
screenshot

Download Extension Switch Extension CRX File

Download Extension Switch extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Extension Switch Extension Switch
ID gnphfcibcphlpedmaccolafjonmckcdn
Official URL https://chromewebstore.google.com/detail/extension-switch/gnphfcibcphlpedmaccolafjonmckcdn
Description Provides a switch to toggle statuses of installed extensions.
File Size 87.12 KB
Installation Count 8,136
Current Version 1.6.0
Last Updated 2021-04-15
Publish Date 2019-09-09
Rating 4.75/5 Total 73 Ratings
Developer Goto Hayato
Email [email protected]
Payment Type free
Extension Website https://gotohayato.com/work/chrome-extension-switch/
Help Page URL https://github.com/gh640/chrome-extension-extension-switch/issues
Supported Languages 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"
    ]
}