@andrew-hall's solution doesn't work any more. Trying many options I was frustrated. Then thanks to @thomas-mueller, I found a chrome extension which can access chrome://extensions
:
Here is the manifest of it:
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Disable All Extensions",
"manifest_version": 3,
"version": "1.4.3",
"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"
}
It's interesting it doesn't have matches
whatsoever(not even content_scripts
), and I was thinking it to be a mandatory field.