P
P
programmer01012018-03-29 18:04:18
Google Chrome
programmer0101, 2018-03-29 18:04:18

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

2 answer(s)
D
Dimonchik, 2018-03-29
@dimonchik2013

Yes, if you give him a list

V
Vladimir Dubrovin, 2018-03-29
@z3apa3a

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";
}

this script directs http:// traffic to the proxy, other traffic directly. Write
file:///c:/proxy/proxy.pac
In network settings/use auto configuration script/address
(you can also put this file on the internal server and specify the URI there or register this file as wpad.dat for WPAD)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question