Chromium Code Reviews| Index: chrome/browser/resources/network_speech_synthesis/manifest.json |
| diff --git a/chrome/browser/resources/network_speech_synthesis/manifest.json b/chrome/browser/resources/network_speech_synthesis/manifest.json |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c1bc5ed400142568581949920b9cdfb4e8f9dfb6 |
| --- /dev/null |
| +++ b/chrome/browser/resources/network_speech_synthesis/manifest.json |
| @@ -0,0 +1,74 @@ |
| +{ |
| + "background": { |
| + "scripts": [ "tts_extension.js" ], |
| + "persistent": false |
| + }, |
| + "description": "Component extension providing speech via the Google network text-to-speech service.", |
| + "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8GSbNUMGygqQTNDMFGIjZNcwXsHLzkNkHjWbuY37PbNdSDZ4VqlVjzbWqODSe+MjELdv5Keb51IdytnoGYXBMyqKmWpUrg+RnKvQ5ibWr4MW9pyIceOIdp9GrzC1WZGgTmZismYR3AjaIpufZ7xDdQQv+XrghPWCkdVqLN+qZDA1HU+DURznkMICiDDSH2sU0egm9UbWfS218bZqzKeQDiC3OnTPlaxcbJtKUuupIm5knjze3Wo9Ae9poTDMzKgchg0VlFCv3uqox+wlD8sjXBoyBCCK9HpImdVAF1a7jpdgiUHpPeV/26oYzM9/grltwNR3bzECQgSpyXp0eyoegwIDAQAB", |
| + "manifest_version": 2, |
| + "name": "Google Network Speech", |
| + "permissions": [ |
| + "systemPrivate", |
| + "ttsEngine", |
| + "https://www.google.com/" |
| + ], |
| + "tts_engine": { |
| + "voices": [ |
| + { |
| + "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
|
| + "gender": "female", |
| + "lang": "en-US", |
| + "voice_name": "Google Network Speech US English" |
| + }, |
| + { |
| + "event_types": [ "start", "end", "error" ], |
| + "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
|
| + "lang": "en-GB", |
| + "voice_name": "Google Network Speech UK English" |
| + }, |
| + { |
| + "event_types": [ "start", "end", "error" ], |
| + "gender": "female", |
| + "lang": "es-ES", |
| + "voice_name": "Google Network Speech Spanish" |
| + }, |
| + { |
| + "event_types": [ "start", "end", "error" ], |
| + "gender": "female", |
| + "lang": "fr-FR", |
| + "voice_name": "Google Network Speech French" |
| + }, |
| + { |
| + "event_types": [ "start", "end", "error" ], |
| + "gender": "female", |
| + "lang": "it-IT", |
| + "voice_name": "Google Network Speech Italian" |
| + }, |
| + { |
| + "event_types": [ "start", "end", "error" ], |
| + "gender": "female", |
| + "lang": "de-DE", |
| + "voice_name": "Google Network Speech German" |
| + }, |
| + { |
| + "event_types": [ "start", "end", "error" ], |
| + "gender": "female", |
| + "lang": "ja-JP", |
| + "voice_name": "Google Network Speech Japanese" |
| + }, |
| + { |
| + "event_types": [ "start", "end", "error" ], |
| + "gender": "female", |
| + "lang": "ko-KR", |
| + "voice_name": "Google Network Speech Korean" |
| + }, |
| + { |
| + "event_types": [ "start", "end", "error" ], |
| + "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
|
| + "lang": "zh-CN", |
| + "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
|
| + } |
| + ] |
| + }, |
| + "version": "1.0" |
| +} |