1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00
uBlock/platform/chromium/manifest.json

91 lines
1.9 KiB
JSON
Raw Normal View History

2014-06-24 00:42:43 +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": {
"default_icon": {
"16": "img/icon_16.png",
"32": "img/icon_32.png"
2017-05-27 17:51:24 +02:00
},
2018-04-27 17:43:35 +02:00
"default_title": "uBlock Origin",
"default_popup": "popup.html"
},
"commands": {
"launch-element-zapper": {
"description": "__MSG_popupTipZapper__"
2014-06-24 00:42:43 +02:00
},
2018-04-27 17:43:35 +02:00
"launch-element-picker": {
"description": "__MSG_popupTipPicker__"
},
2018-04-27 17:43:35 +02:00
"launch-logger": {
"description": "__MSG_popupTipLog__"
},
"relax-blocking-mode": {
"description": "__MSG_relaxBlockingMode__"
2018-04-27 17:43:35 +02:00
}
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"/js/vapi.js",
"/js/vapi-client.js",
"/js/contentscript.js"
],
"run_at": "document_start",
"all_frames": true
},
2018-04-27 17:43:35 +02:00
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"/js/scriptlets/subscriber.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"content_security_policy": "script-src 'self'; object-src 'self'",
2018-04-27 17:43:35 +02:00
"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": 2,
"minimum_chrome_version": "51.0",
2018-04-27 17:43:35 +02:00
"name": "uBlock Origin",
"options_ui": {
"page": "dashboard.html",
"open_in_tab": true
2018-04-27 17:43:35 +02:00
},
"permissions": [
"contextMenus",
"privacy",
"storage",
"tabs",
"unlimitedStorage",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"short_name": "uBlock₀",
"storage": {
"managed_schema": "managed_storage.json"
},
"version": "1.15.11.0",
"web_accessible_resources": [
"/web_accessible_resources/*"
]
2015-02-06 01:34:53 +01:00
}