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

71 lines
1.8 KiB
JSON
Raw Normal View History

2014-06-24 00:42:43 +02:00
{
"manifest_version": 2,
2015-04-07 16:33:54 +02:00
"name": "uBlock₀",
2015-04-05 16:40:58 +02:00
"version": "0.9.3.1",
"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": {
"19": "img/browsericons/icon19-off.png",
"38": "img/browsericons/icon38-off.png"
},
2015-04-07 16:33:54 +02:00
"default_title": "uBlock₀",
"default_popup": "popup.html"
},
2015-04-07 16:33:54 +02:00
"author": "The uBlock₀ Development Team",
"background": {
"page": "background.html"
},
"content_scripts": [
{
2015-04-05 16:40:58 +02:00
"matches": ["http://*/*", "https://*/*"],
"js": ["js/vapi-client.js", "js/contentscript-start.js"],
"run_at": "document_start",
"all_frames": true
},
{
2015-04-05 16:40:58 +02:00
"matches": ["http://*/*", "https://*/*"],
"js": ["js/contentscript-end.js"],
"run_at": "document_end",
"all_frames": true
2015-03-09 17:57:52 +01:00
},
{
"matches": [
"https://*.adblockplus.org/*",
"https://*.adblockplus.me/*",
"https://www.fanboy.co.nz/*"
],
"js": ["js/subscriber.js"],
"run_at": "document_idle"
}
],
"minimum_chrome_version": "22.0",
"options_page": "dashboard.html",
2015-02-06 16:30:22 +01:00
"options_ui": {
"page": "options_ui.html"
},
"permissions": [
"contextMenus",
"storage",
"tabs",
"unlimitedStorage",
"webNavigation",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*"
],
2015-04-07 16:33:54 +02:00
"short_name": "uBlock₀",
2015-03-26 00:28:22 +01:00
"web_accessible_resources": [
"document-blocked.html"
]
2015-02-06 01:34:53 +01:00
}