您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically select your exam site in CPE exam registration page.
// ==UserScript== // @author IanDesuyo // @name CPE Auto exam selector // @namespace https://github.com/IanDesuyo/userscripts/cpe-auto-exam-selector // @description Automatically select your exam site in CPE exam registration page. // @match https://cpe.cse.nsysu.edu.tw/cpe/newest // @version 1.0 // @grant none // @noframes // @homepageURL https://github.com/IanDesuyo/userscripts // @supportURL https://github.com/IanDesuyo/userscripts/issues // ==/UserScript== const EXAM_SITE_KEYWORD = "逢甲"; const AUTO_SUBMIT = false; (() => { const schoolOption = [...document.querySelectorAll("select[name='site'] option")].filter(option => option.innerText.includes(EXAM_SITE_KEYWORD) ); const schoolValue = schoolOption[0].getAttribute("value"); document.querySelector("select[name='site']").value = schoolValue; if (AUTO_SUBMIT) { const button = document.querySelector("table:last-child tr.info button"); button.click(); } })();