aboutsummaryrefslogtreecommitdiff
path: root/webextension/manifest.json
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-04-06 21:05:51 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-04-06 21:05:51 +0530
commit07f25566ca51b7faf6462a57d15f4ebbfc733ab0 (patch)
tree04e03d831adae4c00ac6a6a19706de4ed6ad7dd3 /webextension/manifest.json
parent13bccc7bd982da58738dfd63a2493e476d596161 (diff)
downloadwallet-core-07f25566ca51b7faf6462a57d15f4ebbfc733ab0.tar.xz
start spring cleaning, use rollup instead of both webpack and rollup
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
+ }
+}