Disable/Enable your chrome extensions with the click of a button.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Disable All Extensions",
"manifest_version": 3,
"version": "1.6.2",
"description": "Disable/Enable your chrome extensions with the click of a button.",
"permissions": [
"contextMenus",
"management",
"storage"
],
"background": {
"service_worker": "./src/background.js",
"type": "module"
},
"icons": {
"16": "./public/images/appOn_16.png",
"48": "./public/images/appOn_48.png",
"128": "./public/images/appOn_128.png"
},
"action": {
"default_icon": "./public/images/appOff_16.png",
"default-popup": "./public/index.html"
},
"author": "Blinkzy"
}