summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/chromeos/speech_synthesis/manifest_guest.json
blob: 4eabd8ee09392e9c8c34b5830fd869f1f98d25a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
  // NOTE: Keep two json files in this directory in sync. The only difference
  // should be incognito:split in Guest mode version.
  "name": "Chrome OS built-in text-to-speech extension",
  "version": "2.1.1",
  "description": "This is a high-quality text-to-speech (TTS) voice extension that runs in your browser using Native Client technology.",
  "manifest_version": 2,
  "incognito": "split",
  "background": {
    "scripts": [
      "voice_data_hmm_de-DE_2.js",
      "voice_data_hmm_en-GB_2.js",
      "voice_data_hmm_en-IN_2.js",
      "voice_data_hmm_en-US_2.js",
      "voice_data_hmm_es-ES_2.js",
      "voice_data_hmm_es-US_2.js",
      "voice_data_hmm_fr-FR_2.js",
      "voice_data_hmm_it-IT_2.js",
      "voice_data_hmm_ko-KR_2.js",
      "voice_data_hmm_pt-BR_2.js",
      "tts_controller.js",
      "tts_main.js"
    ]
  },
  "permissions": [
    "ttsEngine",
    "unlimitedStorage"
  ],
  "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDlKEJseIIbKFyX0BCWNYOWlPEUt1IxBvIoW1PI7DTmipbwyVr3s2EprewYdtr9hCO5Yzs5w/ai1Xnhet5PLAsMje6ZP0Kvq0tlVfaYF8oQHBPF+ifx31RBT7Cn+ZVKLq1fxrwzY063GVhW+CAr06Ar8YRFXtFoC4FHlUNDIoSb4wIDAQAB",
  "tts_engine": {
    "voices": [
      {
        "voice_name": "German Female TTS (by Google)",
        "lang": "de-DE",
        "gender": "female",
        "event_types": [ "start", "word", "end", "error" ]
      },
      {
        "voice_name": "GB English Female TTS (by Google)",
        "lang": "en-GB",
        "gender": "female",
        "event_types": [ "start", "word", "end", "error" ]
      },
      {
        "voice_name": "Indian English Female TTS (by Google)",
        "lang": "en-IN",
        "gender": "female",
        "event_types": [ "start", "word", "end", "error" ]
      },
      {
        "voice_name": "US English Female TTS (by Google)",
        "lang": "en-US",
        "gender": "female",
        "event_types": [ "start", "word", "end", "error" ]
      },
      {
        "voice_name": "Spanish Female TTS (by Google)",
        "lang": "es-ES",
        "gender": "female",
        "event_types": [ "start", "word", "end", "error" ]
      },
      {
        "voice_name": "US Spanish Female TTS (by Google)",
        "lang": "es-US",
        "gender": "female",
        "event_types": [ "start", "word", "end", "error" ]
      },
      {
        "voice_name": "French Female TTS (by Google)",
        "lang": "fr-FR",
        "gender": "female",
        "event_types": [ "start", "word", "end", "error" ]
      },
      {
        "voice_name": "Italian Female TTS (by Google)",
        "lang": "it-IT",
        "gender": "female",
        "event_types": [ "start", "word", "end", "error" ]
      },
      {
        "voice_name": "Korean Female TTS (by Google)",
        "lang": "ko-KR",
        "gender": "female",
        "event_types": [ "start", "word", "end", "error" ]
      },
      {
        "voice_name": "Brazilian Portuguese Female TTS (by Google)",
        "lang": "pt-BR",
        "gender": "female",
        "event_types": [ "start", "word", "end", "error" ]
      }
    ]
  },
  "icons": {
    "128": "google-tts-128.png",
    "16": "google-tts-16.png",
    "256": "google-tts-256.png",
    "48": "google-tts-48.png"
  }
}