This script is used for auto-reloading and auto-nitrolling. FTW!
当前为
// ==UserScript==
// @name Nitro Math Helper - Auto-reload
// @version 2
// @description This script is used for auto-reloading and auto-nitrolling. FTW!
// @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);