6

On Chrome's developer page about storage in extensions, it explicitly says that the storage area is not encrypted, so confidential information should not be stored there.

Safari offers a "SafariExtensionSecureSettings" class to securely store key/value pairs. Is there an equivalent in Google Chrome?

Miles
  • 1,615
  • 4
  • 17
  • 42
  • I've seen some questions remotely similar to this where people have made the suggestion to encrypt the confidential information and then use localStorage, but I'm looking for a different solution. – Miles Aug 15 '12 at 15:12

1 Answers1

3

There is currently no equivalent in Google Chrome to Safari's "SafariExtensionSecureSettings".

Here is another answer that outlines security in localStorage more generally https://stackoverflow.com/a/3719435/117068

Community
  • 1
  • 1
Mike Grace
  • 16,636
  • 8
  • 59
  • 79