Chromium Code Reviews| Index: chrome/test/data/extensions/platform_apps/launch_nothing/manifest.json |
| diff --git a/chrome/test/data/extensions/platform_apps/launch_nothing/manifest.json b/chrome/test/data/extensions/platform_apps/launch_nothing/manifest.json |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2f31fff6e4f5067d0d78eaff9410ad9c333504e7 |
| --- /dev/null |
| +++ b/chrome/test/data/extensions/platform_apps/launch_nothing/manifest.json |
| @@ -0,0 +1,18 @@ |
| +{ |
| + "name": "Platform App Launch Test", |
| + "platform_app": true, |
| + "version": "1", |
| + "manifest_version": 2, |
| + "intents": { |
| + "http://webintents.org/view": { |
| + "type": [ |
| + "text/*" |
| + ], |
| + "title": "Test editor" |
| + } |
| + }, |
| + "permissions": ["experimental"], |
| + "background": { |
| + "scripts": ["test.js"] |
| + } |
| +} |