-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugproxy.sources.example.json
More file actions
103 lines (103 loc) · 2.86 KB
/
plugproxy.sources.example.json
File metadata and controls
103 lines (103 loc) · 2.86 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"sources": [
{
"name": "proxyscrape-http",
"type": "raw_text_url",
"url": "https://api.proxyscrape.com/v4/free-proxy-list/get?request=display_proxies&protocol=http&proxy_format=ipport&format=text",
"protocol_hint": "http",
"enabled": true,
"timeout": "12s",
"body_limit": 2097152
},
{
"name": "proxifly-socks5",
"type": "raw_text_url",
"url": "https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks5/data.txt",
"protocol_hint": "socks5",
"enabled": true,
"timeout": "12s",
"body_limit": 2097152
},
{
"name": "iplocate-http-cdn",
"type": "raw_text_url",
"url": "https://cdn.jsdelivr.net/gh/iplocate/free-proxy-list@main/protocols/http.txt",
"protocol_hint": "http",
"enabled": false,
"timeout": "12s",
"body_limit": 2097152
},
{
"name": "proxifly-http-cdn",
"type": "raw_text_url",
"url": "https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/http/data.txt",
"protocol_hint": "http",
"enabled": false,
"timeout": "12s",
"body_limit": 2097152
},
{
"name": "skillter-working-http-cdn",
"type": "raw_text_url",
"url": "https://cdn.jsdelivr.net/gh/Skillter/ProxyGather@master/proxies/working-proxies-http.txt",
"protocol_hint": "http",
"enabled": false,
"timeout": "12s",
"body_limit": 2097152
},
{
"name": "clarketm-raw-cdn",
"type": "raw_text_url",
"url": "https://cdn.jsdelivr.net/gh/clarketm/proxy-list@master/proxy-list-raw.txt",
"protocol_hint": "http",
"enabled": false,
"timeout": "12s",
"body_limit": 2097152
},
{
"name": "docip-free-json",
"type": "json_url",
"url": "https://www.docip.net/data/free.json",
"protocol_hint": "http",
"enabled": false,
"timeout": "12s",
"body_limit": 1048576,
"json": {
"items_path": "data",
"proxy_field": "ip"
}
},
{
"name": "89ip-html",
"type": "html_text_url",
"url": "https://www.89ip.cn/tqdl.html?api=1&num=100&port=&address=&isp=&anonymity=&type=1",
"protocol_hint": "http",
"enabled": false,
"timeout": "12s",
"body_limit": 1048576
},
{
"name": "example-json",
"type": "json_url",
"url": "https://example.com/proxies.json",
"protocol_hint": "http",
"enabled": false,
"json": {
"items_path": "data",
"host_field": "ip",
"port_field": "port",
"protocol_field": "protocol"
}
},
{
"name": "example-api",
"type": "api_url",
"url": "https://api.example.com/free-proxies",
"protocol_hint": "http",
"enabled": false,
"headers": {
"Accept": "application/json"
}
}
]
}