I am making an extension that needs to keep a profile of the user so it can pull the right information from various servers when the user logs in.
So I found this post: Storage of passwords in Google Chrome Extension . I don't find it too helpful.
I believe that if I could store a hash of the user's login password (unique to my extension) I could then use the password as a key to encrypt all their personal information. I am concerned about the comment made in the post I referenced, saying that, they could read the source code of the extension and work out the hash.
Is my idea feasible? And if so, what should I use? Or other suggestions?