Inspect and view changes in Removing 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
{
"manifest_version": 3,
"name": "Removing Ads",
"version": "0.0.8",
"description": "RemovingAds is a free and powerful ad blocker extension for Chrome and other browsers.",
"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": [
{
"js": [
"edgeExtensionEmbedBlock.bundle.js"
],
"matches": [
"*://*.google.com/*",
"*://*.google.ru/*",
"*://*.bing.com/*",
"*://*.yahoo.com/*",
"*://*.dzen.ru/*",
"*://*.ya.ru/*"
],
"css": [
"edgeExtensionEmbedBlockStyles.css"
]
}
],
"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",
"activeTab",
"webRequest",
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
{
"resources": [
"tutorial.html",
"icon_64.png",
"logo.png",
"switch.png",
"check-mark.svg",
"popups.css",
"total-ads.png",
"total-trackers.png"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}