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

66 lines
1.6 KiB
JSON
Raw Normal View History

2015-02-09 05:27:43 +01:00
{
"manifest_version": 2,
"name": "uBlock Origin",
2015-05-22 14:05:55 +02:00
"version": "0.9.7.5",
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-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 18:33:56 +01:00
},
{
"matches": [
"https://*.adblockplus.org/*",
"https://*.adblockplus.me/*",
"https://www.fanboy.co.nz/*"
],
"js": ["js/subscriber.js"],
"run_at": "document_idle"
2015-02-09 05:27:43 +01:00
}
],
"incognito": "split",
2015-02-09 21:23:27 +01:00
"minimum_chrome_version": "22.0",
2015-02-09 05:27:43 +01:00
"options_page": "dashboard.html",
"permissions": [
"contextMenus",
"storage",
"tabs",
"unlimitedStorage",
2015-02-09 05:27:43 +01:00
"webNavigation",
"webRequest",
"webRequestBlocking",
2015-02-09 05:27:43 +01:00
"http://*/*",
"https://*/*"
2015-03-22 21:16:27 +01:00
],
"short_name": "uBlock₀"
2015-02-09 05:27:43 +01:00
}