Inspect and view changes in uBlock Origin v3 2025 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",
"author": "Raymond Hill & contributors",
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"action": {
"default_icon": {
"16": "img/icon_16.png",
"32": "img/icon_32.png",
"64": "img/icon_64.png"
},
"default_popup": "popup-fenix.html",
"default_title": "uBlock Origin v3 2025"
},
"commands": {
"launch-element-picker": {
"description": "__MSG_popupTipPicker__"
},
"launch-element-zapper": {
"description": "__MSG_popupTipZapper__"
},
"launch-logger": {
"description": "__MSG_popupTipLog__"
},
"open-dashboard": {
"description": "__MSG_popupTipDashboard__"
},
"relax-blocking-mode": {
"description": "__MSG_relaxBlockingMode__"
},
"toggle-cosmetic-filtering": {
"description": "__MSG_toggleCosmeticFiltering__"
},
"toggle-javascript": {
"description": "__MSG_toggleJavascript__"
},
"open-welcome-page": {
"description": "Open welcome page"
}
},
"content_scripts": [
{
"all_frames": true,
"js": [
"/js/vapi.js",
"/js/vapi-client.js",
"/js/contentscript.js"
],
"match_about_blank": true,
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
},
{
"all_frames": false,
"js": [
"/js/scriptlets/subscriber.js"
],
"matches": [
"https://easylist.to/*",
"https://*.fanboy.co.nz/*",
"https://filterlists.com/*",
"https://forums.lanik.us/*",
"https://github.com/*",
"https://*.github.io/*"
],
"run_at": "document_idle"
},
{
"all_frames": false,
"js": [
"/js/scriptlets/updater.js"
],
"matches": [
"https://github.com/uBlockOrigin/*",
"https://ublockorigin.github.io/*",
"https://*.reddit.com/r/uBlockOrigin/*"
],
"run_at": "document_idle"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"default_locale": "en",
"description": "__MSG_extShortDesc__",
"icons": {
"16": "img/icon_16.png",
"32": "img/icon_32.png",
"64": "img/icon_64.png",
"128": "img/icon_128.png"
},
"incognito": "split",
"manifest_version": 3,
"minimum_chrome_version": "88.0",
"name": "uBlock Origin v3 2025",
"options_ui": {
"open_in_tab": true,
"page": "dashboard.html"
},
"permissions": [
"alarms",
"contextMenus",
"declarativeNetRequest",
"privacy",
"storage",
"tabs",
"unlimitedStorage",
"webNavigation",
"webRequest"
],
"short_name": "uBlock₀",
"storage": {
"managed_schema": "managed_storage.json"
},
"version": "3.0.2",
"web_accessible_resources": [
{
"resources": [
"/web_accessible_resources/*",
"welcome.html"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules/declarativeNetRequestRules.json"
}
]
}
}