Extension Switch

Provides a switch to toggle statuses of installed extensions.

什么是Extension Switch?

Extension Switch是由Goto Hayato开发的Chrome扩展程序,该扩展的主要功能是“Provides a switch to toggle statuses of installed extensions.”。

扩展截图

screenshot
screenshot

下载Extension Switch扩展crx文件

下载Extension Switch扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 Switch Extension Switch
ID gnphfcibcphlpedmaccolafjonmckcdn
官方URL https://chromewebstore.google.com/detail/extension-switch/gnphfcibcphlpedmaccolafjonmckcdn
简介 Provides a switch to toggle statuses of installed extensions.
文件大小 87.12 KB
安装次数 8,136
当前版本 1.6.0
更新时间 2021-04-15
上架时间 2019-09-09
评分 4.75/5 共73次评分
开发者 Goto Hayato
电子邮箱 [email protected]
付费类型 free
扩展官网 https://gotohayato.com/work/chrome-extension-switch/
帮助页面URL https://github.com/gh640/chrome-extension-extension-switch/issues
支持的语言 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"
    ]
}