summaryrefslogtreecommitdiff
path: root/manifest.json
blob: 500fb12c44dc8bc1db84925784dc8ac122a3dc3d (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
59
60
{
  "manifest_version": 2,

  "name": "GNU Taler Wallet (git)",
  "description": "Privacy preserving and transparent payments",
  "author": "GNU Taler Developers",
  "version": "0.6.40",
  "version_name": "0.2.3",

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

  "applications": {
    "gecko": {
      "id": "wallet@taler.net",
      "strict_min_version": "50.0a1"
    }
  },

  "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/*"
  ],

  "background": {
    "page": "src/webex/background.html",
    "persistent": true
  }
}