Bilibili直播去除弹幕栏

remove right content of live in bilibili.

  1. // ==UserScript==
  2. // @name Bilibili直播去除弹幕栏
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description remove right content of live in bilibili.
  6. // @author Aiemu
  7. // @match https://live.bilibili.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var del = document.getElementById("aside-area-vm").remove();
  14. var main = document.getElementsByClassName("player-ctnr left-container p-relative z-player-ctnr");
  15. main[0].style.cssText = "width: 86%; margin-left: 7%;";
  16. })();

QingJ © 2025

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