// ==UserScript== // @author LagSwitchedVirginity // @namespace https://github.com/LagSwitchedVirginity/UserScripts-and-UserStyles // @homepage https://github.com/LagSwitchedVirginity/UserScripts-and-UserStyles // @supportURL https://github.com/LagSwitchedVirginity/UserScripts-and-UserStyles // @name [COMBO] Origin // @description This is for the classic : combo // @version 1568336191 // @match https://signin.ea.com/p/originX/login* // @match http://signin.ea.com/p/originX/login* // @run-at document-idle // @downloadURL none // ==/UserScript== function e() { document.querySelector("#email").onkeyup = function(e, o) { this.value.replace(/(.*):(.*)/gi, function(e, o, t) { var u = e.split(":"), n = u.shift(), c = u.join(":"); document.querySelector("#email").value = n, document.querySelector("#password").value = c; }); }; } document.onload = e, setTimeout(e, 1e3);