Hide YouTube Search Suggestions

Hide YouTube search suggestions container

// ==UserScript==
// @name         Hide YouTube Search Suggestions
// @description  Hide YouTube search suggestions container
// @match        *://www.youtube.com/*
// @version 0.0.1.20250617185518
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function() {
    const style = document.createElement('style');
    style.textContent = `
        .ytSearchboxComponentSuggestionsContainer {
            display: none !important;
        }
    `;
    document.head.appendChild(style);
})();