Created
May 14, 2015 18:24
-
-
Save thinrhino/b3ee58a78e8b60b0a6df 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 (dnsDomainIs(host, ".pandora.com")) | |
return "PROXY 199.189.84.217:3128" | |
if (dnsDomainIs(host, ".spotify.com")) | |
return "PROXY 54.246.92.203:80" | |
return "DIRECT" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment