1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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"
}
}
}
|