-
Notifications
You must be signed in to change notification settings - Fork 56
/
manifest.json
55 lines (55 loc) · 1.21 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
{
"content_scripts": [
{
"matches": [
"http://chrome.google.com/webstore/*",
"https://chrome.google.com/webstore/*"
],
"run_at": "document_start",
"css": ["content/store.css"],
"js": [
"content/callback_registry.js",
"content/channel.js",
"content/proxy.js",
"content/store_proxy.js"
]
}
],
"name": "__MSG_name__",
"default_locale": "en",
"icons": {
"128": "icons/128.png",
"64": "icons/64.png"
},
"description": "__MSG_description__",
"background": {
"persistent": false,
"scripts": [
"/api/api.js",
"/api/installer.js",
"/api/event.js",
"/api/management.js",
"/api/webstore.js",
"/api/webstore_private.js",
"/background/content_proxy.js",
"/background/app.js"
]
},
"version": "2.5.8",
"manifest_version": 2,
"page_action": {
"default_icon": {
"16": "icons/16.png",
"24": "icons/24.png",
"32": "icons/32.png"
},
"default_title": "__MSG_buttonTitle__"
},
"permissions": [
"tabs",
"management",
"downloads",
"https://clients2.google.com/service/update2/*",
"*://chrome.google.com/webstore/*"
]
}