Last active
March 22, 2022 05:19
-
-
Save majioa/7e552f823f95c5bf187cde7ed169e863 to your computer and use it in GitHub Desktop.
my mozilla pac settings
This file contains 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) { | |
host = host.toLowerCase(); | |
if (dnsDomainIs(host, "linkedin.com") || | |
dnsDomainIs(host, "rutracker.org") || | |
dnsDomainIs(host, "ipleak.net") || | |
dnsDomainIs(host, "telegram.org") || | |
dnsDomainIs(host, "t.me") || | |
dnsDomainIs(host, "telegra.ph") || | |
dnsDomainIs(host, "psb4ukr.org") || | |
dnsDomainIs(host, "plus.pl") || | |
dnsDomainIs(host, "b-ok.xyz") || | |
dnsDomainIs(host, "muziker.cz") || | |
dnsDomainIs(host, "tdesktop.com")) | |
return "PROXY localhost:8118"; // (IP:port) // privoxy | |
return "DIRECT"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment