Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save merqurio/5431680c8e69416ff9511cbe406426d4 to your computer and use it in GitHub Desktop.
Save merqurio/5431680c8e69416ff9511cbe406426d4 to your computer and use it in GitHub Desktop.
ExportChromePasswords.js
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].shownUrl+'","'+model.array_[i].username+'","'+item.childNodes[0].childNodes[2].childNodes[0].value+'","http://'+model.array_[i].origin+'"," "," "," "';
};
var newWindow = window.open("", "MsgWindow");
newWindow.document.write(decryptedRow);
}
,300);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment