Hide YouTube Info Panel

Hides the blue info panel below (certain) YouTube videos

  1. // ==UserScript==
  2. // @name Hide YouTube Info Panel
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Hides the blue info panel below (certain) YouTube videos
  6. // @author Vesku
  7. // @match *://www.youtube.com/*
  8. // @grant GM_addStyle
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. GM_addStyle(`
  16. ytd-info-panel-container-renderer {
  17. display: none !important;
  18. }
  19. `);
  20. })();