diff options
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 46 |
1 files changed, 35 insertions, 11 deletions
diff --git a/manifest.json b/manifest.json index 4eea4dc..880b4a6 100644 --- a/manifest.json +++ b/manifest.json @@ -1,17 +1,41 @@ { - "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.", + "description": "**FOR DEVELOPERS ONLY!! IF YOU'VE BEEN TOLD TO INSTALL THIS, SOMEONE'S TRYING TO PHISH YOU! See https://en.wikipedia.org/wiki/Self-XSS**\n\nA general-purpose script evaluation tool. Should be treated as a more restricted single-script userscript manager.", "manifest_version": 2, - "name": "httptool", + "name": "evaltool", "version": "0.0.2", - "permissions": [ - "webRequest", - "webRequestBlocking", - "storage", + "contextMenus", "theme", - "<all_urls>", + "storage", "unlimitedStorage" ], + "optional_permissions": [ + "activeTab", + "bookmarks", + "browsingData", + "clipboardRead", + "clipboardWrite", + "cookies", + "downloads", + "geolocation", + "history", + "idle", + "management", + "nativeMessaging", + "notifications", + "privacy", + "proxy", + "scripting", + "search", + "sessions", + "tabGroups", + "tabs", + "topSites", + "webRequest", + "webRequestBlocking", + "webNavigation", + "<all_urls>" + ], "icons": { "16": "favicon_16x.png", "32": "favicon_32x.png", @@ -20,10 +44,10 @@ "96": "favicon_96x.png", "128": "favicon_128x.png" }, - "optional_permissions": [], - "background": { - "scripts": ["generated/background.js"], + "scripts": [ + "generated/background.js" + ], "type": "module" }, "options_ui": { @@ -31,7 +55,7 @@ }, "browser_specific_settings": { "gecko": { - "id": "httptool@git.estrogen.zone" + "id": "evaltool@git.estrogen.zone" } }, "content_security_policy": "script-src 'unsafe-eval' 'self'" |