// ==UserScript== // @name 浙江省安全生产网络学院刷课脚本 // @namespace https://jiaobenmiao.com/ // @version 1.0 // @description 该油猴脚本用于 浙江省安全生产网络学院 的辅助看课,脚本功能如下:解除视频自动暂停限制,视频自动播放 // @author 脚本喵 // @match https://yjaqxy.zjyjxj.cn/* // @grant none // @icon https://jiaobenmiao.com/img/logo2.jpg // @license MIT // ==/UserScript== (function () { 'use strict'; let oldadd = EventTarget.prototype.addEventListener EventTarget.prototype.addEventListener = function (...args) { if (window.onblur !== null) { window.onblur = null; } if (args.length !== 0 && args[0] === 'visibilitychange') { console.log('劫持visibilitychange成功,奥利给!') return; } return oldadd.call(this, ...args) } setTimeout(function () { var video = document.querySelector("video") if (video.paused) { video.play() } }, 3000) })();