-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest.json
60 lines (60 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
56
57
58
59
60
{
"manifest_version": 2,
"name": "__MSG_appName__",
"version": "1.5.0",
"default_locale": "zh_CN",
"description": "__MSG_appDesc__",
"background": {
"scripts": [
"lib/axios.js",
"background/background.js"
]
},
"browser_action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "images/icons/16.png",
"32": "images/icons/32.png",
"48": "images/icons/48.png",
"64": "images/icons/64.png",
"128": "images/icons/128.png"
}
},
"options_ui": {
"page": "popup/popup.html",
"chrome_style": true
},
"options_page": "options.html",
"icons": {
"16": "images/icons/16.png",
"32": "images/icons/32.png",
"48": "images/icons/48.png",
"64": "images/icons/64.png",
"128": "images/icons/128.png"
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"<all_urls>"
],
"js": [
"lib/jquery-3.3.1.js",
"content_scripts/highlight.js"
],
"css": [
"content_scripts/content_scripts.css"
]
}
],
"permissions": [
"cookies",
"storage",
"tts",
"tabs",
"http://*/*",
"https://*/*",
"file://*/*",
"ftp://*/*"
]
}