// ==UserScript== // @name 安徽专业技术人员继续教育在线-秒过课 // @namespace Violentmonkey Scripts // @grant none // @version 1.21 // @author - // @match *://*.zjzx.ah.cn/courseplay* // @grant none // @license MIT // @description 2022/4/30 09:10:15 // @downloadURL none // ==/UserScript== (function() { 'use strict'; setInterval(function(){ $('video').prop('volume', 0); $('video').get(0).play() $('video')[0].playbackRate=4 },3000) })();