AnimeVost Player More Speed Control

Изменяет шаг ползунка скорости воспроизведения на 0.05 на сайтах animevost

  1. // ==UserScript==
  2. // @name AnimeVost Player More Speed Control
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Изменяет шаг ползунка скорости воспроизведения на 0.05 на сайтах animevost
  6. // @author kiko
  7. // @match *://animevost.org/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. function modifySpeedStep() {
  16. let speedInput = document.getElementById('speed');
  17. if (speedInput) {
  18. speedInput.step = '0.05';
  19. }
  20. }
  21. window.addEventListener('load', modifySpeedStep);
  22. })();

QingJ © 2025

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