mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
12 lines
217 B
JavaScript
12 lines
217 B
JavaScript
function FindProxyForURL(url, host)
|
|
{
|
|
if (shExpMatch(host, "*.onion"))
|
|
{
|
|
return "SOCKS5 127.0.0.1:9050";
|
|
}
|
|
return "DIRECT";
|
|
}
|
|
|
|
function FindProxyForURLEx(url, host) {
|
|
return FindProxyForURL(url, host);
|
|
} |