🏠 Home 

Bilibili 隐藏主页的Header

隱藏B站主页的Header,只保留主体內容


Install this script?
// ==UserScript==
// @name         Bilibili 隐藏主页的Header
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  隱藏B站主页的Header,只保留主体內容
// @author       You
// @match        *://www.bilibili.com/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant        none
// @license      MIT
// ==/UserScript==
(function() {
'use strict';
const addonStyleSheet = `
div.bili-header__bar.slide-down, div.header-channel {
display: none;
}
`
const styleSheetEle = document.createElement("style");
styleSheetEle.innerHTML = addonStyleSheet;
document.head.appendChild(styleSheetEle);
})();