summaryrefslogtreecommitdiffstats
path: root/src/manifest.json
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-13 16:42:12 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-13 16:42:12 +0000
commit8cef151937e74a20049a5be2546d5f761a1ee5de (patch)
tree30de89024109eff10978e6b95ebd9b403a3e37b7 /src/manifest.json
parentInitial commit. (diff)
downloadfoxyproxy-firefox-extension-upstream.tar.xz
foxyproxy-firefox-extension-upstream.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.json54
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"
+ }
+ }
+}