Inspect and view changes in Adblock Plus - free ad 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
{
"author": "eyeo GmbH",
"content_scripts": [
{
"all_frames": true,
"js": [
"vendor/@eyeo/webext-ad-filtering-solution/content.js",
"polyfill.js",
"composer.preload.js",
"bypass.preload.js"
],
"match_about_blank": true,
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
},
{
"js": [
"onpage-dialog.preload.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
},
{
"all_frames": true,
"js": [
"onpage-dialog-ui.preload.js"
],
"match_about_blank": true,
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
},
{
"js": [
"yt-auto-allowlist.preload.js"
],
"matches": [
"*://*.youtube.com/*"
],
"run_at": "document_start"
},
{
"all_frames": true,
"js": [
"yt-player-controls.preload.js"
],
"matches": [
"*://*.youtube-nocookie.com/embed/*"
],
"run_at": "document_start"
},
{
"js": [
"polyfill.js",
"premium.preload.js",
"premium-onboarding.preload.js"
],
"matches": [
"https://accounts.adblockplus.org/premium",
"https://accounts.adblockplus.org/premium?*",
"https://accounts.adblockplus.org/*/premium",
"https://accounts.adblockplus.org/*/premium?*"
],
"run_at": "document_start"
},
{
"js": [
"polyfill.js",
"info-injector.preload.js"
],
"matches": [
"https://adblockplus.org/*",
"https://accounts.adblockplus.org/*",
"https://new.adblockplus.org/*",
"https://welcome.adblockplus.org/*",
"https://getadblock.com/*",
"https://vpn.getadblock.com/*"
],
"run_at": "document_start"
},
{
"js": [
"polyfill.js",
"options.preload.js"
],
"matches": [
"https://adblockplus.org/installed",
"https://adblockplus.org/installed?*",
"https://adblockplus.org/*/installed",
"https://adblockplus.org/*/installed?*",
"https://welcome.adblockplus.org/*/installed",
"https://welcome.adblockplus.org/*/installed?*"
],
"run_at": "document_idle"
},
{
"all_frames": true,
"js": [
"public-api.preload.js"
],
"matches": [
"https://ext-bridge.eyeo.com/"
],
"run_at": "document_start"
}
],
"name": "__MSG_name_releasebuild__",
"short_name": "__MSG_name__",
"description": "__MSG_description__",
"default_locale": "en_US",
"devtools_page": "devtools.html",
"icons": {
"16": "icons/abp-16.png",
"32": "icons/abp-32.png",
"48": "icons/logo/abp-48.png",
"64": "icons/logo/abp-64.png",
"128": "icons/logo/abp-128.png"
},
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"optional_permissions": [
"contentSettings",
"management"
],
"storage": {
"managed_schema": "managed-storage-schema.json"
},
"manifest_version": 2,
"background": {
"persistent": true,
"scripts": [
"polyfill.js",
"background.js"
]
},
"browser_action": {
"default_icon": {
"16": "icons/abp-16.png",
"20": "icons/abp-20.png",
"32": "icons/abp-32.png",
"40": "icons/abp-40.png"
},
"default_popup": "popup.html",
"default_title": "__MSG_name__"
},
"minimum_chrome_version": "79.0",
"minimum_opera_version": "66.0",
"permissions": [
"<all_urls>",
"alarms",
"contextMenus",
"notifications",
"storage",
"tabs",
"unlimitedStorage",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"version": "4.18.0",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}