您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Refreshes the page every five minutes until the guard is asleep, then prints the current time
// ==UserScript== // @name Neopets - Magma pool helper // @namespace https://greasyfork.org/en/users/58051-roblox // @description Refreshes the page every five minutes until the guard is asleep, then prints the current time // @include http://www.neopets.com/magma/pool.phtml // @version 1 // @grant none // ==/UserScript== var time = document.getElementById("nst").textContent; var pool = document.getElementById("poolOuter"); var text = pool.textContent.trim(); if (text.startsWith("I'm sorry, ")) { console.log("No"); setTimeout(function() { location.reload(false); }, 5 * 60 * 1000); } else { console.log("Success"); document.title = time; } console.log(time);