| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Chrome OS text-to-speech component extension", | 2 "name": "Chrome OS text-to-speech component extension", |
| 3 "version": "1.0.2", | 3 "version": "1.0.2", |
| 4 "description": "Chrome OS native text-to-speech implemented using native clien
t.", | 4 "description": "Chrome OS native text-to-speech implemented using native clien
t.", |
| 5 "manifest_version": 2, | 5 "manifest_version": 2, |
| 6 "incognito": "split", |
| 6 "background": { | 7 "background": { |
| 7 "scripts": [ | 8 "scripts": [ |
| 8 "voice_data_hmm_de-DE.js", | 9 "voice_data_hmm_de-DE.js", |
| 9 "voice_data_hmm_en-GB.js", | 10 "voice_data_hmm_en-GB.js", |
| 10 "voice_data_hmm_en-US.js", | 11 "voice_data_hmm_en-US.js", |
| 11 "voice_data_hmm_es-ES.js", | 12 "voice_data_hmm_es-ES.js", |
| 12 "voice_data_hmm_fr-FR.js", | 13 "voice_data_hmm_fr-FR.js", |
| 13 "voice_data_hmm_it-IT.js", | 14 "voice_data_hmm_it-IT.js", |
| 14 "tts_controller.js", | 15 "tts_controller.js", |
| 15 "tts_main.js" | 16 "tts_main.js" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 }, | 56 }, |
| 56 { | 57 { |
| 57 "voice_name": "Chrome OS Spanish", | 58 "voice_name": "Chrome OS Spanish", |
| 58 "lang": "es-ES", | 59 "lang": "es-ES", |
| 59 "gender": "female", | 60 "gender": "female", |
| 60 "event_types": [ "start", "word", "end", "error" ] | 61 "event_types": [ "start", "word", "end", "error" ] |
| 61 } | 62 } |
| 62 ] | 63 ] |
| 63 } | 64 } |
| 64 } | 65 } |
| OLD | NEW |