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": "__MSG_appName__",
"description": "__MSG_appDesc__",
"version": "1.3.5",
"default_locale": "en",
"permissions": [
"alarms",
"storage",
"tabs",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"webNavigation"
],
"icons": {
"16": "icons\/icon.png",
"48": "icons\/icon.png",
"128": "icons\/icon.png"
},
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "icons\/icon-transparent.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"web_accessible_resources": [
{
"resources": [
"blocked.html",
"helper\/*.js",
"json\/*.json",
"icons\/*.png",
"json\/popup-ads.json"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}