uBlock/meta/crx/manifest.json

61 lines
1.5 KiB
JSON
Raw Normal View History

2014-06-24 00:42:43 +02:00
{
"manifest_version": 2,
"minimum_chrome_version": "22.0",
"default_locale": "{def_lang}",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "{version}",
"name": "{name}",
2014-06-24 00:42:43 +02:00
"description": "__MSG_extShortDesc__",
"homepage_url": "{url}",
"author": "{author}",
"developer": {
"name": "{author}",
"email": "{author_email}"
},
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
"permissions": [
2014-09-28 18:05:46 +02:00
"contextMenus",
2014-06-24 00:42:43 +02:00
"storage",
"tabs",
"unlimitedStorage",
"webNavigation",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*"
],
"background": {
"page": "background.html"
},
"options_page": "dashboard.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
}
],
"browser_action": {
"default_icon": {
"19": "img/browsericons/icon19-off.png",
"38": "img/browsericons/icon38-off.png"
},
"default_title": "{name}",
"default_popup": "popup.html"
}
}