Greasy Fork

凉山2倍速自动放

快速代看+VX:zengyi136

目前为 2024-03-13 提交的版本。查看 最新版本

// ==UserScript==
// @name         凉山2倍速自动放
// @description  快速代看+VX:zengyi136
// @license       zengyi136
// @version      0.1
// @description  倍速播放_自动播放视频
// @author
// @match        *://www.lszjxjy.com/*
// @grant        none
// @namespace https://greasyfork.org/users/852302
// ==/UserScript==


window.onload = function () {
    if (true) {
    setInterval(() => {
    document.querySelector("video").playbackRate = 2;
    var mv = document.getElementById("video");
    mv.play();
    }, 0);
    }
}