Chromium Code Reviews| Index: chrome/common/extensions/docs/examples/api/speechInput/basic/manifest.json |
| diff --git a/chrome/common/extensions/docs/examples/api/speechInput/basic/manifest.json b/chrome/common/extensions/docs/examples/api/speechInput/basic/manifest.json |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c49220b398ffac349d8035c991e79e875d4a4665 |
| --- /dev/null |
| +++ b/chrome/common/extensions/docs/examples/api/speechInput/basic/manifest.json |
| @@ -0,0 +1,13 @@ |
| +{ |
| + "name": "Speech recognizer", |
| + "version": "1.0", |
| + "description": "Recognizes your speech and tells you the most likely result.", |
| + "browser_action": { |
| + "default_title": "Speech input demo", |
|
Satish
2011/11/17 16:29:23
may be use the same string for 'name' and 'defaul
Leandro GraciĆ” Gil
2011/11/17 22:02:45
Sorry, I changed one and forgot about the other. F
|
| + "default_icon": "icon.png" |
| + }, |
| + "background_page": "background.html", |
| + "permissions": [ |
| + "experimental" |
| + ] |
| +} |