倍速后台静音播放
// ==UserScript== // @name 倍速后台静音播放 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://lzksj.zgzjzj.com/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // ==/UserScript== (function() { 'use strict'; const setVideoHandler = () => { setInterval(() => { try { var video = document.querySelector("video"); if (!!video) { video.muted = true; video.playbackRate = 4; video.play().catch((err) => { console.lo...