0

I am making an offline Browser extension that stores some sensitive data (think of it like a password manager).

How do I go about storing and retrieving this data while maintaining the ability to query it ?

Do I store encrypted data and then decrypt it all into memory once the user types his password? and are there any existing, well-maintained libraries that handle this sort of thing ?

Cheeze
  • 46
  • 1
  • 8
  • Your idea looks fine. In ManifestV3 you can use chrome.storage.session for the password, [more info](https://stackoverflow.com/a/73804636), and keep the service worker alive for as long as possible, [more info](https://stackoverflow.com/a/66618269). – wOxxOm Sep 26 '22 at 10:47

0 Answers0