您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自动刷新结果页
// ==UserScript== // @name BIT-Programming-Refresh result // @namespace http://tampermonkey.net/ // @version 0.2.2 // @description 自动刷新结果页 // @license GPL-3.0-or-later // @supportURL https://github.com/YDX-2147483647/BIT-enhanced/issues // @author Y.D.X. // @match https://lexue.bit.edu.cn/mod/programming/result.php?* // @grant none // ==/UserScript== (function () { 'use strict' function auto_refresh () { const titles = document.querySelectorAll('[role=main] > h3') if (titles[0].innerText === '查看程序的测试结果' && titles[0].nextSibling.innerText === '找不到您的程序') { return } if (titles[titles.length - 1].innerText !== '测试结果') { window.location.reload() } } window.setInterval(auto_refresh, 2000) })()