Skip to content

Instantly share code, notes, and snippets.

@daxian-dbw
Last active February 28, 2017 06:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daxian-dbw/525621f7c21013542fd588717b46ae99 to your computer and use it in GitHub Desktop.
Save daxian-dbw/525621f7c21013542fd588717b46ae99 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if ( host == "www.msn.com" ) {
return "PROXY 10.10.10.10";
}
else {
return "DIRECT";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment