OLD | NEW |
---|---|
(Empty) | |
1 { | |
2 "background": { | |
3 "scripts": [ "tts_extension.js" ], | |
4 "persistent": false | |
5 }, | |
6 "description": "Component extension providing speech via the Google network t ext-to-speech service.", | |
7 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8GSbNUMGygqQTNDMFGIjZNcwX sHLzkNkHjWbuY37PbNdSDZ4VqlVjzbWqODSe+MjELdv5Keb51IdytnoGYXBMyqKmWpUrg+RnKvQ5ibWr 4MW9pyIceOIdp9GrzC1WZGgTmZismYR3AjaIpufZ7xDdQQv+XrghPWCkdVqLN+qZDA1HU+DURznkMICi DDSH2sU0egm9UbWfS218bZqzKeQDiC3OnTPlaxcbJtKUuupIm5knjze3Wo9Ae9poTDMzKgchg0VlFCv3 uqox+wlD8sjXBoyBCCK9HpImdVAF1a7jpdgiUHpPeV/26oYzM9/grltwNR3bzECQgSpyXp0eyoegwIDA QAB", | |
8 "manifest_version": 2, | |
9 "name": "Google Network Speech", | |
10 "permissions": [ | |
11 "systemPrivate", | |
12 "ttsEngine", | |
13 "https://www.google.com/" | |
14 ], | |
15 "tts_engine": { | |
16 "voices": [ | |
17 { | |
18 "event_types": [ "start", "end", "error" ], | |
David Tseng
2013/10/17 20:43:49
interrupted?
What happens when a client of chrome
dmazzoni
2013/10/18 16:23:19
Interrupted and Cancelled are implemented automati
| |
19 "gender": "female", | |
20 "lang": "en-US", | |
21 "voice_name": "Google Network Speech US English" | |
22 }, | |
23 { | |
24 "event_types": [ "start", "end", "error" ], | |
25 "gender": "male", | |
David Tseng
2013/10/17 20:43:49
The only male in the bunch? Is there a choice of m
dmazzoni
2013/10/18 16:23:19
Glen can correct me if I'm wrong, but currently th
| |
26 "lang": "en-GB", | |
27 "voice_name": "Google Network Speech UK English" | |
28 }, | |
29 { | |
30 "event_types": [ "start", "end", "error" ], | |
31 "gender": "female", | |
32 "lang": "es-ES", | |
33 "voice_name": "Google Network Speech Spanish" | |
34 }, | |
35 { | |
36 "event_types": [ "start", "end", "error" ], | |
37 "gender": "female", | |
38 "lang": "fr-FR", | |
39 "voice_name": "Google Network Speech French" | |
40 }, | |
41 { | |
42 "event_types": [ "start", "end", "error" ], | |
43 "gender": "female", | |
44 "lang": "it-IT", | |
45 "voice_name": "Google Network Speech Italian" | |
46 }, | |
47 { | |
48 "event_types": [ "start", "end", "error" ], | |
49 "gender": "female", | |
50 "lang": "de-DE", | |
51 "voice_name": "Google Network Speech German" | |
52 }, | |
53 { | |
54 "event_types": [ "start", "end", "error" ], | |
55 "gender": "female", | |
56 "lang": "ja-JP", | |
57 "voice_name": "Google Network Speech Japanese" | |
58 }, | |
59 { | |
60 "event_types": [ "start", "end", "error" ], | |
61 "gender": "female", | |
62 "lang": "ko-KR", | |
63 "voice_name": "Google Network Speech Korean" | |
64 }, | |
65 { | |
66 "event_types": [ "start", "end", "error" ], | |
67 "gender": "female", | |
David Tseng
2013/10/17 20:43:49
Are the genders subject to change? How did you gen
dmazzoni
2013/10/18 16:23:19
I tested it out and made this match what's current
| |
68 "lang": "zh-CN", | |
69 "voice_name": "Google Network Speech Mandarin Chinese" | |
David Tseng
2013/10/17 20:43:49
Do these voice names get localized at some point?
dmazzoni
2013/10/18 16:23:19
It would be possible to get these localized but we
| |
70 } | |
71 ] | |
72 }, | |
73 "version": "1.0" | |
74 } | |
OLD | NEW |