From c962e9402123900c53967c14cf809ea10576cdb8 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 29 Feb 2016 18:03:02 +0100 Subject: restructure --- manifest.json | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') diff --git a/manifest.json b/manifest.json new file mode 100644 index 000000000..9cdd86fa4 --- /dev/null +++ b/manifest.json @@ -0,0 +1,52 @@ +{ + "description": "Privacy preserving and transparent payments", + "manifest_version": 2, + "name": "GNU Taler Wallet (git)", + "version": "0.5.11", + + "applications": { + "gecko": { + "id": "devs@taler.net" + } + }, + + "permissions": [ + "storage", + "http://*/*", + "https://*/*" + ], + + "browser_action": { + "default_icon": "img/icon.png", + "default_title": "Taler", + "default_popup": "popup/popup.html" + }, + + "content_scripts": [ + { + "matches": ["*://*/*"], + "js": [ + "lib/vendor/URI.js", + "lib/vendor/system-csp-production.src.js", + "content_scripts/notify.js" + ], + "run_at": "document_start" + } + ], + + "web_accessible_resources": [ + "pages/*", + "lib/*" + ], + + "background": { + "scripts": [ + "lib/vendor/URI.js", + "lib/vendor/lodash.core.min.js", + "lib/vendor/system-csp-production.src.js", + "background/main.js" + ] + }, + + "minimum_chrome_version": "47.0.2526" +} -- cgit v1.2.3