Skip to content

Instantly share code, notes, and snippets.

function FindProxyForURL(url, host) {
// if (isPlainHostName(host) || dnsDomainIs(host, ".mozilla.org")) {
// return "DIRECT";
//} else {
return "PROXY 127.0.0.1:8080; DIRECT";
//}
}