// ==UserScript==
// @name Mutx163学习通自动评教
// @namespace http://tampermonkey.net/
// @version v1
// @description 学习通自动评价,默认满分
// @author Mutx163
// @match http://newes.chaoxing.com/pj/newesReception/*
// @icon
// @license MIT
// @grant none
// @downloadURL none
// ==/UserScript==
//默认开启了自动提交,把不喜欢的话自动提交下面的那行代码注释掉即可
window.onload = function() {
'use strict';
setTimeout(() => {
// 查找所有标记为5分的元素并模拟点击
const options = document.querySelectorAll('input.inputvalue.reselect[score="5.0"]');
options.forEach(option => {
const clickEvent = new MouseEvent('click', {
bubbles: true,
cancelable: true,
view: window
});
option.dispatchEvent(clickEvent);
});
// 查找