屏蔽B站首页视频推荐,只保留搜索框和导航栏的火狐插件 addons.mozilla.org/firefox/addon/bilibili-clean-homepage
at 20 lines 778 B view raw
1// Only apply on the actual homepage 2if (window.location.pathname === '/' || window.location.pathname === '') { 3 // Monitor for dynamically loaded content and hide it 4 const observer = new MutationObserver(() => { 5 // Hide any feed containers that appear after initial load 6 document.querySelectorAll('.bili-feed4-layout, .bili-header__channel, .header-channel, .palette-button-wrap, .feed-roll-btn').forEach(el => { 7 if (el.style.display !== 'none') { 8 el.style.display = 'none'; 9 } 10 }); 11 }); 12 13 if (document.body) { 14 observer.observe(document.body, { childList: true, subtree: true }); 15 } else { 16 document.addEventListener('DOMContentLoaded', () => { 17 observer.observe(document.body, { childList: true, subtree: true }); 18 }); 19 } 20}