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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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" ],
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",
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",
68 "lang": "zh-CN",
69 "voice_name": "Google Network Speech Mandarin Chinese"
70 }
71 ]
72 },
73 "version": "1.0"
74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698