Skip to content

DavidMellul/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

 
 
 

Contributors