How to view saved passwords in chrome?
Whenever
someone select remember password in login form,the passwords will be
automatically filled. But the problem is that we can login but can not
see the password. Because the password will be shown as "astersik
characters"(*). Her e is the trick to crack that also.
Visit any site which remembers passwords and show astersik characters in password box.
Copy the following code
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}}if(s)alert("Passwords in forms on this page:\n\n" + s);else
alert("There are no passwords in forms on this page.");}());
Paste in the address bar.
Press enter key
Now the hidden password behind the astersik character will be shown.