aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
blob: f923900a17b342662daff5f4987f2de741f604a0 (plain) (blame)
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
{

  "manifest_version": 2,
  "name": "re:claimID",
  "description": "An extension for use with re:claimID.",
  "version": "0.2.2",

  "applications": {
    "gecko": {
      "strict_min_version": "57.0"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{b2d334a4-bcd4-476f-9122-4e85f8a71ec5}",
      "strict_min_version": "57.0"
    }
  },

  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/logo.png",
    "theme_icons": [{
      "light": "icons/logo_dark.png",
      "dark": "icons/logo.png",
      "size": 32
    }],
    "default_title": "re:claimID",
    "default_popup": "popup/popup.html"
  },

  "icons": {
    "48": "icons/logo48.png",
    "96": "icons/logo96.png"
  },

  "background": {
    "scripts": [
      "background/reclaim.js",
      "scripts/gnunet.js"
    ]
  },

  "permissions": ["storage", "https://api.reclaim/*", "https://ui.reclaim/*", "http://localhost:7776/*",
    "webRequest", "webRequestBlocking"],
    "web_accessible_resources": ["*/**", "index.html", "*.js", "assets/*", "*.woff*", "*.ttf", "*.svg"],

    "options_ui": {
      "page": "index.html",
      "open_in_tab": true,
      "browser_style": true,
      "chrome_style": true
    }
}