yt css

a

// ==UserScript==
// @name        yt css
// @description a
// @match       https://*.youtube.com/*
// @run-at      document-start
// @version 0.0.1.20250724083208
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function () {
    const css = `
    ytd-mini-guide-renderer, grid-shelf-view-model, ytd-shelf-renderer, ytm-paid-content-overlay-renderer, .ytSearchboxComponentSuggestionsContainer, div#related {
    display: none !important;
    }
  `;
    const style = document.createElement('style');
    style.textContent = css;
    document.head.appendChild(style);
})();