aboutsummaryrefslogtreecommitdiffstats
path: root/apps/browser-extension/manifest.json
blob: 22623afd8316ce35daf6a21c9e16f1cd66dc3846 (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
{
  "manifest_version": 3,
  "name": "Hoarder",
  "description": "An extension to bookmark links to hoarder.app",
  "version": "1.2.0",
  "icons": {
    "16": "public/logo-16.png",
    "48": "public/logo-48.png",
    "128": "public/logo-128.png"
  },
  "action": {
    "default_popup": "index.html"
  },
  "options_ui": {
    "page": "index.html#options",
    "open_in_tab": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "addon@hoarder.app"
    }
  },
  "permissions": ["storage", "tabs"]
}