/ Published in: JavaScript
URL: http://oragg.com/2009/10/pac-setting-for-google-chrome.html
Expand |
Embed | Plain Text
function FindProxyForURL(url, host) { var proxy1 = "PROXY 127.0.0.1:1984", proxy2 = "PROXY 127.0.0.1:9666", proxy3 = "PROXY 127.0.0.1:8580", proxy4 = "PROXY 127.0.0.1:8000"; if (shExpMatch(url,"*blogspot.com*") || shExpMatch(url,"*box.net*") || shExpMatch(url,"*chromeexperiments.com*") || shExpMatch(url,"*chromium.org*") || shExpMatch(url,"*facebook.com*") || shExpMatch(url,"*meme.yahoo.com*") || shExpMatch(url,"*opera.com*") || shExpMatch(url,"*twitter.com*") || shExpMatch(url,"*youtube.com*") || shExpMatch(url,"*ytimg.com*")) { return proxy1; } return "DIRECT"; }
You need to login to post a comment.
