Answer the question
In order to leave comments, you need to log in
Are there Chrome extensions that will proxy all non-https sites?
In order to prevent the collection of statistics by the provider, visited web pages, as well as reduce the load on the proxy so that https is not re-encrypted.
Answer the question
In order to leave comments, you need to log in
No extension required, you can use a PAC file (or WPAD to automatically do this configuration).
For example, for a PAC file, make a file c:\proxy\proxy.pac with something like this:
function FindProxyForURL(url, host)
{
if (url.substring(0, 5)=="http:") RETURN "PROXY 1.2.3.4:8080";
return "DIRECT";
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question