uBlock/platform/opera/manifest.json

64 lines
1.6 KiB
JSON
Raw Normal View History

2015-02-08 21:27:43 -07:00
{
"manifest_version": 2,
"name": "uBlock Origin",
2016-01-11 07:12:06 -07:00
"version": "1.5.7",
2015-02-08 21:27:43 -07: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 06:05:55 -06:00
"19": "img/browsericons/icon19.png",
"38": "img/browsericons/icon19.png"
2015-02-08 21:27:43 -07:00
},
"default_title": "uBlock Origin",
2015-02-08 21:27:43 -07:00
"default_popup": "popup.html"
},
"author": "All uBlock Origin contributors",
2015-02-08 21:27:43 -07:00
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/vapi-client.js", "js/contentscript-start.js"],
"run_at": "document_start",
"all_frames": true
},
{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/contentscript-end.js"],
"run_at": "document_end",
"all_frames": true
2015-03-16 11:33:56 -06:00
},
{
2016-01-11 07:12:06 -07:00
"matches": ["http://*/*", "https://*/*"],
2015-11-20 06:47:29 -07:00
"js": ["js/scriptlets/subscriber.js"],
"run_at": "document_idle",
"all_frames": false
2015-02-08 21:27:43 -07:00
}
],
"incognito": "split",
2015-02-09 13:23:27 -07:00
"minimum_chrome_version": "22.0",
2015-02-08 21:27:43 -07:00
"options_page": "dashboard.html",
"permissions": [
"contextMenus",
2015-06-08 06:08:04 -06:00
"privacy",
2015-02-08 21:27:43 -07:00
"storage",
"tabs",
"unlimitedStorage",
2015-02-08 21:27:43 -07:00
"webNavigation",
"webRequest",
"webRequestBlocking",
2015-02-08 21:27:43 -07:00
"http://*/*",
"https://*/*"
2015-03-22 14:16:27 -06:00
],
"short_name": "uBlock₀"
2015-02-08 21:27:43 -07:00
}