Youtube URL Cleaner

Removes some extra parameters from YouTube video links

  1. // ==UserScript==
  2. // @run-at document-start
  3. // @id Youtube URL Cleaner
  4. // @name Youtube URL Cleaner
  5. // @namespace
  6. // @description Removes some extra parameters from YouTube video links
  7. // @include http://www.youtube.com/watch?*
  8. // @include https://www.youtube.com/watch?*
  9. // @version 1.2
  10. // ==/UserScript==
  11. var newurl = "https://www.youtube.com/watch?"+document.URL.match(/v\=[^&]*/g);
  12. if (newurl != document.URL) location.replace(newurl);

QingJ © 2025

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