UCAS_SessionExpireHelper

block the deadline alert from ucas website to avoid session expire

اعتبارا من 06-03-2020. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         UCAS_SessionExpireHelper
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  block the deadline alert from ucas website to avoid session expire
// @author       y4ung
// @match        https://course.ucas.ac.cn/portal/site/*/video/play*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    // button的title属性:Mute or Unmute
    alert("Run script BlockAlertHelper. By y4ung");
    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);// 无缝切换开启声音
    }, 10000);

})();

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