-
Notifications
You must be signed in to change notification settings - Fork 20
/
manifest.json
43 lines (43 loc) · 1.17 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "IHeader",
"version": "1.2.1",
"icons": {
"128": "res/images/lightning_green128.png",
"32": "res/images/lightning_green.png",
"64": "res/images/lightning_green64.png"
},
"page_action": {
"default_title": "IHeader",
"default_icon": "res/images/lightning_default.png",
"default_popup": "res/index.html"
},
"background": {
"persistent": true,
"scripts": ["res/js/message.js", "res/js/background.js", "res/js/proxy.js"]
},
"commands": {
"toggle_status": {
"suggested_key": {
"default": "Alt+H",
"windows": "Alt+H",
"mac": "Alt+H",
"chromeos": "Alt+H",
"linux": "Alt+H"
},
"description": "Toggle IHeader"
}
},
"content_scripts": [
{
"all_frames": false,
"matches": ["\u003Call_urls>"],
"js": ["res/js/message.js", "res/js/content.js"]
}
],
"default_locale": "en",
"description": "__MSG_description__",
"manifest_version": 2,
"minimum_chrome_version": "26.0",
"options_page": "res/options.html",
"permissions": [ "tabs" , "webRequest", "webRequestBlocking", "http://*/*", "https://*/*", "contextMenus", "notifications", "proxy"]
}