Simplify Embedded YouTube Player

Automatically collapse More videos popup in YouTube.

  1. // ==UserScript==
  2. // @name Simplify Embedded YouTube Player
  3. // @description Automatically collapse More videos popup in YouTube.
  4. // @namespace https://gf.qytechs.cn/users/1458847
  5. // @license MIT
  6. // @match https://www.youtube-nocookie.com/*
  7. // @match https://www.youtube.com/embed/*
  8. // @version 2.0
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. "use strict";
  13.  
  14. var style = document.createElement("style");
  15. style.textContent = `
  16. .ytp-pause-overlay-container{
  17. display: none !important;
  18. }
  19.  
  20. .ytp-watermark{
  21. display: none !important;
  22. }
  23.  
  24. .ytp-paid-content-overlay{
  25. display: none !important;
  26. }
  27.  
  28. .caption-window {
  29. display: unset !important;
  30. }
  31. `;
  32.  
  33. document.querySelector("head").appendChild(style);
  34. })();

QingJ © 2025

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