// ==UserScript==
// @name           FxTransfer
// @namespace      lecaros
// @description    Fix bancoestado transfer page
// @include        https://www.bancoestado.cl/bancoestado/*
// ==/UserScript==


window.addEventListener(
    'load', 
    function() { 
		var allA, thisA, thisName;
		allA = document.getElementsByTagName('input');
		for (var i = 0; i < allA.length; i++) {
			thisA = allA[i];
			thisName=thisA.name;
			if (thisName == "CtaDestino" || thisName == "NombreDestino"){
				thisA.id = thisName;
			}
		}
	},
true);

