自動選擇 非常同意 並送出答案
// ==UserScript==
// @name 資安素養闖關-自動填非常同意並送出
// @namespace http://tampermonkey.net/
// @version 1.1
// @description 自動選擇 非常同意 並送出答案
// @author issac
// @match *://isafeevent.moe.edu.tw/*
// @grant none
// @license GPL-3.0 License
// ==/UserScript==
(function() {
'use strict';
function autoFillAndSubmit() {
document.querySelectorAll("input[type=radio][value='5']").forEach(r => r.checked = true);
let submitBtn = document.querySelector(".btnSendExam");
if(submitBtn) submitBtn.click();
}
window.addEventListener('load', () => {
setTimeout(autoFillAndSubmit, 1000); // 延遲1秒執行
});
})();