Skip to content

Instantly share code, notes, and snippets.

@vfsoraki
Created July 11, 2021 17:12
Show Gist options
  • Save vfsoraki/504de15913d01e0886f5adb689753df3 to your computer and use it in GitHub Desktop.
Save vfsoraki/504de15913d01e0886f5adb689753df3 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if (host.endsWith('.ir')) {
return 'DIRECT';
}
return 'SOCKS5 127.0.0.1:10002;SOCKS 127.0.0.1:10002';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment