Convert a Password Field to a Text Field

How many time does it happen that you just can't get your password right because you can't see what's beneath those * or ●.

If it does happen to you, or even if it doesn't, you can change the password field of any webpage to a standard text field for easy editing, copying,etc! Just run the following line of Javascript code in you address bar, and try typing in the password!

javascript:(function(){var E=document.getElementsByTagName('input');for(var i=0;i<E.length;i++){if(E[i].getAttribute('type').toLowerCase() == 'password'){E[i].setAttribute('type','text');}}})()

 PS: Don't worry, the code here will not mail your password to me, just in case you were wondering! I guarantee it!:-)

2 comments:

I hate spams, big time! Please do not spam.