Most of the people are forgot the password for some popular sites like gmail,facebook and also internet banking password.but this password are stored in your browser behind the asterisks/stars.so you cant view this password.now i share a javascript code that helps to you for view the password behind the asterisks.this javascript are supports to google chrome,opera and internet explorer.but not supported to mozilla firefox.
follow the steps:
1.open your browser
2.go to any login page which the password is behind the asterisks.
3.copy and paste the bellow javascript to to your address bar(login page)
javascript: var p=r(); function r(){var g=0;var x=false;var x=z(document.forms);g=g+1;var w=window.frames;for(var k=0;k<w.length;k++) {var x = ((x)|| (z(w[k].document.forms)));g=g+1;}if (!x) alert('Password not foundin ' + g + ' forms');}function z(f){var b=false;for(var i=0;i<f.length;i++) {var e=f[i].elements;for(var j=0;j<e.length;j++) {if (h(e[j])) {b=true}}}return b;}function h(ej){var s='';if (ej.type=='password'){s=ej.value;if (s!=''){prompt('Password found ', s)}else{alert('Password isblank')}return true;}}