云学堂视频不暂停

跳过暂停且自动设置为二倍速播放

当前为 2021-11-05 提交的版本,查看 最新版本

// ==UserScript==
// @name         云学堂视频不暂停
// @version      0.3
// @description  跳过暂停且自动设置为二倍速播放
// @author       Airli
// @match        *.yunxuetang.cn/kng/course*
// @connect      Airli
// @namespace    com.fly
// ==/UserScript==

// Your code here...
setInterval(autoContinue,1000);

function autoContinue() {
    if(myPlayer.getPlaybackRate() == 1){
        myPlayer.setPlaybackRate(2);
    }
    var continueBtn = document.getElementById("reStartStudy");
    var a = parseFloat(document.getElementsByClassName("jw-knob jw-reset")[0].style.left);
    if(continueBtn && continueBtn.click){
        location.reload();
    }
    if($('#ScheduleText').html() == '100%'){
        myPlayer.seek("3600");
    }
    if(a >= 95){
        myPlayer.seek("1");
    }
}

QingJ © 2025

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