Remove channel and next video overlays on YouTube

Removes the large "play next" overlays and channel link that cover the end of some videos on YouTube

  1. // ==UserScript==
  2. // @name Remove channel and next video overlays on YouTube
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Removes the large "play next" overlays and channel link that cover the end of some videos on YouTube
  6. // @author https://gf.qytechs.cn/en/users/728793-keyboard-shortcuts
  7. // @match https://www.youtube.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=128&domain=youtube.com
  9. // @grant GM_addStyle
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. GM_addStyle('.ytp-ce-element.ytp-ce-website.ytp-ce-element-show,' +
  15. '.ytp-ce-element.ytp-ce-channel.ytp-ce-element-show,' +
  16. '.ytp-ce-element.ytp-ce-merchandise.ytp-ce-element-show,' +
  17. '.ytp-ce-element.ytp-ce-website.ytp-ce-element-show,' +
  18. '.ytp-ce-element.ytp-ce-channel.ytp-ce-element-show,' +
  19. '.ytp-ce-element.ytp-ce-merchandise.ytp-ce-element-show,' +
  20. '.ytp-ce-element.ytp-ce-website.ytp-ce-element-show.ytp-ce-force-expand,' +
  21. '.ytp-ce-element.ytp-ce-channel.ytp-ce-element-show.ytp-ce-force-expand,' +
  22. '.ytp-ce-element.ytp-ce-element-show,' +
  23. '.ytp-ce-element.ytp-ce-channel.ytp-ce-channel-this' +
  24. '.ytp-ce-element.ytp-ce-channel.ytp-ce-channel-this.ytp-ce-top-left-quad' +
  25. '.ytp-ce-element.ytp-ce-merchandise.ytp-ce-element-show.ytp-ce-force-expand' +
  26. ' { display: none; visibility: hidden; width: 0px; height: 0px; opacity:0; }');
  27. })();

QingJ © 2025

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