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

Unified Diff: chrome/common/extensions/docs/examples/extensions/speak_selection/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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/examples/extensions/speak_selection/manifest.json
===================================================================
--- chrome/common/extensions/docs/examples/extensions/speak_selection/manifest.json (revision 0)
+++ chrome/common/extensions/docs/examples/extensions/speak_selection/manifest.json (revision 0)
@@ -0,0 +1,37 @@
+{
+ "name": "Speak Selection",
+ "version": "1.0",
+ "description": "Speaks the current selection out loud.",
+ "permissions": [ "<all_urls>", "tts", "tabs" ],
+
+ "background_page": "background.html",
+
+ "browser_action": {
+ "default_icon": "SpeakSel19.png",
+ "default_title": "Speak Selection"
+ },
+
+ "options_page": "options.html",
+
+ "minimum_chrome_version": "14",
+
+ "content_scripts": [
+ {
+ "matches": [
+ "<all_urls>"
+ ],
+ "all_frames": true,
+ "js": [
+ "keycodes.js",
+ "content_script.js"
+ ]
+ }
+ ],
+
+ "icons": {
+ "16": "SpeakSel16.png",
+ "48": "SpeakSel48.png",
+ "128": "SpeakSel128.png",
+ "256": "SpeakSel256.png"
+ }
+}
Property changes on: chrome/common/extensions/docs/examples/extensions/speak_selection/manifest.json
___________________________________________________________________
Added: svn:executable
+ *

Powered by Google App Engine
This is Rietveld 408576698