I am working on an extension where proxy is set through my extension using chrome extension proxy api(chrome.proxy.settings
). Everything works fine and I get all traffic on my proxy server except the ones in bypass list
of course.
Now my question is: How do we bypass the proxy set dynamically?
I mean Is there a way to bypass proxy for some URLs (not in proxy bypass list) programmatically? I understand bypass list included urls/patterns are bypassed. But I require some urls to bypass proxy on the go.
Anyone faced a similar requirement? Any direct method to bypass the same dynamically or any work around would be appreciated.
Bypass proxy on the go? You can pull any specify adressess from your web server. What's a problem?
For example:
Match all hostnames that match the pattern . A leading "." is interpreted as a "*.". Examples: "foobar.com", "foobar.com", ".foobar.com", "foobar.com:99", "https://x..y.com:99".
For more detailed patterns of bypassList, read the official documentation.