Изменяет шаг ползунка скорости воспроизведения на 0.05 на сайтах animevost
// ==UserScript==
// @name AnimeVost Player More Speed Control
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Изменяет шаг ползунка скорости воспроизведения на 0.05 на сайтах animevost
// @author kiko
// @match *://animevost.org/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function modifySpeedStep() {
let speedInput = document.getElementById('speed');
if (speedInput) {
speedInput.step = '0.05';
}
}
window.addEventListener('load', modifySpeedStep);
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址