I found a decision how to show all your passwords from Chromium. Tested on Ubuntu 14.04 and Chromium: Version 40.0.2214.111 Ubuntu 14.04 (64-bit). I used js script found early in search.
Output maked in format:
url|login|pass
Steps:
Open in Chromium browser link to Chrome password manager: chrome://settings-frame/passwords
Open console (F12) and insert this js code:
out="";
out2="";
var pm = PasswordManager.getInstance();
var model = pm.savedPasswordsList_.dataModel;
var pl = pm.savedPasswordsList_;
for(i=0;i<model.length;i++){
PasswordManager.requestShowPassword(i);
};
After step 2 you will see all your passwords in Chromium Password manager Dialog.
And now insert this part of js code in console:
for(i=0;i<model.length;i++){
var item = pl.getListItemByIndex(i);
out+="\n"+model.array_[i][0]+"|"+model.array_[i][1]+"|"+item.childNodes[0].childNodes[2].childNodes[0].value;
out2+='<br/>"http://'+model.array_[i][0]+'","'+model.array_[i][1]+'","'+item.childNodes[0].childNodes[2].childNodes[0].value+'","http://'+model.array_[i][0]+'","","",""';
};
console.log(out);
document.write(out2);
Now you see all your passwords in format i described early.
Write script on any language to import your passwords in browser like FireFox :)
Profit.
Github: https://github.com/megmage/chrome-export-passwords
p.s.
I Try to use all parts of code together, but it isnt work :(
update:
Chrome API based version in GitHub.
An answer is available here http://superuser.com/a/675167/65975
– ccpizza – 2015-10-11T08:58:24.957The functionality appears to be built into chrome://settings/passwords now. See the duplicate question to which ccpizza links above. – Mathieu K. – 2019-03-11T06:55:23.497