Greasy Fork is available in English.

yt css

a

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

(function () {
    const css = `
ytm-paid-content-overlay-renderer {
display: none !important;
}

.ytSearchboxComponentSuggestionsContainer {
            display: none !important;
        }

div#related {
    display: none !important;
}
  `;
    const style = document.createElement('style');
    style.textContent = css;
    document.head.appendChild(style);
})();