diff --git a/src/content-script/site-adapters/index.mjs b/src/content-script/site-adapters/index.mjs index fe3165c..5a14b30 100644 --- a/src/content-script/site-adapters/index.mjs +++ b/src/content-script/site-adapters/index.mjs @@ -120,9 +120,13 @@ export const config = { }, youtube: { inputQuery: youtube.inputQuery, - sidebarContainerQuery: ['#secondary:not([style*="display: none"])'], + sidebarContainerQuery: [ + '#secondary:not([style*="display: none"]):not(.ytd-two-column-browse-results-renderer)', + ], appendContainerQuery: [], - resultsContainerQuery: ['#secondary:not([style*="display: none"])'], + resultsContainerQuery: [ + '#secondary:not([style*="display: none"]):not(.ytd-two-column-browse-results-renderer)', + ], action: { init: youtube.init, },