Show Password onFocus

By LouCypher Last update Feb 20, 2012 — Installed 9,128 times.

Password manager doesn't save my password

in
Subscribe to Password manager doesn't save my password 2 posts, 1 voice



NV Scriptwright
ChromeMacintosh

If I typed a password and press enter form will be submitted and password manager doesn't ask me to save my password.

I fix the problem:

var KEY_ENTER = 13;

input.addEventListener('keydown', function onBeforeSubmit(e){
  if (e.keyCode === KEY_ENTER) this.type = 'password';
}, false);

 
NV Scriptwright
ChromeMacintosh

While you do not respond, I fixed it by myself. See Show Password on Focus.