diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-02-29 18:03:02 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-02-29 18:03:02 +0100 |
commit | c962e9402123900c53967c14cf809ea10576cdb8 (patch) | |
tree | e7df9cfdd6fceae30fb99c8ec6be5e07c8b153a8 /manifest.json | |
parent | 30ee3320c788129b258ed8b42f4fc63d28431e2f (diff) |
restructure
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 52 |
1 files changed, 52 insertions, 0 deletions
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" +} |