快速代看+VX:zengyi136
// ==UserScript==
// @name 四川凉山专业技术2倍速自动放,高倍没用
// @description 快速代看+VX:zengyi136
// @license zengyi136
// @version 0.113
// @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);
}
}