B站直播增强

自动网页全屏,隐藏侧边弹幕栏

// ==UserScript==
// @name         B站直播增强
// @namespace    Violentmonkey Scripts
// @match        https://live.bilibili.com/*
// @grant        none
// @version      0.1.1
// @author       Suye
// @license      MIT
// @description 自动网页全屏,隐藏侧边弹幕栏
// ==/UserScript==

(function() {
    'use strict';

    // 指定要应用的样式
    var style = 'supportWebp player-full-win over-hidden hide-asida-area hide-aside-area';

    // 延时时间
    var delayTime = 2000;

    // 等待页面加载完成后再执行操作
    setTimeout(function() {
        // 获取body元素
        var bodyElement = document.querySelector('body');

        if (bodyElement) {
            // 应用样式
            bodyElement.className = style;
        }
    }, delayTime);
})();

QingJ © 2025

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