Inspect and view changes in Gone Pop-up Blocker 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",
"manifest_version": 3,
"name": "Gone Pop-up Blocker",
"version": "1.0.4",
"description": "Pop-up notification blocker",
"icons": {
"16": "icons/icon_active_16.png",
"32": "icons/icon_active_32.png",
"48": "icons/icon_active_48.png",
"128": "icons/icon_active_128.png"
},
"web_accessible_resources": [
{
"resources": [
"img/logo.png",
"icons/icon_active_128.png"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Gone Pop-up Blocker",
"default_popup": "popups/popup.html"
},
"host_permissions": [
"*://*.gonepopupblocker.com/*",
"*://*.adgone.org/*",
"*://*.gonesoftware.com/*"
],
"permissions": [
"storage",
"tabs",
"cookies",
"alarms",
"contentSettings",
"contextMenus",
"notifications"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_idle",
"js": [
"contentScript.js"
]
}
]
}