Created
January 28, 2015 19:07
-
-
Save nna774/145ac9f24901b5d6a9a6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function FindProxyForURL(url, host) { | |
if (url.substring(0, 5) == "http:") { | |
return "PROXY sazanami.nna774.net:8080"; | |
} else { | |
return "DIRECT"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment