// ==UserScript== // @name 5倍速静音刷课 // @namespace http://tampermonkey.net/ // @version V1.1.3 // @description 国资e学、链工宝网页版,5倍速静音安全刷课,失焦不停止 // @author 大苍狗orz // @match https://elearning.tcsasac.com/* // @match https://www.lgb360.com/* // @icon // @grant none // @license GPL // @run-at doucument-end // @downloadURL none // ==/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);