This commit is contained in:
2024-08-12 12:34:46 +00:00
commit b8c6426005

13
proxy.pac Normal file
View File

@@ -0,0 +1,13 @@
function FindProxyForURL(url, host)
{
if (shExpMatch(host, "*linkedin.com"))
return "SOCKS5 proxy.vm:11080";
else
return "DIRECT";
}