-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
61 lines (61 loc) · 1.48 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
61
{
"background": {
"page": "tts_reader.html"
},
"browser_action": {
"default_icon": "images/ttsreader_smallicon.png",
"default_popup": "popup.html",
"default_title": "__MSG_title__"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"js/addSpeech.js"
],
"matches": [
"\u003Call_urls>",
"https://*/*"
],
"run_at": "document_end"
}
],
"default_locale": "en",
"description": "__MSG_desc__",
"icons": {
"128": "images/ttsreader_bigicon.png",
"16": "images/ttsreader_smallicon.png"
},
"manifest_version": 2,
"minimum_chrome_version": "14",
"name": "TTS Reader",
"options_page": "options.html",
"permissions": [
"\u003Call_urls>",
"contextMenus",
"ttsEngine",
"tts",
"tabs",
"webRequest",
"webNavigation",
"unlimitedStorage",
"webRequestBlocking",
"https://*/*"
],
"tts_engine": {
"voices": [
{
"event_types": [
"start",
"marker",
"end"
],
"gender": "female",
"lang": "en-US",
"voice_name": "Google TTS"
}
]
},
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "0.1.8"
}