-
Notifications
You must be signed in to change notification settings - Fork 21
/
manifest.firefox.json
47 lines (47 loc) · 1.11 KB
/
manifest.firefox.json
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
{
"manifest_version": 2,
"name": "FireX Proxy",
"version": "5.3.6",
"description": "FireX Proxy",
"default_locale": "en",
"icons": {
"16": "data/icons/action/icon-16.png",
"32": "data/icons/action/icon-32.png",
"48": "data/icons/action/icon-48.png",
"64": "data/icons/action/icon-64.png",
"128": "data/icons/action/icon-128.png"
},
"permissions": [
"proxy",
"storage",
"*://*.firexproxy.com/*",
"cookies",
"<all_urls>"
],
"optional_permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "60.0"
}
},
"browser_action": {
"browser_style": false,
"default_icon": {
"16": "data/icons/action/icon-16.png",
"32": "data/icons/action/icon-32.png",
"48": "data/icons/action/icon-48.png",
"64": "data/icons/action/icon-64.png",
"128": "data/icons/action/icon-128.png"
},
"default_title": "FireX Proxy",
"default_popup": "browser-action.html"
},
"background": {
"page": "background.html"
}
}