How to intercept proxy authentication from Google Chrome extension?

When the proxy requires authentication (using a PAC script), the user must enter a username and password. Is there a way to replace this dialog with my own script and then provide the browser with the data it needs? (Username: Password)

+4
source share
1 answer

You can do this using the experimental WebRequest API: WebRequest # event-onAuthRequired

But you won’t be able to put the extension in the Chrome store.

+2
source

Source: https://habr.com/ru/post/1383121/


All Articles