speed

video speed rate 16

  1. // ==UserScript==
  2. // @name speed
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description video speed rate 16
  6. // @author 海贼一王路飞
  7. // @match https://lms.ouchn.cn/course/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=mozilla.org
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. var timer = setInterval(function(){
  16. var dom = document.querySelector('video');
  17. if(dom){
  18. dom.playbackRate = 16;
  19. console.log(timer, 'timer')
  20. clearInterval(timer)
  21. dom = null;
  22. }
  23. },1000)
  24. })();

QingJ © 2025

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