Disable All Extensions

Disable All Extensions

Disable/Enable your chrome extensions with the click of a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Disable All Extensions",
  "manifest_version": 3,
  "version": "1.5.1",
  "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"
}