Greasy Fork is available in English.
快速代看+VX:zengyi136
当前为
// ==UserScript==
// @name 四川凉山专业技术2倍速自动放,高倍没用
// @description 快速代看+VX:zengyi136
// @license zengyi136
// @version 0.11
// @description 倍速播放_自动播放视频
// @author
// @match *://www.lszjxjy.com/*
// @grant none
// @namespace http://greasyfork.icu/users/852302
// ==/UserScript==
window.onload = function () {
if (true) {
setInterval(() => {
document.querySelector("video").playbackRate = 2;
var mv = document.getElementById("video");
mv.play();
}, 0);
}
}