Hacker News new | past | comments | ask | show | jobs | submit login

Similarly, I have a Greasemonkey userscript to remove the readonly attribute for the password input form so my password manager works:

  for (const e of document.getElementsByClassName("pwordinput")) { 
    e.removeAttribute('readonly'); 
  }



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: