YouTube Hide Buttons

Hides some YouTube Buttons

  1. // ==UserScript==
  2. // @name YouTube Hide Buttons
  3. // @namespace http://tampermonkey.net/
  4. // @version 2025-02-15
  5. // @description Hides some YouTube Buttons
  6. // @author Dirk Bourgeois
  7. // @license MIT
  8. // @match https://www.youtube.com/*
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. GM_addStyle('button[aria-label="Download"] { display: none !important; }');
  13. GM_addStyle('button[aria-label="Share"] { display: none !important; }');
  14. GM_addStyle('button[aria-label="Thanks"] { display: none !important; }');
  15. GM_addStyle('button[aria-label="Clip"] { display: none !important; }');
  16.  
  17. (function() {
  18. 'use strict';
  19. })();