aboutsummaryrefslogtreecommitdiff
path: root/webextension/manifest.json
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-08-03 13:00:48 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-08-03 13:01:05 +0530
commitffd2a62c3f7df94365980302fef3bc3376b48182 (patch)
tree270af6f16b4cc7f5da2afdba55c8bc9dbea5eca5 /webextension/manifest.json
parentaa481e42675fb7c4dcbbeec0ba1c61e1953b9596 (diff)
downloadwallet-core-ffd2a62c3f7df94365980302fef3bc3376b48182.tar.xz
modularize repo, use pnpm, improve typechecking
Diffstat (limited to 'webextension/manifest.json')
-rw-r--r--webextension/manifest.json49
1 files changed, 0 insertions, 49 deletions
diff --git a/webextension/manifest.json b/webextension/manifest.json
deleted file mode 100644
index b09e3ecbd..000000000
--- a/webextension/manifest.json
+++ /dev/null
@@ -1,49 +0,0 @@
-{
- "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": "img/icon.png",
- "128": "img/logo.png"
- },
-
- "permissions": [
- "storage",
- "activeTab"
- ],
-
- "optional_permissions": [
- "webRequest",
- "webRequestBlocking",
- "http://*/*",
- "https://*/*"
- ],
-
- "browser_action": {
- "default_icon": {
- "32": "img/icon.png"
- },
- "default_title": "Taler",
- "default_popup": "popup.html"
- },
-
- "background": {
- "page": "background.html",
- "persistent": true
- }
-}