Skip to content

Instantly share code, notes, and snippets.

@matthiasgoergens
Created September 3, 2022 03:09
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 matthiasgoergens/1a46b9866cbc60f015a187a320b70c46 to your computer and use it in GitHub Desktop.
Save matthiasgoergens/1a46b9866cbc60f015a187a320b70c46 to your computer and use it in GitHub Desktop.
proxy
function FindProxyForURL(url, host) {
PROXY = "SOCKS 127.0.0.1:1337"
if (shExpMatch(host,"*.pandora.com")) {
return PROXY;
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment