// ==UserScript== // @name 学海在线刷课助手 // @version v0.2 // @namespace https://copm.yunxuetang.cn/kng // @description 刷课助手 // @author zackyj // @match https://copm.yunxuetang.cn/kng/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { window.onload = function() { player.bdPlayer.setPlaybackRate(2); console.log('自动设置两倍速'); setTimeout(function() { player.bdPlayer.setMute(true); console.log('自动设置静音播放'); }, 4000); }; window.setInterval(function () { detectionOnline(); console.log('检测一次弹窗'); }, 10000); function detectionOnline() { var dom = document.getElementById("dvWarningView"); if (dom) { document.getElementById("reStartStudy").onmousedown(); document.getElementById("reStartStudy").click() console.log('自动点击继续学习'); } } })();