Last active
January 29, 2021 16:23
-
-
Save MrwanBaghdad/7057ef38e6c04e837e85cdaad3d6ff1e 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, 'medium.com') || dnsDomainIs(host, 'codenames.game')) | |
| return "SOCKS 127.0.0.1:5555" | |
| return "DIRECT" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment