评教小助手

HFUT评教小助手

// ==UserScript==
// @name         评教小助手
// @namespace    http://jxglstu.hfut.edu.cn/
// @version      1.0
// @description  HFUT评教小助手
// @match        http://jxglstu.hfut.edu.cn/eams5-student/for-std/lesson-survey/start-survey/*
// @grant        none
// @author       himonoinu
// @license      GPL-3.0
// ==/UserScript==

(function() {
    const radios = document.querySelectorAll('.group');
    radios.forEach((radio) => {
        radio.firstChild.firstChild.firstChild.checked = true;
    });
    document.getElementById("save-button").click();
})();