summaryrefslogtreecommitdiff
path: root/webextension/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'webextension/manifest.json')
-rw-r--r--webextension/manifest.json56
1 files changed, 56 insertions, 0 deletions
diff --git a/webextension/manifest.json b/webextension/manifest.json
new file mode 100644
index 000000000..6a0101c4b
--- /dev/null
+++ b/webextension/manifest.json
@@ -0,0 +1,56 @@
+{
+ "manifest_version": 2,
+
+ "name": "GNU Taler Wallet (git)",
+ "description": "Privacy preserving and transparent payments",
+ "author": "GNU Taler Developers",
+ "version": "0.6.75",
+ "version_name": "0.6.0pre10",
+
+ "minimum_chrome_version": "51",
+ "minimum_opera_version": "36",
+
+ "applications": {
+ "gecko": {
+ "id": "wallet@taler.net",
+ "strict_min_version": "68.0"
+ }
+ },
+
+ "icons": {
+ "32": "img/icon.png",
+ "128": "img/logo.png"
+ },
+
+ "permissions": [
+ "storage",
+ "tabs",
+ "webRequest",
+ "webRequestBlocking",
+ "http://*/*",
+ "https://*/*"
+ ],
+
+ "browser_action": {
+ "default_icon": {
+ "32": "img/icon.png"
+ },
+ "default_title": "Taler",
+ "default_popup": "pages/popup.html"
+ },
+
+ "content_scripts": [
+ {
+ "matches": ["*://*/*"],
+ "js": [
+ "js/contentScript.js"
+ ],
+ "run_at": "document_start"
+ }
+ ],
+
+ "background": {
+ "page": "background.html",
+ "persistent": true
+ }
+}