Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3808)

Unified Diff: chrome/browser/resources/network_speech_synthesis/manifest.json

Issue 27034009: Implement Google network speech synthesis (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix getApiKey description Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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" ],
+ "gender": "female",
+ "lang": "en-US",
+ "voice_name": "Google Network Speech US English"
+ },
+ {
+ "event_types": [ "start", "end", "error" ],
+ "gender": "male",
+ "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",
+ "lang": "zh-CN",
+ "voice_name": "Google Network Speech Mandarin Chinese"
+ }
+ ]
+ },
+ "version": "1.0"
+}

Powered by Google App Engine
This is Rietveld 408576698