Reputation: 7510
Is it possible to access save passwords in chrome extension? I was looking through API but did not find it.. I want to export all passwords into different storage and using extension seems like logical way to do it, but I cannot find HOW to do it.
Thanks for any help.
Upvotes: 2
Views: 3390
Reputation: 7510
Ok, to answer my own question, it does not seem possible to access that information via extension API, but on linux (linux does not encrypt login information, windows does) all you need is to access "~/.config/chromium/Default/Login Data"
and extract data from logins table. It's sqlite3 db.
So it could be done with NPAPI.
Upvotes: 2