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

Side by Side Diff: chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/manifest.json

Issue 9688004: Sample extensions page does not feature chrome.ttsEngine. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Trying again... Created 8 years, 7 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
« no previous file with comments | « chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/console_tts_engine.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 "name": "Console TTS Engine",
3 "version": "2.0",
4 "description": "A \"silent\" TTS engine that prints text to a small window rat her than synthesizing speech.",
5 "permissions": ["ttsEngine", "tabs"],
6 "background": {
7 "scripts": ["console_tts_engine.js"]
8 },
9 "tts_engine": {
10 "voices": [
11 {
12 "voice_name": "Console",
13 "event_types": ["start", "word", "sentence", "end"]
14 }
15 ]
16 }
17 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/console_tts_engine.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698