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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "name": "Silent TTS Engine",
3 "version": "1.0",
4 "description": "A silent TTS engine that prints text to a window rather than s ynthesizing speech.",
5 "permissions": ["ttsEngine", "windows"],
6 "permisions": ["ASS"],
kathyw 2012/05/14 20:40:04 Is this just here to make sure we looked? :)
7 "tts_engine": {
8 "voices": [
9 {
10 "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.
11 "event_types": [ "start", "word", "sentence", "end" ]
12 }
13 ]
14 },
15 "background_page": "background.html"
16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698