Inspect and view changes in Remove Annoying Ads 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",
"version": "1.3.2",
"manifest_version": 3,
"name": "Remove Annoying Ads",
"description": "Remove Annoying Ads is a powerfull tool that allows you to block annoying ads and trackers!",
"options_page": "options.html",
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon_16.png",
"32": "icon_32.png"
}
},
"content_scripts": [
{
"all_frames": false,
"js": [
"content.bundle.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
},
{
"all_frames": false,
"js": [
"blockAdContent.bundle.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_end"
},
{
"all_frames": false,
"js": [
"trialPopups.bundle.js"
],
"css": [
"popups.css"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icon_16.png",
"32": "icon_32.png",
"64": "icon_64.png",
"128": "icon_128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "block_ads",
"enabled": true,
"path": "rules.json"
}
]
},
"permissions": [
"tabs",
"webRequest",
"storage",
"unlimitedStorage",
"declarativeNetRequest"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"minimum_chrome_version": "88",
"web_accessible_resources": [
{
"resources": [
"tutorial.html",
"icon_64.png",
"logo.png",
"switch.png",
"check-mark.svg",
"total-ads.png",
"total-trackers.png",
"trial-exp-popup-img.png",
"popups.css"
],
"matches": [
"<all_urls>"
]
}
]
}