// ==UserScript== // @name 教师研修网自动点击继续计时和自动切换 // @namespace http://tampermonkey.net/ // @version 1.2 // @description 教师研修网,定时检测停止计时弹窗并点击,定时检测视频是否停止播放并切换当前课程下的下一个视频 // @author Joey // @icon http://i.yanxiu.com/favicon.ico // @match *://ipx.yanxiu.com/grain/course/*/detail* // @grant none // @require https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; setInterval(function() { if ($('.vcp-playtoggle').css('background-image') != undefined) { if ($('.ended-mask').css('display') != 'none') { $('.next').click(); return; } if ($('.alarmClock-wrapper').css('display') != 'none') { $('.alarmClock-wrapper').click(); console.log('继续播放'); return; } } }, 3000); })();