a
当前为
// ==UserScript==
// @name yt css
// @description a
// @match https://*.youtube.com/*
// @run-at document-start
// @version 0.0.1.20251031112525
// @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, div#chip-bar, .ytp-info-panel-preview, .ytp-pause-overlay-container, .ytp-fullscreen-grid {
display: none !important;
}
ytd-video-renderer:has(> div > ytd-thumbnail > a[href^="/shorts/"]) {
display: none !important;
}
`;
const style = document.createElement('style');
style.textContent = css;
document.head.appendChild(style);
})();