离开页面时自动点击继续学习,持续播放视频
当前为
// ==UserScript==
// @name 内蒙古干部网络学院
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 离开页面时自动点击继续学习,持续播放视频
// @author AN drew
// @match *://wlxy.nmgdj.gov.cn/*
// @require https://lib.baomitu.com/jquery/3.5.0/jquery.min.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function(){
if($('div[role="alertdialog"] .next-btn').length>0)
{
$('div[role="alertdialog"] .next-btn').click();
}
},3000)
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址