🥇华医网-专题培训-专项培训刷课【影刃】
// ==UserScript==
// @name 🥇华医网-专题培训-专项培训刷课【影刃】
// @namespace https://doc.yingren.xyz
// @icon https://doc.yingren.xyz/img/logo2.jpg
// @version 1
// @description 华医网-专题培训-专项培训刷课,功能:当前视频完成后自动播放下个视频;
// @author 影刃
// @match https://ztpx.91huayi.com/exercise/ExerciseCourse/*
// @grant none
// @license GPL 3
// ==/UserScript==
(function() {
'use strict';
// 当前视频完成后 播放下个视频
setInterval(function(){
if(bjyV.ended) {
document.querySelector("body > div.wrapper > div.middleContent > div.playContent > div.playMain > div.playAndList > div.lessonList > div.listGroup > div:nth-child(1) > div.text").click()
}
},3000)
})();