YouTube No Scroll Down clicking blank space (Chapter Text Clickable Only)

Disable clicks on the ytp-chapter-container but keep text clickable, restore to original design and make clicking the player bar does nothing instead of scrolling down annoyingly

  1. // ==UserScript==
  2. // @name YouTube No Scroll Down clicking blank space (Chapter Text Clickable Only)
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.4.1
  5. // @description Disable clicks on the ytp-chapter-container but keep text clickable, restore to original design and make clicking the player bar does nothing instead of scrolling down annoyingly
  6. // @author Ed
  7. // @license BSD-3-Clause
  8. // @match *://*.youtube.com/*
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Inject custom CSS
  16. GM_addStyle(`
  17. :not(.ytp-exp-bottom-control-flexbox) .ytp-chapter-container {
  18. pointer-events: none !important; /* Disable clicks on the container */
  19. }
  20. :not(.ytp-exp-bottom-control-flexbox) .ytp-chapter-container .ytp-button,
  21. :not(.ytp-exp-bottom-control-flexbox) .ytp-chapter-container .ytp-chapter-title-content {
  22. pointer-events: auto !important; /* Enable clicks on buttons and text content */
  23. }
  24. `);
  25. })();