typeracer
lets go champ, get ready to type
typeracer hack code
(() => {
const typeDelay = 20;
const txtInput = document.querySelector('.txtInput');
const textElmParent = document.querySelector(
'#gwt-uid-15 > table > tbody > tr:nth-child(2) > td > table > tbody > tr:nth-child(1) > td > table > tbody > tr:nth-child(1) > td > div > div:nth-child(1)'
);
function typeChars(chars, callback) {
if (chars.length > 0) {
txtInput.value += chars[0];
window.setTimeout(() => typeChars(chars.slice(1), callback), typeDelay);
} else {
window.setTimeout(callback, typeDelay);
}
}
let text = '';
for (let i = 1, textFragment; (textFragment = textElmParent.querySelector(`:nth-child(${i})`)) !== null; i++) {
text += textFragment.innerText;
}
typeChars(text, () => console.log('Done!'));
})();
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us