您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
SNUT实验室安全教育学习网挂机,4分钟刷新一次
// ==UserScript== // @name SNUT实验室安全教育学习网挂机 // @namespace https://github.com/Pumblus // @version 0.2 // @description SNUT实验室安全教育学习网挂机,4分钟刷新一次 // @author Pumblus // @originalAuthor Suzuran // @license MIT // @match http://218.195.96.53:82/* // @match https://sysaqjy.snut.edu.cn/* // @grant unsafeWindow // ==/UserScript== function checkForTextAndRefresh() { const checkText = () => { const hasLearningText = document.body.innerText.includes("考前练习"); const hasManualText = document.body.innerText.includes("电气类"); if (hasLearningText && hasManualText) { console.log("目标文本找到,页面将在4分钟后刷新..."); setTimeout(() => { location.reload(); }, 4 * 60 * 1000); } else { console.log("未找到目标文本,继续监控..."); } }; setInterval(checkText, 1000); } checkForTextAndRefresh();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址