您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自动评教解放双手
// ==UserScript== // @name 自动评教 // @namespace https://tampermonkey.net/ // @version 1.01 // @description 自动评教解放双手 // @author ? // @match *://jwxt.gcu.edu.cn/* // @grant none // @homepage https://gf.qytechs.cn/zh-CN/scripts/418924-%E5%8E%BB%E6%AD%BB%E5%90%A7-%E8%AF%84%E6%95%99gcu // @run-at document-start // ==/UserScript== document.addEventListener ("DOMContentLoaded", jq); // 渲染完成载入jq window.addEventListener ("load", load_end); // 全部加载完成后执行 window.alert=() => {}; // 去除弹窗 function jq(){ var importJs=document.createElement('script') importJs.setAttribute("type","text/javascript") importJs.setAttribute("src", 'https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js') document.getElementsByTagName("head")[0].appendChild(importJs) } function load_end () { let success = 0; if($('#DataGrid1__ctl12_JS1').length > 0){ $('#DataGrid1__ctl2_JS1').val('4(良好)'); for (let index = 1; index < 20; index++) { let temp_id = 'DataGrid1__ctl' + (index + 2) + '_JS1'; $("#" + temp_id).val('5(优秀)'); } if($('#Button2').attr('disabled') == undefined){ $('#Button2').click(); } else{ $('#Button1').click(); } } };
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址