-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.22 KB
/
package.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
48
49
50
{
"name": "socksproxy",
"title": "Socks Proxy",
"id": "jid1-CDhCxYtMn1Dlig",
"description": "SSH tunneling made easy.\n\nDoc : https://p1rox.fr/socksproxy/",
"author": "p1rox",
"license": "MPL 2.0",
"version": "0.4.2",
"homepage": "https://p1rox.fr/socksproxy/",
"permissions": {"private-browsing": true},
"preferences": [{
"name": "host",
"title": "IP or domain (ex: 127.0.0.1 or domain.com) : ",
"type": "string",
"value": "127.0.0.1"
},
{
"name": "port",
"title": "Port (ex: 1337) : ",
"type": "integer",
"value": 1337
},
{
"name": "remotedns",
"title": "Remote DNS : ",
"type": "bool",
"value": true
},
{
"name": "socksversion",
"title": "Version (SOCKS 5 doesn't support remote DNS) : ",
"type": "menulist",
"value": 5,
"options": [
{
"value": "5",
"label": "SOCKS 5"
},
{
"value": "1",
"label": "SOCKS 4"
}]
},
{
"name": "noproxyon",
"title": "No proxy for (ex: localhost, 127.0.0.1) :",
"type": "string",
"value": "localhost, 127.0.0.1"
}]
}