Created a custom userscript that prompts users to save their login credentials in order to avoid entering them repeatedly.
Familiar with using localStorage.setItem() to store key-value pairs, but concerned about storing passwords in clear text. Seeking advice on best practices for securely storing passwords.
Are there any browser APIs available for secure password storage? Need the ability to revert the hash (if hashed) for implementing automatic login on a website.
Thank you in advance for any guidance.