您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
e学5倍速静音刷课,失焦不停止
当前为
// ==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);