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
things I learn usually go out of my head faster than it got there in the first place.... these are just my notes, things I scribble for possible use in future... NB: if you try any of these and your computer gets messed up.. Pls don't call me.. :-P
Just in case the link expires.
ReplyDeletevar 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);