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

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: addressing Satish's comments. 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..f9a321c1ef2f0b7c478289b9b1c3ad80533eaa8e
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/api/speechInput/basic/manifest.json
@@ -0,0 +1,16 @@
+{
+ "name": "Speech Recognizer",
+ "version": "1.0",
+ "description": "Recognizes your speech and tells you the most likely result.",
+
+ "browser_action": {
+ "default_title": "Speech Recognizer",
+ "default_icon": "start.png"
+ },
+
+ "background_page": "background.html",
+
+ "permissions": [
+ "experimental"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698