内蒙古干部网络学院

离开页面时自动点击继续学习,持续播放视频

目前為 2022-11-11 提交的版本,檢視 最新版本

// ==UserScript==
// @name         内蒙古干部网络学院
// @namespace    http://tampermonkey.net/
// @version      0.1.1
// @description  离开页面时自动点击继续学习,持续播放视频
// @author       AN drew
// @match        *://wlxy.nmgdj.gov.cn/*
// @require      https://lib.baomitu.com/jquery/3.5.0/jquery.min.js
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    if(window.location.href.indexOf('wlxy.nmgdj.gov.cn/exercise') == -1)
    {
        setInterval(function(){
            if($('div[role="alertdialog"] .next-btn').length>0)
            {
                $('div[role="alertdialog"] .next-btn').click();
            }
        },3000)
    }
    GM_addStyle(`[class="$id--option_key--LHu7jB9"] {background:#8080804d;}`);

})();