Forgot your password?
typodupeerror

Comment No need for a Firefox extention (Score 4, Informative) 251

A Proxy AutoConfig (PAC) script is well suited for this task:
function FindProxyForURL(url, host)
{
if (shExpMatch(url, "*http://*.google.*"))
return "SOCKS 127.0.0.1:9050"; //Proxy here
else
return "DIRECT";
}

Place the above in a text file, and set it as the automatic proxy config file for your web browser (for Firefox users, Preferences>General>Connection Settings).
The matching string *http://*.google.*" should be used instead of http://.google.com/* as a foreign proxy will cause Google to redirect you to its respected cctld.

Slashdot Top Deals

Never tell people how to do things. Tell them WHAT to do and they will surprise you with their ingenuity. -- Gen. George S. Patton, Jr.

Working...