Reputation: 6739
I want to add authentication so that only my chrome extension can connect to my http web proxy (squid).However i haven't find anything regarding authentication in the chrome.proxy docs
Upvotes: 1
Views: 886
Reputation: 4950
You can add authentication by calling 'chrome.webRequest - onAuthRequired' API. You must declare the 'webRequest' permission in the extension manifest to use the web request API. 'onAuthRequired' fires when a request requires authentication of the user.
Upvotes: 1