Increase animevsub playback rate

try to take over the world!!!

当前为 2024-11-02 提交的版本,查看 最新版本

// ==UserScript==
// @name         Increase animevsub playback rate
// @namespace    http://tampermonkey.net/
// @version      1.011
// @description  try to take over the world!!!
// @author       luudanmatcuoi
// @license      MIT
// @include      https://animevietsub.*/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

window.addEventListener('load', function() {
    var video = document.getElementById('media-player');
    var video_speed = video.getElementsByTagName('video')[0];
    video_speed.playbackRate=10;
    console.log(video_speed.playbackRate);
}, false);

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址