Files
idk.i2p/proxy.pac
2021-12-11 15:45:55 -05:00

9 lines
228 B
JavaScript

function FindProxyForURL(url, host) {
if (dnsDomainIs(host, ".i2p")) {
return "PROXY localhost:4444";
} else if (dnsDomainIs(host, ".onion")) {
return "PROXY localhost:9050";
}
return "DIRECT";
}