Created
October 19, 2017 17:59
-
-
Save Aaron1011/08773af4395e41c2aac93a3e803c2f09 to your computer and use it in GitHub Desktop.
Kahoot guessing bookmarklet
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
javascript:(function() { | |
input = $("input"); | |
button = $("button"); | |
function rand() { return Math.floor(((Math.random() * (999999) - (100000)) + 100000)) } | |
function guess() { input.val(rand().toString()); input.trigger('change'); input.trigger('input'); button.click(); latest = setTimeout(guess, 5000) } | |
guess(); | |
})(); |
This attempts to randomly guess Kahoot room codes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tf dose this do?