| 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
|
| + *
|
|
|
|
|