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

Unified Diff: chrome/test/data/extensions/api_test/webintent_handler/manifest.json

Issue 10834383: Chrome OS "open with" picker allowing Web Intents (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: tbarzic comments Created 8 years, 3 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
« no previous file with comments | « chrome/test/data/extensions/api_test/webintent_handler/background.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/webintent_handler/manifest.json
diff --git a/chrome/test/data/extensions/api_test/webintent_handler/manifest.json b/chrome/test/data/extensions/api_test/webintent_handler/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..5807ba3f332a2d2ac9f2b794a3a5cb25dfb88859
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/webintent_handler/manifest.json
@@ -0,0 +1,23 @@
+{
+ "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQChptAQ0n4R56N03nWQ1ogR7DVRBjGo80Vw6G9KLjzZv44D8rq5Q5IkeQrtKgWyZfXevlsCe3LaLo18rcz8iZx6lK2xhLdUR+ORjsjuBfdEL5a5cWeRTSxf75AcqndQsmpwMBdrMTCZ8jQNusUI+XlrihLNNJuI5TM4vNINI5bYFQIBIw==",
+ "name": "ChromeOS Web Intent handler extension",
+ "version": "0.1",
+ "manifest_version": 2,
+ "description": "Tests of chrome.fileSystem.* methods for handling Web Intents",
+ "app": {
+ "background": {
+ "scripts": ["background.js"]
+ }
+ },
+ "intents": {
+ "http://webintents.org/view": [{
+ "title": "View xul action",
+ "type": ["application/vnd.mozilla.xul+xml"]
+ }]
+ },
+ "permissions": [
+ "experimental",
+ "fileSystem",
+ "unlimitedStorage"
+ ]
+}
« no previous file with comments | « chrome/test/data/extensions/api_test/webintent_handler/background.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698