Skip to content

Instantly share code, notes, and snippets.

Revisions

  1. skouny revised this gist Dec 14, 2018. 1 changed file with 1 addition and 3 deletions.
    4 changes: 1 addition & 3 deletions #selenium-chrome-authentication-extension
    Original 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...

    Thank's!
    Without retry will try to login again and again.
  2. skouny revised this gist Dec 14, 2018. 2 changed files with 10 additions and 4 deletions.
    5 changes: 5 additions & 0 deletions #selenium-chrome-authentication-extension
    Original 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!
    9 changes: 5 additions & 4 deletions background.js
    Original 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 (--retry < 0)
    return {cancel: true};
    return {authCredentials: {username: username, password: password}};
    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']
  3. @florentbr florentbr revised this gist Feb 15, 2018. 1 changed file with 3 additions and 6 deletions.
    9 changes: 3 additions & 6 deletions background.js
    Original 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 (username == null)
    if (--retry < 0)
    return {cancel: true};

    var authCredentials = {username: username, password: password};
    username = password = null;

    return {authCredentials: authCredentials};
    return {authCredentials: {username: username, password: password}};
    },
    {urls: ["<all_urls>"]},
    ['blocking']
  4. @florentbr florentbr revised this gist Nov 15, 2017. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion background.js
    Original 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: username};
    var authCredentials = {username: username, password: password};
    username = password = null;

    return {authCredentials: authCredentials};
  5. @florentbr florentbr revised this gist Jun 14, 2017. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions #selenium-chrome-authentication-extension
    Original 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.

  6. @florentbr florentbr revised this gist Jun 14, 2017. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions #selenium-chrome-authentication-extension
    Original 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.
  7. @florentbr florentbr created this gist Jun 14, 2017.
    18 changes: 18 additions & 0 deletions background.js
    Original 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']
    );

    9 changes: 9 additions & 0 deletions manifest.json
    Original 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"]
    }
    }