{"contents":"// Only apply on the actual homepage\nif (window.location.pathname === '/' || window.location.pathname === '') {\n // Monitor for dynamically loaded content and hide it\n const observer = new MutationObserver(() =\u003e {\n // Hide any feed containers that appear after initial load\n document.querySelectorAll('.bili-feed4-layout, .bili-header__channel, .header-channel, .palette-button-wrap, .feed-roll-btn').forEach(el =\u003e {\n if (el.style.display !== 'none') {\n el.style.display = 'none';\n }\n });\n });\n\n if (document.body) {\n observer.observe(document.body, { childList: true, subtree: true });\n } else {\n document.addEventListener('DOMContentLoaded', () =\u003e {\n observer.observe(document.body, { childList: true, subtree: true });\n });\n }\n}\n","is_binary":false,"path":"content.js","ref":""}