Skip to content

Copy-paste this in your browser console to get maximal words per minute

Notifications You must be signed in to change notification settings

wolewd/10fastfingers-hack

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

10fastfingers-hack

Copy-paste this in your browser console to get maximal words per minute -> https://10fastfingers.com/typing-test/english

var input = $('#inputfield')[0]
var ev = $.Event('keyup')
ev.which = 32
setInterval(function() {
    if ($('.highlight')[0]) {
        input.focus()
        input.value = $('.highlight').text()
        $(input).trigger(ev)
    }
}, 100)

About

Copy-paste this in your browser console to get maximal words per minute

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%