Nitro Math Helper - Auto-reload

This script is used for auto-reloading and auto-nitrolling. FTW!

目前為 2023-11-08 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Nitro Math Helper - Auto-reload
// @version     3
// @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://gf.qytechs.cn/users/1213641
// ==/UserScript==
 
setInterval(function(){
    // Presses the Enter key
    var e = new KeyboardEvent("keydown", {bubbles : true, cancelable : true, keyCode : 13});
    document.dispatchEvent(e);
}, 45000);

window.setInterval(function(){
  location.reload(true);
}, 95000);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址