YouTube Speed Changer

Use a url parameter to change the video speed

  1. // ==UserScript==
  2. // @name YouTube Speed Changer
  3. // @namespace https://fxzfun.com/
  4. // @version 0.2
  5. // @description Use a url parameter to change the video speed
  6. // @author FXZFun
  7. // @match https://www.youtube.com/live/*
  8. // @match https://www.youtube.com/watch*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
  10. // @grant none
  11. // @license GNU GPL v3
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. var params = new URLSearchParams(location.search);
  18. var speed = params.get("s", null);
  19. if (speed) {
  20. document.querySelector("video").playbackRate = speed;
  21. }
  22. })();

QingJ © 2025

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