CPE Auto exam selector

Automatically select your exam site in CPE exam registration page.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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();
  }
})();