Inspect and view changes in Ad Blocker Notice Removal 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",
"name": "Ad Blocker Notice Removal",
"version": "2.0.9",
"author": "Jason M",
"description": "Remove the ad blocker notice on popular sites",
"manifest_version": 3,
"icons": {
"16": "/icons/16.png",
"32": "/icons/32.png",
"48": "/icons/48.png",
"128": "/icons/128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"arrive.min.js",
"contentScript.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "serviceWorker.js"
},
"action": {
"default_title": "Ad Blocker Notice Removal",
"default_popup": "popup.html"
},
"permissions": [
"contextMenus",
"alarms",
"tabs"
]
}