1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-03 17:49:39 +02:00
uBlock/platform/chromium/manifest.json

75 lines
1.9 KiB
JSON
Raw Normal View History

2014-06-24 00:42:43 +02:00
{
"manifest_version": 2,
2015-04-14 22:55:05 +02:00
"name": "uBlock Origin",
2017-12-30 17:22:03 +01:00
"version": "1.14.23.7",
2017-05-27 17:51:24 +02:00
"commands": {
"launch-element-zapper": {
"description": "__MSG_popupTipZapper__"
},
"launch-element-picker": {
"description": "__MSG_popupTipPicker__"
},
"launch-logger": {
"description": "__MSG_popupTipLog__"
2017-05-27 17:51:24 +02:00
}
},
"default_locale": "en",
"description": "__MSG_extShortDesc__",
2014-06-24 00:42:43 +02:00
"icons": {
"16": "img/icon_16.png",
"128": "img/icon_128.png"
2014-06-24 00:42:43 +02:00
},
"browser_action": {
"default_icon": {
2015-05-02 06:13:19 +02:00
"19": "img/browsericons/icon19.png",
"38": "img/browsericons/icon38.png"
},
2015-04-14 22:55:05 +02:00
"default_title": "uBlock Origin",
"default_popup": "popup.html"
},
2015-04-15 18:00:13 +02:00
"author": "All uBlock Origin contributors",
"background": {
"page": "background.html"
},
"content_scripts": [
{
2015-04-05 16:40:58 +02:00
"matches": ["http://*/*", "https://*/*"],
2017-11-16 16:55:28 +01:00
"js": ["/js/vapi.js", "/js/vapi-client.js", "/js/contentscript.js"],
"run_at": "document_start",
"all_frames": true
},
2015-03-09 17:57:52 +01:00
{
2015-11-20 14:47:29 +01:00
"matches": ["http://*/*", "https://*/*"],
2017-11-16 16:55:28 +01:00
"js": ["/js/scriptlets/subscriber.js"],
2015-11-20 14:47:29 +01:00
"run_at": "document_idle",
"all_frames": false
}
],
"incognito": "split",
"minimum_chrome_version": "45.0",
2016-09-09 23:44:54 +02:00
"optional_permissions": [ "file:///*" ],
"options_page": "dashboard.html",
2015-02-06 16:30:22 +01:00
"options_ui": {
"page": "options_ui.html"
},
"permissions": [
"contextMenus",
"privacy",
"storage",
"tabs",
"unlimitedStorage",
"webNavigation",
"webRequest",
"webRequestBlocking",
2017-03-25 14:18:19 +01:00
"<all_urls>"
],
2015-10-21 17:53:03 +02:00
"short_name": "uBlock₀",
"storage": {
"managed_schema": "managed_storage.json"
}
2015-02-06 01:34:53 +01:00
}