Greasy Fork

Greasy Fork is available in English.

5倍速静音刷课

e学5倍速静音刷课,失焦不停止

当前为 2024-04-17 提交的版本,查看 最新版本

// ==UserScript==
// @name         5倍速静音刷课
// @namespace    http://tampermonkey.net/
// @version      V1.0.1
// @description  e学5倍速静音刷课,失焦不停止
// @author       大苍狗orz
// @match        https://elearning.tcsasac.com/*
// @icon        
// @grant        none
// @license      GPL
// @run-at doucument-end
// @contributionURL [email protected]
// ==/UserScript==
setInterval(function () {
    var current_video = document.getElementsByTagName('video')[0]
    document.getElementsByTagName("video")[0].playbackRate=5
    current_video.muted = true
    current_video.play()
}, 1000);