fix: correct privacy note — storage is unencrypted

browser storage.local is plain JSON on disk, not encrypted like
saved passwords (which use OS-level Keychain/DPAPI). Be honest
about the security model.

https://claude.ai/code/session_01Dvgwe7XMoSxnWXkih8p1Cw
This commit is contained in:
Claude
2026-03-26 00:53:15 +00:00
parent 045ee4848b
commit 625f08e4cc
+3 -2
View File
@@ -174,8 +174,9 @@
<footer class="footer">
<div class="privacy-note">
Your data never leaves your browser. No servers, no tracking, no analytics.
Identity data is stored in local browser storage only — as secure as your
browser's saved passwords. Nothing is transmitted anywhere.
Identity data is stored unencrypted in local browser storage — anyone with
access to your computer could read it. This is the same as browser cookies
and localStorage, not as secure as saved passwords (which are OS-encrypted).
</div>
<a href="#" id="btnOptions">Options</a>
</footer>