Bilibili直播去除弹幕栏

remove right content of live in bilibili.

// ==UserScript==
// @name         Bilibili直播去除弹幕栏
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  remove right content of live in bilibili.
// @author       Aiemu
// @match        https://live.bilibili.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var del = document.getElementById("aside-area-vm").remove();
    var main = document.getElementsByClassName("player-ctnr left-container p-relative z-player-ctnr");
    main[0].style.cssText = "width: 86%; margin-left: 7%;";
})();

QingJ © 2025

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