您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
阻止网课自动暂停!
// ==UserScript== // @name 住院医师规范化培训|冰河传媒|网课不暂停 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 阻止网课自动暂停! // @author zhang ruichao // @match http://2023zhupei01.iceriverbj.com/video/play/id/* // @icon https://www.google.com/s2/favicons?sz=64&domain=iceriverbj.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Your code here.. //检测是否暂停 var thisvideo=document.querySelector("video") function detective() { if(thisvideo.paused==true){ thisvideo.play(); thisvideo.playbackRate=2; } if(thisvideo.ended==true || document.getElementById('layui-layer1')!=null){ window.location.href="http://2023zhupei01.iceriverbj.com/index/index" } } setInterval(detective,1000) })();