aboutsummaryrefslogtreecommitdiff
path: root/extension/manifest.json
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2015-11-25 20:41:31 +0100
committerFlorian Dold <florian.dold@gmail.com>2015-11-25 20:46:36 +0100
commit7b6706bee3cbecc84b330672ecdb5764d7d68756 (patch)
tree5941b2d8a53296a4e64712068f82717205840a05 /extension/manifest.json
downloadwallet-core-7b6706bee3cbecc84b330672ecdb5764d7d68756.tar.xz
Add skeleton for WebExtensions wallet
Diffstat (limited to 'extension/manifest.json')
-rw-r--r--extension/manifest.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/extension/manifest.json b/extension/manifest.json
new file mode 100644
index 000000000..b0ad9720e
--- /dev/null
+++ b/extension/manifest.json
@@ -0,0 +1,41 @@
+{
+ "description": "Privacy preserving and transparent payments",
+ "manifest_version": 2,
+ "name": "Taler Wallet",
+ "version": "1.0",
+
+ "applications": {
+ "gecko": {
+ "id": "devs@taler.net"
+ }
+ },
+
+ "permissions": [
+ "http://*/*",
+ "https://*/*"
+ ],
+
+ "browser_action": {
+ "default_icon": "icons/taler-logo-24.png",
+ "default_title": "Taler",
+ "default_popup": "popup/wallet.html"
+ },
+
+ "web_accessible_resources": [
+ "popup/reserves.html",
+ "popup/wallet.html"
+ ],
+
+ "content_scripts": [
+ {
+ "matches": ["*://*/*"],
+ "js": ["content_scripts/notify.js"],
+ "run_at": "document_start"
+ }
+ ],
+
+ "background": {
+ "scripts": ["background/wallet.js"]
+ }
+
+}