您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
提交之后自动单击“查看结果”
// ==UserScript== // @name BIT-Programming-Jump to result // @namespace http://tampermonkey.net/ // @version 0.1.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/submit.php // @grant none // ==/UserScript== (function () { 'use strict' function jump_to_result () { const button = document.querySelector('a[href^=result]') if (button) { button.click() } } window.setInterval(jump_to_result, 1000) })()