Last active
May 11, 2019 14:08
-
-
Save oscartbeaumont/4ccf4848eb295192302e8c9d91f3f2cf to your computer and use it in GitHub Desktop.
Test Proxy Config For My Laptop
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 (timeRange(21, 7)) { | |
return "SOCKS5 10.0.0.122:1080"; | |
} | |
return "DIRECT"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment