Skip to content

Instantly share code, notes, and snippets.

@samuelwilliams
Created February 15, 2016 07:43
Show Gist options
  • Save samuelwilliams/b08bbdc978cce86582bd to your computer and use it in GitHub Desktop.
Save samuelwilliams/b08bbdc978cce86582bd to your computer and use it in GitHub Desktop.
Browser Bookmarklet to show passwords on a webpage
javascript:(function(){var a=document.getElementsByTagName('input');for(var i=0,e;e=a[i];i++)if(e.getAttribute('type')=='password')e.setAttribute('type', 'text');})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment