// ==UserScript== // @name 2022_福建药师协会_执业药师继续教育学习平台-学习助手 切换屏幕,视频不暂停 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 切换屏幕,视频不暂停 // @author You // @match http://fjlpa.mtnet.com.cn/video/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.onload = function(){ var h = document.documentElement.scrollHeight || document.body.scrollHeight; window.scrollTo(h,h); } window.onload = function () { setInterval(() => { try { let hre = location.href; if (hre == "http://fjlpa.mtnet.com.cn/index") { document.querySelector(".indexTextBtn").click(); } if (hre.includes("http://fjlpa.mtnet.com.cn/video")) { window.onblur = function () {}; if (document.querySelector("video").paused) { document.querySelector("video").play(); } } } catch (error) {} }, 5000); setInterval(function(){ window.location.reload(); },20*60*1000); //隐藏继续看视频弹窗 $('.el-dialog__footer').hide(); }; })();