OLD | NEW |
1 { | 1 { |
| 2 // NOTE: Keep two json files in this directory in sync. The only difference |
| 3 // should be incognito:split in Guest mode version. |
2 "name": "Chrome OS built-in text-to-speech extension", | 4 "name": "Chrome OS built-in text-to-speech extension", |
3 "version": "0.0.2", | 5 "version": "0.0.2", |
4 "description": "Text-to-speech (TTS) voice extension using Native Client techn
ology.", | 6 "description": "Text-to-speech (TTS) voice extension using Native Client techn
ology.", |
5 "manifest_version": 2, | 7 "manifest_version": 2, |
6 "background": { | 8 "background": { |
7 "scripts": [ | 9 "scripts": [ |
8 "voice_data_hmm_de-DE.js", | 10 "voice_data_hmm_de-DE.js", |
9 "voice_data_hmm_en-GB.js", | 11 "voice_data_hmm_en-GB.js", |
10 "voice_data_hmm_en-US.js", | 12 "voice_data_hmm_en-US.js", |
11 "voice_data_hmm_es-ES.js", | 13 "voice_data_hmm_es-ES.js", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 }, | 56 }, |
55 { | 57 { |
56 "voice_name": "Chrome OS Spanish", | 58 "voice_name": "Chrome OS Spanish", |
57 "lang": "es-ES", | 59 "lang": "es-ES", |
58 "gender": "female", | 60 "gender": "female", |
59 "event_types": [ "start", "word", "end", "error" ] | 61 "event_types": [ "start", "word", "end", "error" ] |
60 } | 62 } |
61 ] | 63 ] |
62 } | 64 } |
63 } | 65 } |
OLD | NEW |