NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Minha Claro Senha Enabler // @namespace minhaClaroSenhaEnabler // @version 1.0 // @description Enables the password field on the Minha Claro page // @copyright 2014+, Kopert // @match https://idp.claro.com.br/* // ==/UserScript== var e = unsafeWindow.$(".fld_SenhaRecebida"); e.unbind('keydown'); e.keydown(function(e) { if(e.keyCode == 13) { unsafeWindow.$("#frm_senha_recebida").submit(); return false; } });