Proxy Toggle에 대한 리뷰
Proxy Toggle 제작자: Richard West
리뷰 124개
- 5점 만점에 5점Firefox 사용자 17038145 님, 4년 전
- 5점 만점에 5점Firefox 사용자 14051185 님, 4년 전Not really sure what the "Don't use proxy for hosts we can detect as local (e.g. LAN IPs)" setting is, but I suspect it's just bad pattern matching not any sort of detection. Needed to turn it off to get to hosts on the other side of the proxy.
Still, quite nice aside from that misleading option, glad I don't have to go through the settings anymore. - 5점 만점에 5점Firefox 사용자 13132104 님, 5년 전I have been looking for something to easily switch between my local VPN/Proxy and the non-vpn forever. It was tedious going through the menu to turn it on and off for one or two sites.
And then I found this and it's awesome. Thank you - 5점 만점에 5점Firefox 사용자 16328979 님, 5년 전
- 5점 만점에 5점Manuel Maurer 님, 5년 전Super 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)
개발자 답글
5년 전에 게시됨I'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. - 5점 만점에 5점Firefox 사용자 16178132 님, 5년 전
- 5점 만점에 5점ThePiGuy24 님, 5년 전
- 5점 만점에 5점Firefox 사용자 10203599 님, 5년 전FoxyProxy kept failing to connect to my socks5 proxy after every update. This one just works.
- 5점 만점에 5점Nikolai Mavrenkov 님, 5년 전
- 5점 만점에 5점Firefox 사용자 13450520 님, 6년 전can you add support for dark mode (auto switching if possible?), it's almost invisible under darkmode.
개발자 답글
6년 전에 게시됨This should already be supported, but it only works if the relevant setting is enabled (there are details in the addon description). - 5점 만점에 5점Firefox 사용자 15311978 님, 6년 전Thanks Richard for explaining the new needs for the perms. Love this addon for use in my regular SSH tunneling.
If I could request, it'd be pretty cool if the button was instead a dropdown rather than a toggle, to select from a list of user-configured proxies.개발자 답글
6년 전에 게시됨I'd rather keep configuration as simple as possible, and my time to work on this is fairly limited, so I don't plan to add support for multiple proxies. Anyone is welcome to fork the code and do that though (I think the main nuisance would be overhauling the settings UI).