Skip to content

onescriptkid/10fastfingers-exploit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🔥 10fastfingers-exploit

Max-out the 10fastfinger's typing test WPM

terminal velocityyyyyyyyyyyyyy

ctrl+c / ctrl+v into the console to achieve 400 WPM

const input = document.getElementById('inputfield')
const nextWord = new KeyboardEvent('keyup', { 'key':' ', 'keyCode': 32 })
nextWord.which = 32

const speedrun = () => {
  const currWord = document.getElementsByClassName('highlight')[0]
  if (currWord) {
    input.focus()
    input.value = currWord.textContent
    input.dispatchEvent(nextWord)
  }
}

setInterval(speedrun, 100)

terminal velocityyyyyyyyyyyyyy

About

Max-out the 10fastfinger's typing test WPM

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published