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

Unified Diff: chrome/common/extensions/docs/examples/api/speechInput/basic/manifest.json

Issue 8536022: Adding static documentation to the speech input extension API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing nits and adding a example. Created 9 years, 1 month 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/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"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698