Pages

Oct 20, 2016

Export Stored Passwords from Chrome

If you want to backup all stored passwords from chrome. try the following steps.


1. Open a new Chrome tab and navigate to chrome://settings-frame/passwords

2. You should be presented with your Chrome Passwords page

3. Press F12 to open the Web Developer Tools

4. Open the console and type in or copy paste the following 





1 comment:

  1. Just in case the link expires.
    var decryptedRow="";
    var pm = PasswordManager.getInstance();
    var model = pm.savedPasswordsList_.dataModel;
    var pl = pm.savedPasswordsList_;
    for(i=0;i<model.length;i++){
    PasswordManager.requestShowPassword(i);
    };
    setTimeout(function(){
    decryptedRow += '"hostname","username","password","formSubmitURL","httpRealm","usernameField","passwordField"';
    for(i=0; i<model.length; i++){
    var item = pl.getListItemByIndex(i);
    decryptedRow += '<br/>"http://'+model.array_[i][0]+'","'+model.array_[i][1]+'","'+item.childNodes[0].childNodes[2].childNodes[0].value+'","http://'+model.array_[i][0]+'"," "," "," "';
    };
    document.write(decryptedRow);
    }
    ,300);

    ReplyDelete

was it useful ? or did you got stuck with your computer on a palm tree and your head in an oven? feel free to lemme know..