屏蔽B站首页视频推荐,只保留搜索框和导航栏的火狐插件 addons.mozilla.org/firefox/addon/bilibili-clean-homepage
at 50 lines 967 B view raw
1/* === Bilibili Clean Homepage === */ 2 3/* 隐藏频道分类导航 (动态、热门、番剧、国创、综艺...) */ 4.bili-header__channel, 5.header-channel { 6 display: none !important; 7} 8 9/* 隐藏整个视频推荐信息流区域 */ 10.bili-feed4-layout { 11 display: none !important; 12} 13 14/* 隐藏右下角浮动按钮 */ 15.palette-button-wrap { 16 display: none !important; 17} 18 19/* 隐藏换一换按钮 */ 20.feed-roll-btn { 21 display: none !important; 22} 23 24/* 隐藏顶部浏览器提示横条 */ 25.browser-tip { 26 display: none !important; 27} 28 29/* 导航栏透明叠在 banner 上面 */ 30.bili-header__bar { 31 position: relative !important; 32 z-index: 9999 !important; 33 background: transparent !important; 34} 35 36/* banner 上移,覆盖到导航栏后面 */ 37.bili-header__banner { 38 margin-top: -64px !important; 39 position: relative !important; 40 z-index: 1 !important; 41} 42 43/* 页面背景简洁化 */ 44body { 45 background: #f5f5f5 !important; 46} 47 48#app { 49 min-height: 100vh; 50}