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_shortDesc__",
"default_locale": "en",
"version": "1.0.2",
"permissions": [
"tabs",
"storage",
"webNavigation",
"declarativeNetRequest"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "Popup Blocker",
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"offline_enabled": false,
"declarative_net_request": {
"rule_resources": [
{
"id": "redirect_placeholders",
"enabled": true,
"path": "rules\/redirect_rules.json"
}
]
},
"web_accessible_resources": [
{
"resources": [
"pageBridge.js",
"welcome\/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
]
}