2016-10-15 06:35:51 -06:00
|
|
|
{
|
2020-01-30 10:46:54 -07:00
|
|
|
"author": "Raymond Hill & contributors",
|
2018-04-27 09:43:35 -06:00
|
|
|
"background": {
|
|
|
|
"page": "background.html"
|
|
|
|
},
|
|
|
|
"browser_action": {
|
|
|
|
"browser_style": false,
|
2023-08-20 06:38:42 -06:00
|
|
|
"default_area": "navbar",
|
2018-04-27 09:43:35 -06:00
|
|
|
"default_icon": {
|
2018-05-07 17:03:50 -06:00
|
|
|
"16": "img/icon_16.png",
|
2023-03-27 10:59:39 -06:00
|
|
|
"32": "img/icon_32.png",
|
|
|
|
"64": "img/icon_64.png"
|
2018-04-27 09:43:35 -06:00
|
|
|
},
|
|
|
|
"default_title": "uBlock Origin",
|
2020-04-30 04:54:51 -06:00
|
|
|
"default_popup": "popup-fenix.html"
|
2018-04-27 09:43:35 -06:00
|
|
|
},
|
2019-05-06 09:34:15 -06:00
|
|
|
"browser_specific_settings": {
|
|
|
|
"gecko": {
|
|
|
|
"id": "uBlock0@raymondhill.net",
|
2023-10-11 10:32:38 -06:00
|
|
|
"strict_min_version": "78.0"
|
|
|
|
},
|
|
|
|
"gecko_android": {
|
2023-02-16 08:47:43 -07:00
|
|
|
"strict_min_version": "79.0"
|
2019-05-06 09:34:15 -06:00
|
|
|
}
|
|
|
|
},
|
2018-04-27 09:43:35 -06:00
|
|
|
"commands": {
|
2019-11-09 07:53:31 -07:00
|
|
|
"_execute_browser_action": {
|
|
|
|
},
|
2018-04-27 09:43:35 -06:00
|
|
|
"launch-element-zapper": {
|
|
|
|
"description": "__MSG_popupTipZapper__"
|
|
|
|
},
|
|
|
|
"launch-element-picker": {
|
|
|
|
"description": "__MSG_popupTipPicker__"
|
|
|
|
},
|
|
|
|
"launch-logger": {
|
|
|
|
"description": "__MSG_popupTipLog__"
|
2019-06-26 15:17:41 -06:00
|
|
|
},
|
2020-04-30 08:31:23 -06:00
|
|
|
"open-dashboard": {
|
|
|
|
"description": "__MSG_popupTipDashboard__"
|
|
|
|
},
|
2019-06-27 06:16:18 -06:00
|
|
|
"relax-blocking-mode": {
|
|
|
|
"description": "__MSG_relaxBlockingMode__"
|
2022-02-22 06:44:09 -07:00
|
|
|
},
|
|
|
|
"toggle-cosmetic-filtering": {
|
|
|
|
"description": "__MSG_toggleCosmeticFiltering__"
|
2024-01-12 15:34:59 -07:00
|
|
|
},
|
|
|
|
"toggle-javascript": {
|
|
|
|
"description": "__MSG_toggleJavascript__"
|
2018-04-27 09:43:35 -06:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": [
|
|
|
|
"http://*/*",
|
|
|
|
"https://*/*",
|
|
|
|
"file://*/*"
|
|
|
|
],
|
|
|
|
"js": [
|
|
|
|
"/js/vapi.js",
|
|
|
|
"/js/vapi-client.js",
|
|
|
|
"/js/contentscript.js"
|
|
|
|
],
|
2020-07-19 07:06:19 -06:00
|
|
|
"all_frames": true,
|
|
|
|
"match_about_blank": true,
|
|
|
|
"run_at": "document_start"
|
2018-04-27 09:43:35 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"matches": [
|
2020-09-14 06:43:51 -06:00
|
|
|
"https://easylist.to/*",
|
2020-09-14 13:46:24 -06:00
|
|
|
"https://*.fanboy.co.nz/*",
|
2020-09-13 06:01:53 -06:00
|
|
|
"https://filterlists.com/*",
|
2020-09-14 13:37:53 -06:00
|
|
|
"https://forums.lanik.us/*",
|
2020-09-13 06:01:53 -06:00
|
|
|
"https://github.com/*",
|
2024-04-03 08:51:39 -06:00
|
|
|
"https://*.github.io/*"
|
2018-04-27 09:43:35 -06:00
|
|
|
],
|
|
|
|
"js": [
|
|
|
|
"/js/scriptlets/subscriber.js"
|
|
|
|
],
|
|
|
|
"run_at": "document_idle",
|
|
|
|
"all_frames": false
|
2023-10-14 11:55:46 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"matches": [
|
|
|
|
"https://github.com/uBlockOrigin/*",
|
|
|
|
"https://ublockorigin.github.io/*",
|
|
|
|
"https://*.reddit.com/r/uBlockOrigin/*"
|
|
|
|
],
|
|
|
|
"js": [
|
|
|
|
"/js/scriptlets/updater.js"
|
|
|
|
],
|
|
|
|
"run_at": "document_idle",
|
|
|
|
"all_frames": false
|
2018-04-27 09:43:35 -06:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"default_locale": "en",
|
|
|
|
"description": "__MSG_extShortDesc__",
|
|
|
|
"icons": {
|
|
|
|
"16": "img/ublock.svg",
|
2020-03-14 11:05:46 -06:00
|
|
|
"32": "img/ublock.svg",
|
2018-04-27 09:43:35 -06:00
|
|
|
"48": "img/ublock.svg",
|
2020-03-14 11:05:46 -06:00
|
|
|
"64": "img/ublock.svg",
|
2024-07-05 08:01:28 -06:00
|
|
|
"96": "img/ublock.svg",
|
|
|
|
"128": "img/ublock.svg"
|
2018-04-27 09:43:35 -06:00
|
|
|
},
|
|
|
|
"manifest_version": 2,
|
|
|
|
"name": "uBlock Origin",
|
|
|
|
"options_ui": {
|
|
|
|
"page": "dashboard.html",
|
|
|
|
"open_in_tab": true
|
|
|
|
},
|
|
|
|
"permissions": [
|
2023-12-04 13:15:08 -07:00
|
|
|
"alarms",
|
2019-11-19 10:05:33 -07:00
|
|
|
"dns",
|
2019-09-20 05:51:47 -06:00
|
|
|
"menus",
|
2018-04-27 09:43:35 -06:00
|
|
|
"privacy",
|
|
|
|
"storage",
|
|
|
|
"tabs",
|
2019-03-17 07:45:28 -06:00
|
|
|
"unlimitedStorage",
|
2018-04-27 09:43:35 -06:00
|
|
|
"webNavigation",
|
|
|
|
"webRequest",
|
|
|
|
"webRequestBlocking",
|
|
|
|
"<all_urls>"
|
|
|
|
],
|
|
|
|
"short_name": "uBlock₀",
|
|
|
|
"sidebar_action": {
|
|
|
|
"default_title": "__MSG_statsPageName__",
|
|
|
|
"default_panel": "logger-ui.html",
|
2018-07-22 14:15:58 -06:00
|
|
|
"default_icon": "img/ublock.svg",
|
|
|
|
"open_at_install": false
|
2018-04-27 09:43:35 -06:00
|
|
|
},
|
|
|
|
"version": "1.9.15.101",
|
|
|
|
"web_accessible_resources": [
|
|
|
|
"/web_accessible_resources/*"
|
|
|
|
]
|
2016-10-15 06:35:51 -06:00
|
|
|
}
|