diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-08-10 22:19:23 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-08-10 22:19:23 +0530 |
commit | 172a51a43a5cfebd06876206ec3a0cd75ad86e43 (patch) | |
tree | 1f26963f69955c0dc1018ce2c3f6409f18e45676 /packages/taler-wallet-webextension/manifest.json | |
parent | c2dcad8efeb7948a98997053a8e26087b40bacf8 (diff) |
towards webextension working again
Diffstat (limited to 'packages/taler-wallet-webextension/manifest.json')
-rw-r--r-- | packages/taler-wallet-webextension/manifest.json | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/packages/taler-wallet-webextension/manifest.json b/packages/taler-wallet-webextension/manifest.json new file mode 100644 index 000000000..5858d208d --- /dev/null +++ b/packages/taler-wallet-webextension/manifest.json @@ -0,0 +1,49 @@ +{ + "manifest_version": 2, + + "name": "GNU Taler Wallet (git)", + "description": "Privacy preserving and transparent payments", + "author": "GNU Taler Developers", + "version": "0.6.77.4", + "version_name": "0.7.1-dev.3", + + "minimum_chrome_version": "51", + "minimum_opera_version": "36", + + "applications": { + "gecko": { + "id": "wallet@taler.net", + "strict_min_version": "68.0" + } + }, + + "icons": { + "32": "static/img/icon.png", + "128": "static/img/logo.png" + }, + + "permissions": [ + "storage", + "activeTab" + ], + + "optional_permissions": [ + "webRequest", + "webRequestBlocking", + "http://*/*", + "https://*/*" + ], + + "browser_action": { + "default_icon": { + "32": "static/img/icon.png" + }, + "default_title": "Taler", + "default_popup": "static/popup.html" + }, + + "background": { + "page": "static/background.html", + "persistent": true + } +} |