function FindProxyForURL(url, host) { if(isInNet(host, "192.168.1.0", "255.255.255.0") || shExpMatch(host, '*.eviltech.fr') || isInNet(host, "10.0.0.0", "255.0.0.0") || isInNet(host, "172.16.0.0", "255.240.0.0") || isInNet(host, "127.0.0.1", "255.255.255.255") || shExpMatch(host, '*.plex.direct') || shExpMatch(host, '*appboy.eu') || shExpMatch(host, '*discordapp.com') || shExpMatch (host, '*deliveroo.com') || shExpMatch(host, '*deliveroo.fr') || shExpMatch(host, '*.primevideo.com') || shExpMatch(host, '*.sncf-connect.com') || shExpMatch(host, '*sodexo.*') || shExpMatch(host, '*sodexopass.fr') || shExpMatch(host, '*airbnb.fr') ||shExpMatch(host, '*leroymerlin.fr') || shExpMatch(host, '*.gouv.fr') || shExpMatch(host, '*.gog.com') || shExpMatch(host, '*amundi-ee.ecom') ) { return "DIRECT"; } return "PROXY proxy.eviltech.fr:4443" ; "DIRECT"; }