diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:25:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:25:27 +0000 |
commit | ec12bd26de5b4292efc366ee41ef4c8d94e31fa9 (patch) | |
tree | 30de89024109eff10978e6b95ebd9b403a3e37b7 /src/manifest.json | |
parent | Initial commit. (diff) | |
download | foxyproxy-firefox-extension-ec12bd26de5b4292efc366ee41ef4c8d94e31fa9.tar.xz foxyproxy-firefox-extension-ec12bd26de5b4292efc366ee41ef4c8d94e31fa9.zip |
Adding upstream version 7.5.1+dfsg.upstream/7.5.1+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/manifest.json')
-rw-r--r-- | src/manifest.json | 54 |
1 files changed, 54 insertions, 0 deletions
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", + "<all_urls>" + ], + + "browser_specific_settings": { + "gecko": { + "id": "foxyproxy@eric.h.jung", + "strict_min_version": "60.0" + } + } +} |