If you use a lot of online services it also means that you have got a lot of passwords and usernames to remember. Aware of this issue, all Internet browsers have got a special feature which, as soon as you login your email account for example, prompt you to save password and username so that, next time you will use the service again, the browser will fill in the login interface for you. However, while the username is fully displayed, the password is hidden by asterisks. Now, if for any reason you don’t remember such a password you won’t have any way to recover it. Usually, to get it back, you will have to buy a special piece of software. Recently, I have found an interesting, amazing piece of code which will make visible all your forgotten passwords hidden behind asterisk in your browser…in a couple of seconds and without spending a dime!
The piece of code I am going to show you works with all Internet browsers including: Internet Explorer, Firefox, Google Chrome, Safari etc. Here is the procedure to follow to reveal your passwords:
- Open your browser.
- Go to the Web page containing the login in form where you saved your password.
- Copy and paste the following piece of code to your browser address bar:
- javascript:(function(){var s,F,j,f,i; s = “”; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == “password”) s += f[i].value + “n”; } } if (s) alert(“Passwords in forms on this page:” + s); else alert(“There are no passwords in forms on this page.”);})();
- Press Enter.
- As soon as you press Enter, the browser will display a window containing the password!
Filed under: How to make visible all your forgotten passwords hidden behind asterisk




