Greasy Fork

Greasy Fork is available in English.

Bilibili Live Remove Outer Blur Background

Remove the blurred outer first-frame background in Bilibili live rooms and restore a pure black background.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Bilibili Live Remove Outer Blur Background
// @name:zh-CN   B站直播间移除外侧模糊背景
// @namespace    http://greasyfork.icu/users/1596314
// @version      1.0.0
// @description  Remove the blurred outer first-frame background in Bilibili live rooms and restore a pure black background.
// @description:zh-CN  移除 B 站直播间播放器外侧的首帧模糊背景,恢复纯黑背景。
// @author       yorujiqaq
// @license      MIT
// @match        https://live.bilibili.com/*
// @grant        GM_addStyle
// @run-at       document-start
// ==/UserScript==

(function () {
  'use strict';

  GM_addStyle(`
    #fullscreen-container {
      background: #000 !important;
    }

    #fullscreen-container::before,
    #fullscreen-container::after {
      display: none !important;
      content: none !important;
      background: none !important;
      background-image: none !important;
      filter: none !important;
      backdrop-filter: none !important;
    }
  `);
})();