Last active
March 4, 2025 07:10
-
-
Save harishanchu/6852427 to your computer and use it in GitHub Desktop.
typeracer.com cheat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Before you start typing open your developer console and paste the following script | |
//Now pressing any key will result in to correct key press untill you reach next space key. | |
//I made the user push space to move further, so that someone viewing your typing will think you are not faking. | |
//warning: Site detects the WPM above 100 and asks you to do a captcha test. | |
var jq = document.createElement('script'); | |
jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"; | |
document.getElementsByTagName('head')[0].appendChild(jq); | |
// ... give time for script to load, then type. | |
jQuery.noConflict(); | |
// execute the following script in the console | |
(function($) | |
{ | |
var inputText; | |
var flag = true; | |
var i = 0; | |
$('body').on('keypress','.txtInput',function(e) | |
{ | |
if(flag) | |
{ | |
inputText = $('.inputPanel tr:first').text(); | |
flag = false; | |
} | |
if(inputText[i] == " ") | |
{ | |
if((e.which || e.keyCode)==32) | |
i++; | |
else | |
e.preventDefault(); | |
} | |
else | |
{ | |
e.preventDefault(); | |
$( '.txtInput' ).val($( '.txtInput' ).val()+inputText[i]); | |
i++; | |
} | |
}); | |
})(jQuery); |
i litteraly type faster than 100WPM i dont need this but im to lazy to type so......
Lool fire
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
stop cheating:)