Recensioni per Proxy Toggle
Proxy Toggle di Richard West
Recensione di Manuel Maurer
Valutata 5 su 5
di Manuel Maurer, 4 anni faSuper easy to use. However, it will only detect internal IPs or specific internal domains. Domains that are mapped to an internal IP via DNS are not detected. I've tested it with Line 103 of background.js changed to return(isLocalIPv4(host) || isLocalIPv4(dns.resolve(host))); and it seems to work (needs dns permissions though)
Replica dello sviluppatore
pubblicato il 4 anni faI'm not sure what the performance impact of that is, since that function is called for every request the browser makes. Not resolving DNS was a deliberate choice, and is why the option text mentions LAN IPs. It's fast (since we're just doing a simple pattern match) but imperfect.
It might be that it doesn't make much difference if the lookup is always cached internally by Firefox already, but the resolve documentation is a bit light on detail, so I don't know if we can rely on that or not.
It might be that it doesn't make much difference if the lookup is always cached internally by Firefox already, but the resolve documentation is a bit light on detail, so I don't know if we can rely on that or not.