Forked from florentbr/#selenium-chrome-authentication-extension
Last active
December 14, 2018 09:21
Revisions
-
skouny revised this gist
Dec 14, 2018 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -3,6 +3,4 @@ To build the extension, update the username/password and zip `background.js` and Ensure you put the credentials for the corect host. Without retry will try to login again and again. -
skouny revised this gist
Dec 14, 2018 . 2 changed files with 10 additions and 4 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,8 @@ 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... Thank's! This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,13 +1,14 @@ 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'] -
florentbr revised this gist
Feb 15, 2018 . 1 changed file with 3 additions and 6 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,16 +1,13 @@ var username = "my-username"; var password = "my-password"; var retry = 3; chrome.webRequest.onAuthRequired.addListener( function handler(details) { if (--retry < 0) return {cancel: true}; return {authCredentials: {username: username, password: password}}; }, {urls: ["<all_urls>"]}, ['blocking'] -
florentbr revised this gist
Nov 15, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ chrome.webRequest.onAuthRequired.addListener( if (username == null) return {cancel: true}; var authCredentials = {username: username, password: password}; username = password = null; return {authCredentials: authCredentials}; -
florentbr revised this gist
Jun 14, 2017 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,2 +1,3 @@ To build the extension, update the username/password and zip `background.js` and `manifest.json` in a single archive. -
florentbr revised this gist
Jun 14, 2017 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ To build the extension, update the username/password and zip `background.js` and `manifest.json` in a single archive. -
florentbr created this gist
Jun 14, 2017 .There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ var username = "my-username"; var password = "my-password"; chrome.webRequest.onAuthRequired.addListener( function handler(details) { if (username == null) return {cancel: true}; var authCredentials = {username: username, password: username}; username = password = null; return {authCredentials: authCredentials}; }, {urls: ["<all_urls>"]}, ['blocking'] ); This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ { "manifest_version": 2, "name": "Authentication for ...", "version": "1.0.0", "permissions": ["<all_urls>", "webRequest", "webRequestBlocking"], "background": { "scripts": ["background.js"] } }