Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Javascript Toggle",
"version": "1.0",
"description": "Activate this extension to enable or disable JavaScript in any website with just one click ",
"icons": {
"16": "icon 16.png",
"32": "icon 32.png",
"64": "icon 64.png",
"128": "icon 128.png"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"activeTab",
"contentSettings",
"notifications"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "Javascript Toggle",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
]
}