Skip to content

Instantly share code, notes, and snippets.

@xinhaoyuan
Created June 12, 2017 23:38
Show Gist options
  • Save xinhaoyuan/061579a6a51ea1e5a0b1192aee8daa66 to your computer and use it in GitHub Desktop.
Save xinhaoyuan/061579a6a51ea1e5a0b1192aee8daa66 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if (shExpMatch(url, "http://127.0.0.1:8080/*")) {
return "SOCKS 127.0.0.1:8080";
}
else {
return "DIRECT";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment