住院医师规范化培训|冰河传媒|网课不暂停

阻止网课自动暂停!

// ==UserScript==
// @name         住院医师规范化培训|冰河传媒|网课不暂停
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  阻止网课自动暂停!
// @author       zhang ruichao
// @match        http://2023zhupei01.iceriverbj.com/video/play/id/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=iceriverbj.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here..
    //检测是否暂停
    var thisvideo=document.querySelector("video")
    function detective()
    {
        if(thisvideo.paused==true){
            thisvideo.play();
            thisvideo.playbackRate=2;
        }
        if(thisvideo.ended==true || document.getElementById('layui-layer1')!=null){
            window.location.href="http://2023zhupei01.iceriverbj.com/index/index"
        }
    }
    setInterval(detective,1000)
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址