aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: 4eea4dcafd90e98693ff09e0be02065ef98dbdb7 (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
{
  "description": "A minimal extension for manipulation of HTTP Requests and Responses; a fancy wrapper around browser.webRequest. Should be treated as a more restricted single-script userscript manager.",
  "manifest_version": 2,
  "name": "httptool",
  "version": "0.0.2",

  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "theme",
    "<all_urls>",
    "unlimitedStorage"
  ],
  "icons": {
    "16": "favicon_16x.png",
    "32": "favicon_32x.png",
    "48": "favicon_48x.png",
    "64": "favicon_64x.png",
    "96": "favicon_96x.png",
    "128": "favicon_128x.png"
  },
  "optional_permissions": [],

  "background": {
    "scripts": ["generated/background.js"],
    "type": "module"
  },
  "options_ui": {
    "page": "proxy.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "httptool@git.estrogen.zone"
    }
  },
  "content_security_policy": "script-src 'unsafe-eval' 'self'"
}