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
|
{
"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.1",
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"theme",
"<all_urls>",
"unlimitedStorage"
],
"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'"
}
|