Forked from florentbr/#selenium-chrome-authentication-extension
Last active
December 14, 2018 09:21
-
-
Save skouny/de799abdae3d7aff0d1ab0a1b0d88163 to your computer and use it in GitHub Desktop.
Chrome extension to automatically set the credentials.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To build the extension, update the username/password and zip `background.js` and `manifest.json` in a single archive. | |
Ensure you put the credentials for the corect host. | |
Without retry will try to login again and again. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var host = "my-host.com"; | |
var username = "my-username"; | |
var password = "my-password"; | |
var retry = 3; | |
chrome.webRequest.onAuthRequired.addListener( | |
function handler(details) { | |
if ('challenger' in details && 'host' in details['challenger'] && details['challenger']['host'].includes(host)) { | |
if (--retry < 0) return { cancel: true }; | |
return { authCredentials: { username: username, password: password } }; | |
} | |
}, | |
{urls: ["<all_urls>"]}, | |
['blocking'] | |
); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifest_version": 2, | |
"name": "Authentication for ...", | |
"version": "1.0.0", | |
"permissions": ["<all_urls>", "webRequest", "webRequestBlocking"], | |
"background": { | |
"scripts": ["background.js"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment