// ==UserScript== // @name 云学堂视频不暂停 // @version 0.2 // @description 跳过暂停且自动设置为二倍速播放 // @author Airli // @match *.yunxuetang.cn/kng/course* // @connect Airli // @namespace com.fly // @downloadURL none // ==/UserScript== // Your code here... setInterval(autoContinue,1000); function autoContinue() { if(myPlayer.getPlaybackRate() == 1){ myPlayer.setPlaybackRate(2); } var continueBtn = document.getElementById("reStartStudy"); if(continueBtn && continueBtn.click){ location.reload(); } if($('#ScheduleText').html() == '100%'){ myPlayer.seek("3600"); } }