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