YouTuBe 暂停视频,关闭更多视频

暂停视频,关闭更多视频

  1. // ==UserScript==
  2. // @name YouTuBe Remove More Videos Recommadation
  3. // @name:zh-CN YouTuBe 暂停视频,关闭更多视频
  4. // @name:zh-TW YouTuBe 暂停视频,关闭更多视频
  5. // @namespace https://gf.qytechs.cn/en/users/9694-croned
  6. // @version 1.3.1
  7. // @description Removes the pause overlay from embedded YouTube videos
  8. // @description:zh-CN 暂停视频,关闭更多视频
  9. // @description:zh-TW 暂停视频,关闭更多视频
  10. // @author rend,linpan
  11. // @include https://www.youtube*.com/embed/*
  12. // @match https://www.youtube.com/*
  13. // @grant none
  14. // @license none
  15. // ==/UserScript==
  16.  
  17. (function() {
  18. 'use strict';
  19.  
  20. setTimeout(function() {
  21. document.getElementsByClassName("ytp-pause-overlay ytp-scroll-min")[0]?.remove();
  22. document.getElementsByClassName("ytp-pause-overlay")[0]?.remove();
  23. document.getElementsByClassName("ytp-pause-overlay-container")[0]?.remove();
  24. }, 1000);
  25. })();

QingJ © 2025

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