(function(){
setTimeout(function() {
var passwordForms = document.evaluate('//input[@type="password"]', document, null, 7, null);
for (var i = 0, l = passwordForms.snapshotLength; i < l; i++) {
passwordForms.snapshotItem(i).type = 'text';
}
}, 0);
})();