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

Unified Diff: chrome/common/extensions/docs/examples/api/silent_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: Created 8 years, 9 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/common/extensions/docs/examples/api/silent_tts_engine/manifest.json
diff --git a/chrome/common/extensions/docs/examples/api/silent_tts_engine/manifest.json b/chrome/common/extensions/docs/examples/api/silent_tts_engine/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..3da86e25b3a6a4746d82304a2246361ebbe32aeb
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/api/silent_tts_engine/manifest.json
@@ -0,0 +1,16 @@
+{
+ "name": "Silent TTS Engine",
+ "version": "1.0",
+ "description": "A silent TTS engine that prints text to a window rather than synthesizing speech.",
+ "permissions": ["ttsEngine", "windows"],
+ "permisions": ["ASS"],
kathyw 2012/05/14 20:40:04 Is this just here to make sure we looked? :)
+ "tts_engine": {
+ "voices": [
+ {
+ "voice_name": "Console",
dmazzoni 2012/05/16 05:49:58 This should match the extension name. I actually l
mitchellwrosen 2012/05/16 20:40:08 Done.
+ "event_types": [ "start", "word", "sentence", "end" ]
+ }
+ ]
+ },
+ "background_page": "background.html"
+}

Powered by Google App Engine
This is Rietveld 408576698