Greasy Fork

来自缓存

Greasy Fork is available in English.

安徽专业技术人员继续教育在线-16倍速度刷课

2022/4/30 09:10:15

当前为 2022-04-30 提交的版本,查看 最新版本

// ==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
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(function(){
        $('video')[0].playbackRate=16
    },6000)
})();