Greasy Fork

Greasy Fork is available in English.

5倍速静音刷课

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

当前为 2024-06-21 提交的版本,查看 最新版本

// ==UserScript==
// @name         5倍速静音刷课
// @namespace    http://tampermonkey.net/
// @version      V1.1.0
// @description  国资e学5倍速静音刷课,失焦不停止
// @author       大苍狗orz
// @match        *://elearning.tcsasac.com/*
// @match        *://pc.lgb360.com/
// @icon        
// @grant        none
// @license      GPL
// @run-at doucument-end

// ==/UserScript==
setInterval(function () {
    var current_video = document.getElementsByTagName('video')[0]
    current_video.playbackRate=5
    current_video.muted = true
    current_video.volume = 0
    current_video.play()
}, 1000);