您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
教务系统自动教师评测,解放双手
当前为
// ==UserScript== // @name 广城理自动化教评 // @namespace lweilve.top // @version 0.1 // @description 教务系统自动教师评测,解放双手 // @author Lweilve // @match http://jwxt.gcu.edu.cn/* // @icon http://lweilve.top/%E9%A6%99%E8%95%89.png // @grant none // ==/UserScript== (function() { 'use strict'; const opt = document.getElementById('Form1').getElementsByTagName('option'); const btn1 = document.getElementById('Button1'); const btn2 = document.getElementById('Button2'); if(btn2.disabled){ for(let i = 0; i < opt.length; i++){ if(i == opt.length - 4){ opt[i].setAttribute("selected","selected") btn1.click(); }else if(opt[i].label === "5(优秀)"){ opt[i].setAttribute("selected","selected") } } }else{ btn2.click(); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址