about summary refs log tree commit diff stats
path: root/src/manifest.json
blob: eb94ea0f0bf1c99af663a231d4acbdb9f0844a26 (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
{
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.3.3",
  "manifest_version": 2,
  "background": {
    "page": "pages/background/background.html",
    "persistent": true
  },
  "default_locale": "en",
  "icons": {
    "16": "assets/images/libredirect.svg",
    "32": "assets/images/libredirect.svg",
    "48": "assets/images/libredirect.svg",
    "128": "assets/images/libredirect.svg"
  },
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "LibRedirect",
    "browser_style": false,
    "default_popup": "pages/popup/popup.html",
    "default_icon": {
      "16": "assets/images/libredirect.svg",
      "32": "assets/images/libredirect.svg",
      "48": "assets/images/libredirect.svg",
      "128": "assets/images/libredirect.svg"
    }
  },
  "options_ui": {
    "page": "pages/options/general/general.html",
    "browser_style": false,
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "assets/javascripts/helpers/youtube/invidious-cookies.js"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "7esoorv3@alefvanoon.anonaddy.me",
      "strict_min_version": "67.0"
    }
  }
}