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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/talking_alarm_clock/manifest.json

Issue 8114011: Add sample extensions that use the text-to-speech (TTS) API. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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
Property Changes:
Added: svn:executable
+ *
OLDNEW
(Empty)
1 {
2 "name": "Talking Alarm Clock",
3 "version": "1.3",
4 "description": "A clock with two configurable alarms that will play a sound an d speak a phrase of your choice.",
5 "permissions": [ "background", "tts" ],
6
7 "background_page": "background.html",
8
9 "popup": "popup.html",
10
11 "browser_action": {
12 "default_icon": "clock-19.png",
13 "default_title": "Talking Alarm Clock",
14 "default_popup": "popup.html"
15 },
16
17 "icons": {
18 "16": "clock-16.png",
19 "48": "clock-48.png",
20 "128": "clock-128.png",
21 "256": "clock-256.png"
22 }
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698