UCAS-SessionTimeoutHelper

block the deadline alert from ucas website to avoid session expire

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

You will need to install an extension such as Tampermonkey to install this script.

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         UCAS-SessionTimeoutHelper
// @namespace    http://tampermonkey.net/
// @version      0.40
// @description  block the deadline alert from ucas website to avoid session expire
// @author       y4ung
// @match        https://course.ucas.ac.cn/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    //alert("Run script BlockAlertHelper. By y4ung");
    window.setInterval(function(){
        checkSessionTimeoout();
    }, 60000);

})();

function checkSessionTimeoout(){//检查会话是否快要过期
    var timeout_alert_body = document.getElementById("timeout_alert_body");
    if (null !== (timeout_alert_body)){//timeout_alert_body不为空,即已经出现会话过期的提示窗口
        console.log("[INFO] 检测到会话过期提示框: %s", new Date().toLocaleString());
        clickBtn(timeout_alert_body.children[1]);

    }
}

function clickBtn(btn) { // 模拟浏览器的鼠标点击事件
    const event = new MouseEvent('click', {
        view: window,
        bubbles: true,
        cancelable: true
    });
    btn.dispatchEvent(event);
}