aboutsummaryrefslogtreecommitdiff
path: root/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 /manifest.json
parent13bccc7bd982da58738dfd63a2493e476d596161 (diff)
downloadwallet-core-07f25566ca51b7faf6462a57d15f4ebbfc733ab0.tar.xz
start spring cleaning, use rollup instead of both webpack and rollup
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json60
1 files changed, 0 insertions, 60 deletions
diff --git a/manifest.json b/manifest.json
deleted file mode 100644
index 8926e2579..000000000
--- a/manifest.json
+++ /dev/null
@@ -1,60 +0,0 @@
-{
- "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": "src/webex/pages/popup.html"
- },
-
- "content_scripts": [
- {
- "matches": ["*://*/*"],
- "js": [
- "dist/contentScript-bundle.js"
- ],
- "run_at": "document_start"
- }
- ],
-
- "web_accessible_resources": [
- "src/webex/pages/redirect.html"
- ],
-
- "background": {
- "page": "src/webex/background.html",
- "persistent": true
- }
-}