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

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

Issue 286933006: Implement a JavaScript API for document scanning (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Starting over. This used to be 286933006 Created 6 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/api/document_scan/manifest.json
diff --git a/chrome/common/extensions/docs/examples/api/document_scan/manifest.json b/chrome/common/extensions/docs/examples/api/document_scan/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..8f788d3aa0b3183a780c2d86d7b2730c998f6e96
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/api/document_scan/manifest.json
@@ -0,0 +1,13 @@
+{
+ "name": "Document Scanning API Sample",
+ "version": "0.1",
+ "manifest_version": 2,
+ "minimum_chrome_version": "37",
+ "app": {
+ "background": {
+ "scripts": ["background.js"]
+ }
+ },
+ "permissions": [],
+ "optional_permissions": [ "documentScan" ]
+}

Powered by Google App Engine
This is Rietveld 408576698