1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-20 12:17:31 +02:00
uBlock/platform/opera/manifest.json
2015-03-26 15:17:53 -04:00

63 lines
1.6 KiB
JSON

{
"manifest_version": 2,
"name": "uBlock",
"version": "0.9.2.4",
"default_locale": "en",
"description": "__MSG_extShortDesc__",
"icons": {
"16": "img/icon_16.png",
"128": "img/icon_128.png"
},
"browser_action": {
"default_icon": {
"19": "img/browsericons/icon19-off.png",
"38": "img/browsericons/icon38-off.png"
},
"default_title": "uBlock",
"default_popup": "popup.html"
},
"author": "The uBlock Development Team",
"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
},
{
"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",
"permissions": [
"contextMenus",
"storage",
"tabs",
"webNavigation",
"webRequest",
"http://*/*",
"https://*/*"
],
"short_name": "uBlock"
}