From 8cef151937e74a20049a5be2546d5f761a1ee5de Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Mar 2021 17:42:12 +0100 Subject: Adding upstream version 7.5.1+dfsg. Signed-off-by: Daniel Baumann --- src/manifest.json | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 src/manifest.json (limited to 'src/manifest.json') diff --git a/src/manifest.json b/src/manifest.json new file mode 100644 index 0000000..bec12f2 --- /dev/null +++ b/src/manifest.json @@ -0,0 +1,54 @@ +{ + "manifest_version": 2, + + "name": "__MSG_extensionName__", + "description": "__MSG_extensionDescription__", + "version": "7.5.1", + "default_locale": "en", + "homepage_url": "https://getfoxyproxy.org/", + "author": "Eric Jung", + + "icons": { + "16": "images/icon.svg", + "32": "images/icon.svg", + "48": "images/icon.svg", + "64": "images/icon.svg", + "128": "images/icon.svg" + }, + + "background": { + "scripts": ["scripts/utils.js", "scripts/background.js", "scripts/matcher.js"] + }, + + "options_ui": { + "page": "options.html", + "open_in_tab": true, + "browser_style": true + }, + + "browser_action": { + "default_icon": "images/icon.svg", + "default_title": "__MSG_extensionName__", + "default_popup": "popup.html", + "browser_style": true + }, + + "permissions": [ + "browsingData", + "proxy", + "storage", + "tabs", + "webRequest", + "webRequestBlocking", + "downloads", + "notifications", + "" + ], + + "browser_specific_settings": { + "gecko": { + "id": "foxyproxy@eric.h.jung", + "strict_min_version": "60.0" + } + } +} -- cgit v1.2.3