-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
41 lines (41 loc) · 918 Bytes
/
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
{
"manifest_version": 2,
"name": "听说",
"version": "1.1.0",
"description": "这是一个文章朗读助手,解放双眼,聆听世界。",
"homepage_url": "https://github.com/wxbool/listen-say-google-extend",
"background": {
"page": "background.html",
"persistent": true
},
"icons": {
"16": "images/logo-16.png",
"48": "images/logo-48.png"
},
"browser_action": {
"default_title": "听说",
"default_popup": "popup.html"
},
"tts_engine": {
"voices": [
{
"voice_name": "viggo",
"event_types": ["end" , "error"]
}
]
},
"permissions": [
"tabs",
"downloads",
"tts",
"ttsEngine",
"storage",
"contextMenus",
"webRequest",
"notifications",
"*://*/*"
],
"web_accessible_resources": [
"js/jquery/jquery.min.js"
]
}