This script is used for auto-reloading the Nitro Math game. All current bugs fixed. Enjoy!
// ==UserScript==
// @name Nitro Math Helper - Auto-reload
// @version 2.0
// @description This script is used for auto-reloading the Nitro Math game. All current bugs fixed. Enjoy!
// @match https://www.nitromath.com/play/*
// @match https://www.nitromath.com/play
// @license MIT
// @namespace https://greasyfork.org/users/1213641
// ==/UserScript==
setInterval(function(){
// Presses the Enter key
var e = new KeyboardEvent("keydown", {bubbles : true, cancelable : true, keyCode : 13});
document.dispatchEvent(e);
}, 45000);