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",
"version": "0.1.3",
"manifest_version": 3,
"name": "No Service Worker",
"homepage_url": "https:\/\/mybrowseraddon.com\/no-service-worker.html",
"description": "Disable service workers on all websites (and whitelist desired domains).",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"contextMenus"
],
"action": {
"default_title": "No Service Worker",
"default_popup": "data\/popup\/popup.html",
"default_icon": {
"16": "data\/icons\/16.png",
"32": "data\/icons\/32.png",
"48": "data\/icons\/48.png",
"64": "data\/icons\/64.png"
}
},
"content_scripts": [
{
"world": "MAIN",
"all_frames": true,
"matches": [
"*:\/\/*\/*"
],
"match_about_blank": true,
"run_at": "document_start",
"match_origin_as_fallback": true,
"js": [
"data\/content_script\/page_context\/inject.js"
]
},
{
"world": "ISOLATED",
"all_frames": true,
"matches": [
"*:\/\/*\/*"
],
"match_about_blank": true,
"run_at": "document_start",
"match_origin_as_fallback": true,
"js": [
"data\/content_script\/inject.js"
]
}
],
"icons": {
"16": "data\/icons\/16.png",
"32": "data\/icons\/32.png",
"48": "data\/icons\/48.png",
"64": "data\/icons\/64.png",
"128": "data\/icons\/128.png"
}
}