// ==UserScript==
// @name          Alfabank LetMeTypeThePass
// @include       https://click.alfabank.ru/*
// ==/UserScript==

(function (){

var aI=document.getElementsByTagName("input");
if(aI.length>2)
{
for(i=0;i<aI.length;i++)
{
if (aI[i].id=='passwordID'){
	var bI=aI[i].parentNode;
	bI.innerHTML='<input id="passwordID" class="text_login" type="password" autocomplete="off" tabindex="2" value="" maxlength="16" name="password"/>';
	}
}
}
}());