This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function FindProxyForURL(url, host) { | |
// If the hostname matches specific domains, use corresponding proxies | |
if (dnsDomainIs(host, ".ultimatix.net")) { | |
return "PROXY 10.66.18.50:3128"; | |
} else if (dnsDomainIs(host, ".bing.com") && url.includes("/chat")) { | |
return "PROXY 10.66.18.50:3128"; | |
} else if (dnsDomainIs(host, ".kaggle.com")) { | |
return "PROXY 10.5.18.50:3128"; | |
} else { | |
// For all other sites, use the default proxy |