Skip to content

Instantly share code, notes, and snippets.

@Aaron1011
Created October 19, 2017 17:59
Show Gist options
  • Save Aaron1011/08773af4395e41c2aac93a3e803c2f09 to your computer and use it in GitHub Desktop.
Save Aaron1011/08773af4395e41c2aac93a3e803c2f09 to your computer and use it in GitHub Desktop.
Kahoot guessing bookmarklet
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();
})();
@unblockedz
Copy link

tf dose this do?

@Aaron1011
Copy link
Author

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