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.5.1",
"default_locale": "en",
"permissions": [
"alarms",
"storage",
"tabs",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess"
],
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_script.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"action": {
"default_popup": "\/popup\/popup.html",
"default_icon": {
"128": "images\/icon-transparent.png"
}
},
"options_ui": {
"page": "\/options\/options.html",
"open_in_tab": true
},
"web_accessible_resources": [
{
"resources": [
"info_popup\/blocked.html",
"data\/*.json",
"images\/*.png"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": false
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}