aboutsummaryrefslogtreecommitdiff
path: root/manifest-chrome.json
blob: 02efca50e03cfebd6db070e0e1da84354c771b2c (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
{

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

  "browser_action": {
    "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,
      "chrome_style": true
    }
}