Extension Manager
Extension that manages other extensions
什么是Extension Manager?
Extension Manager是由Dummybug Studios开发的Chrome扩展程序,该扩展的主要功能是“Extension that manages other extensions”。
扩展截图
下载Extension Manager扩展crx文件
下载Extension Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
If you have tons of extensions but don't want to leave them all on at the same time - this extension is for you. You can use this to turn them on and off. Ctrl+L is the default keybinding to open the popup Move with arrow keys Press enter to turn toggle extensions on and off This is mostly for personal use but if you find it useful as well then great :)
扩展基本信息
名称 | Extension Manager |
ID | baamgahfpefickjomejmemkejkeglaek |
官方URL | https://chromewebstore.google.com/detail/extension-manager/baamgahfpefickjomejmemkejkeglaek |
简介 | Extension that manages other extensions |
文件大小 | 38.61 KB |
安装次数 | 969 |
当前版本 | 0.0.0.2 |
更新时间 | 2022-10-17 |
上架时间 | 2018-11-18 |
评分 | 4.45/5 共11次评分 |
开发者 | Dummybug Studios |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/DummybugStudios/ExtensionEnabler |
帮助页面URL | https://github.com/DummybugStudios/ExtensionEnabler/issues |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Extension Manager", "description": "Extension that manages other extensions", "version": "0.0.0.2", "action": { "default_popup": "popup.html", "default_script": "popup.js" }, "permissions": [ "management" ], "background": { "service_worker": "background.js" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+L" } } } } |