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

64 lines
1.5 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-05-27 02:06:36 +02:00
"version": "1.12.5.10",
"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://*/*"],
"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://*/*"],
"js": ["js/scriptlets/subscriber.js"],
"run_at": "document_idle",
"all_frames": false
}
],
"incognito": "split",
2016-07-12 02:33:07 +02:00
"minimum_chrome_version": "26.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
}