| 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"
|
| + ]
|
| +}
|
|
|