B站顶部栏 - 旧版隐藏左动态栏

隐藏顶部栏左边动态栏

目前为 2024-04-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         B站顶部栏 - 旧版隐藏左动态栏
// @namespace    mscststs
// @version      0.2
// @license      ISC
// @description  隐藏顶部栏左边动态栏
// @author       mscststs
// @match        https://www.bilibili.com/video/*
// @icon         https://www.bilibili.com/favicon.ico
// @require      https://gf.qytechs.cn/scripts/38220-mscststs-tools/code/MSCSTSTS-TOOLS.js?version=713767
// @run-at       document-body
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var url = document.URL;
    //if(!(url.startsWith("https://space.bilibili.com/") || url.startsWith("https://www.bilibili.com/v/"))) {
    StartNavLink();
    async function StartNavLink(){
        await mscststs.wait(".nav-link .nav-link-ul .nav-link-item");
        var navLinks = document.querySelectorAll(".nav-link .nav-link-ul .nav-link-item");
        //alert(navLinks.length);
        if(navLinks.length == 9) {
            navLinks[7].style.display = "none";
        }
        /* else {
                if(navLinks.length == 8) {
                    navLinks[7].style.display = "none";
                }
            }*/
    }
    //}
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址