From db30d69c335e2a65ad52897ceb7fb9fce8274f06 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sun, 16 Nov 2014 01:49:33 +0300 Subject: [PATCH] added crome app manifest (experimental)... Signed-off-by: Alex A. Naanou --- ui (gen4)/manifest.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 ui (gen4)/manifest.json diff --git a/ui (gen4)/manifest.json b/ui (gen4)/manifest.json new file mode 100644 index 00000000..069fed5d --- /dev/null +++ b/ui (gen4)/manifest.json @@ -0,0 +1,38 @@ +{ + // for details see: https://developer.chrome.com/extensions/manifest + + "manifest_version": 2, + "name": "ImageGrid.Viewer", + "version": "4.0.1", + + //"default_locale": "en", + "description": "A plain text description", + "icons": { + //"16": "icon16.png", + //"48": "icon48.png", + //"128": "icon128.png" + }, + + "app": { + "launch": { + "local_path": "index.html", + "container": "panel", + "width": 800, + "height": 600 + } + }, + + "author": "Alex A. Naanou ", + "background": { + // Recommended + //"persistent": false + }, + + "permissions": [ + "clipboardRead", + "clipboardWrite", + "fileSystemProvider", + "storage", + "unlimitedStorage" + ] +}