summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/manifest.json
blob: e864fe08aab612f438a4039e929a6c0810136067 (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
{
  "manifest_version": 2,

  "name": "GNU Taler Wallet (git)",
  "description": "Privacy preserving and transparent payments",
  "author": "GNU Taler Developers",
  "version": "0.8.0.9",
  "version_name": "0.8.1-dev.9",

  "minimum_chrome_version": "51",
  "minimum_opera_version": "36",

  "applications": {
    "gecko": {
      "id": "wallet@taler.net",
      "strict_min_version": "57.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
  }
}