Show Password

By mastermaniac Last update Jun 30, 2009 — Installed 4,725 times.

There are 1 previous version of this script.

// ==UserScript==
// @name           Show Password
// @namespace      By Yash
// @description    Shows the password when mouse is hoverd on the textbox
// @include        *
// ==/UserScript==


var d=document.getElementsByTagName("input");
for(i=0;i<d.length;i++){
if(d[i].type=="password"){
d[i].setAttribute("onmouseover","this.type='text'");
d[i].setAttribute("onmouseout","this.type='password'");
}
}