// ==UserScript== // @name 🥇绍兴市专业技术人员继续教育刷课【影刃】 // @namespace https://doc.yingren.xyz // @icon https://doc.yingren.xyz/img/logo2.jpg // @version 2 // @description 绍兴市专业技术人员继续教育刷课,功能:去除切换窗口后视频就暂停的限制 // @author 影刃 // @match http://220.191.224.159/* // @match http://jxjy.rsj.sx.gov.cn/* // @match http://jxjy.rsj.sx.gov.cn:81/* // @grant none // @license GPL 3 // ==/UserScript== (function() { 'use strict'; if(location.href.indexOf("player.htm")!=-1){ setInterval(function(){ if(document.querySelector("video").paused) { document.querySelector("video").play() } },10) } })();