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

58 lines
1.4 KiB
JSON
Raw Normal View History

2015-02-09 05:27:43 +01:00
{
"manifest_version": 2,
"name": "uBlock Origin",
2016-10-19 17:15:10 +02:00
"version": "1.9.15.101",
2015-02-09 05:27:43 +01:00
"default_locale": "en",
"description": "__MSG_extShortDesc__",
"icons": {
"16": "img/icon_16.png",
"128": "img/icon_128.png"
},
"browser_action": {
"default_icon": {
2015-05-22 14:05:55 +02:00
"19": "img/browsericons/icon19.png",
"38": "img/browsericons/icon19.png"
2015-02-09 05:27:43 +01:00
},
"default_title": "uBlock Origin",
2015-02-09 05:27:43 +01:00
"default_popup": "popup.html"
},
"author": "All uBlock Origin contributors",
2015-02-09 05:27:43 +01:00
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/vapi-client.js", "js/contentscript.js"],
2015-02-09 05:27:43 +01:00
"run_at": "document_start",
"all_frames": true
},
2015-03-16 18:33:56 +01:00
{
2016-01-11 15:12:06 +01:00
"matches": ["http://*/*", "https://*/*"],
2015-11-20 14:47:29 +01:00
"js": ["js/scriptlets/subscriber.js"],
"run_at": "document_idle",
"all_frames": false
2015-02-09 05:27:43 +01:00
}
],
"incognito": "split",
"minimum_chrome_version": "38.0",
2016-09-09 23:44:54 +02:00
"optional_permissions": [ "file:///*" ],
2015-02-09 05:27:43 +01:00
"options_page": "dashboard.html",
"permissions": [
"contextMenus",
2015-06-08 14:08:04 +02:00
"privacy",
2015-02-09 05:27:43 +01:00
"storage",
"tabs",
"unlimitedStorage",
2015-02-09 05:27:43 +01:00
"webNavigation",
"webRequest",
"webRequestBlocking",
2017-07-02 17:13:43 +02:00
"<all_urls>"
2015-03-22 21:16:27 +01:00
],
"short_name": "uBlock₀"
2015-02-09 05:27:43 +01:00
}