Skip to content

Instantly share code, notes, and snippets.

@surajmandalcell
Last active December 10, 2024 23:48
Show Gist options
  • Save surajmandalcell/9218878e8c8b91a826230172045527d2 to your computer and use it in GitHub Desktop.
Save surajmandalcell/9218878e8c8b91a826230172045527d2 to your computer and use it in GitHub Desktop.
Prevent Annoying Youtube Scroll When Clicking Play Bar
// ==UserScript==
// @name Prevent Youtube Scroll When Clicking Play Bar
// @namespace http://tampermonkey.net/
// @version 2024-12-10
// @description try to take over the world!
// @author You
// @match https://*.youtube.com/watch*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector('.ytp-chrome-bottom').addEventListener('click', (e) => {
e.preventDefault();
e.stopPropagation();
}, true);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment