-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (41 loc) · 1.03 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
{
"name": "知乎quick",
"version": "1.0.0",
"description": "精简知乎,精彩留给自己!",
"permissions": ["*://*.zhihu.com/","https://*.zhimg.com/","activeTab","declarativeContent", "storage","tts","ttsEngine",
"webNavigation","alarms","webRequest"],
"tts_engine": {
"voices": [
{
"voice_name": "Alice",
"lang": "en-US",
"event_types": ["start", "marker", "end"]
},
{
"voice_name": "Pat",
"lang": "en-US",
"event_types": ["end"]
}
]
},
"background": {
"scripts": ["scripts/background.js"]
},
"page_action": {
"default_title": "知乎quick",
"default_popup": "popup.html",
"default_icon": {
"16": "images/zhihu.png",
"32": "images/zhihu.png",
"48": "images/zhihu.png",
"128": "images/zhihu.png"
}
},
"icons": {
"16": "images/zhihu.png",
"32": "images/zhihu.png",
"48": "images/zhihu.png",
"128": "images/zhihu.png"
},
"manifest_version": 2
}