Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 539 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 539 Bytes

typeracer-cheat

A simple script that allows you to prank your friends with fast typing speed.

Steps

Script

var n=document.querySelectorAll('[unselectable="on"]');var t="";n.forEach(function(n){t+=n.innerHTML});var e=0;document.getElementsByClassName("txtInput")[0].addEventListener("keypress",function(n){n.preventDefault();this.value+=t[e++]});