-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·60 lines (44 loc) · 1.37 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"manifest_version": 2,
"name": "__MSG_extension_name__",
"short_name": "__MSG_extension_short_name__",
"description": "__MSG_extension_description__",
"version": "2.2.5",
"minimum_chrome_version": "30.0.0.0",
"default_locale": "en_US",
"icons": {
"128": "images/manager-128.png",
"64": "images/manager-64.png",
"48": "images/manager-48.png",
"32": "images/manager-32.png",
"16": "images/manager-16.png"
},
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_title": "__MSG_extension_default_title__",
"default_icon": "images/manager-19_black.png",
"default_popup": "popup.html"
},
"content_scripts": [ {
"all_frames": true,
"js": [ "scripts/content/preload.js" ],
"match_about_blank": true,
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_start"
}, {
"all_frames": true,
"js": [ "scripts/content/postload.js" ],
"match_about_blank": true,
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_end"
} ],
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"web_accessible_resources": ["images/*.png"],
"permissions": [ "tabs", "activeTab", "http://*/*", "https://*/*", "downloads", "downloads.open", "downloads.shelf", "storage", "notifications" ]
}