function FindProxyForURL(url, host) { if (isPlainHostName(host) || dnsDomainIs(host, "example.com")) { return "SOCKS5 127.0.0.1:8288"; } else { return "DIRECT"; } }