summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/manifest-v3.json
blob: 0b8acef1a3c2fe0c61c7e2f70452f3ec9be88aef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
  "manifest_version": 3,
  "name": "GNU Taler Wallet (git)",
  "description": "Privacy preserving and transparent payments",
  "author": "GNU Taler Developers",
  "version": "0.9.0.9",
  "version_name": "0.9.0-dev.10",
  "minimum_chrome_version": "88",
  "icons": {
    "16": "static/img/taler-logo-16.png",
    "19": "static/img/taler-logo-19.png",
    "32": "static/img/taler-logo-32.png",
    "38": "static/img/taler-logo-38.png",
    "48": "static/img/taler-logo-48.png",
    "64": "static/img/taler-logo-64.png",
    "128": "static/img/taler-logo-128.png",
    "256": "static/img/taler-logo-256.png",
    "512": "static/img/taler-logo-512.png"
  },
  "permissions": [
    "unlimitedStorage",
    "activeTab",
    "scripting",
    "alarms"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+W"
      }
    }
  },
  "optional_permissions": [
    "webRequest"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": {
      "16": "static/img/taler-logo-16.png",
      "19": "static/img/taler-logo-19.png",
      "32": "static/img/taler-logo-32.png",
      "38": "static/img/taler-logo-38.png",
      "48": "static/img/taler-logo-48.png",
      "64": "static/img/taler-logo-64.png",
      "128": "static/img/taler-logo-128.png",
      "256": "static/img/taler-logo-256.png",
      "512": "static/img/taler-logo-512.png"
    },
    "default_title": "GNU Taler Wallet",
    "default_popup": "static/popup.html"
  },
  "background": {
    "service_worker": "dist/background.js"
  }
}