chrome-extensions-samples icon indicating copy to clipboard operation
chrome-extensions-samples copied to clipboard

Is there a way to access the stored passwords also from a chrome app (.crx)?

Open diegovdev opened this issue 3 years ago • 2 comments

Hi! Every time I start my Chrome app I need to input my credential for the app, I would like to store them instead. Just like in a website in Chrome. Is this possible?

If this is not the right place where to ask this, could you point me to it?

Regards! Diego

diegovdev avatar Dec 10 '21 22:12 diegovdev

Top

andre150589 avatar Dec 12 '21 02:12 andre150589

You can instead encrypt them based on the user input and store them in a db file. then load that DB file, or salt them, encrypt them and save them in the localstorage, do keep in mind, if you delete the password to the database, it will be gone forever.

It's only possible if you're the one developing both apps. :D

Ambushfall avatar Aug 20 '22 15:08 Ambushfall