YouTube - Disable Fullscreen Scroll

Disable scroll for details feature and remove the label from the bottom in fullscreen

  1. // ==UserScript==
  2. // @name YouTube - Disable Fullscreen Scroll
  3. // @namespace q1k
  4. // @version 0.1.1
  5. // @description Disable scroll for details feature and remove the label from the bottom in fullscreen
  6. // @author q1k
  7. // @match https://*.youtube.com/*
  8. // @match http://*.youtube.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. document.addEventListener('wheel', (e) => {
  13. if (document.body.classList.contains('no-scroll')) {
  14. e.preventDefault();
  15. }
  16. }, { passive: false });
  17.  
  18. var css = document.createElement("style");
  19. css.innerText=".ytp-fullerscreen-edu-button { display: none !important; }";
  20. document.head.appendChild(css);

QingJ © 2025

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