aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json30
1 files changed, 30 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..030c757
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,30 @@
+{
+ "description": "A minimal extension for manipulation of HTTP Requests and Responses; a fancy wrapper around browser.webRequest",
+ "manifest_version": 2,
+ "name": "httptool",
+ "version": "1.0",
+
+ "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": "redir@git.estrogen.zone"
+ }
+ },
+ "content_security_policy": "script-src 'unsafe-eval' 'self'"
+}