Inspect and view changes in Cookie Popup 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": "Cookie Popup Blocker",
"description": "Lets you hide annoying popups",
"version": "1.0",
"icons": {
"128": "icon_128.png"
},
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"jquery-3.1.1.js",
"content.js"
]
}
],
"permissions": [
"activeTab",
"scripting",
"storage"
],
"background": {
"service_worker": "background.js"
}
}