// ==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 gotosch@163.com // @downloadURL none // ==/UserScript== setInterval(function () { var current_video = document.getElementsByTagName('video')[0] document.getElementsByTagName("video")[0].playbackRate=5 current_video.muted = true current_video.play() }, 1000);