Greasy Fork is available in English.
block the deadline alert from ucas website to avoid session expire
当前为
// ==UserScript==
// @name UCAS_SessionExpireHelper
// @namespace http://tampermonkey.net/
// @version 0.1
// @description block the deadline alert from ucas website to avoid session expire
// @author y4ung
// @match https://course.ucas.ac.cn/portal/site/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var mute_btn = document.getElementsByClassName("vjs-mute-control vjs-control vjs-button vjs-vol-3")[0];
window.setInterval(function(){
clickMuteBtn(mute_btn);
clickMuteBtn(mute_btn);
}, 5000);
})();
function clickMuteBtn(mute_btn) {
const event = new MouseEvent('click', {
view: window,
bubbles: true,
cancelable: true
});
mute_btn.dispatchEvent(event);
}