Kopert / Portal GVT Senha Enabler

// ==UserScript==
// @name       Portal GVT Senha Enabler
// @namespace  portalGVTSenhaEnabler
// @version    1.0.1
// @description  Enables the password field on the Portal GVT pages (removes the on-screen "security" keyboard)
// @copyright  2014+, Kopert
// @match      http://www.gvt.com.br/*
// @match      https://www.gvt.com.br/*
// ==/UserScript==

var el = document.getElementById('pswSenha'),
    elClone = el.cloneNode(true);

el.parentNode.replaceChild(elClone, el);