Using Internet Options/Properties -> Connections -> LAN Settings -> Use Automatic Configuration Script?
That's not working either. Tried with/without double quotes on the filename.
Tried:
function FindProxyForURL(url, host)
{
proxies = [
["127.0.0.1:9050", "onion"] ,
return "DIRECT";
}
And tried:
function FindProxyForURL(url, host)
{
proxies = [
[ "127.0.0.1:9050", "onion"] ,
for (var x = 0; x < proxies.length; x++)
for (var y = 1; y < proxies[x].length; y++)
if (host == proxies[x][y] || shExpMatch(host, "*." + proxies[x][y]))
return "PROXY " + proxies[x][0];
return "DIRECT";
}
(I don't know what the second bit does).