// ==UserScript== // @name 安徽专业技术人员继续教育在线-16倍速度刷课 // @namespace Violentmonkey Scripts // @grant none // @version 1.0 // @author - // @description 2022/4/30 09:10:15 // @match *://*.zjzx.ah.cn/courseplay* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(function(){ $('video')[0].playbackRate=16 },6000) })();