Inspect and view changes in Popup Blocker for Google Chrome™ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"background": {
"service_worker": "/bg/background-mv3.js"
},
"action": {
"default_popup": "ui/popup/popup.html"
},
"commands": {
"allow-last-request": {
"description": "__MSG_context_item2__"
},
"deny-last-request": {
"description": "__MSG_context_item3__"
}
},
"content_scripts": [
{
"all_frames": true,
"js": [
"inject/blocker.js"
],
"match_about_blank": true,
"matches": [
"<all_urls>"
],
"run_at": "document_start"
},
{
"all_frames": false,
"js": [
"inject/iframe.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start"
}
],
"default_locale": "en",
"description": "__MSG_app_description__",
"homepage_url": "https://popup-blocker.dllplayer.com/",
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png",
"128": "icons/128.png",
"256": "icons/256.png",
"512": "icons/512.png"
},
"manifest_version": 3,
"name": "__MSG_app_name__",
"options_ui": {
"open_in_tab": true,
"page": "ui/options/index.html"
},
"permissions": [
"activeTab",
"storage",
"contextMenus"
],
"version": "3.0.0",
"web_accessible_resources": [
{
"resources": [
"ui/*"
],
"matches": [
"<all_urls>"
]
}
]
}