您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
自动移除bilibili直播间网页版左下角和右下角的马赛克
当前为
// ==UserScript== // @name 移除bilibili直播间的马赛克 // @name:en Remove the mosaic from the Bilibili live // @namespace http://tampermonkey.net/ // @version 2025-07-05 // @description 自动移除bilibili直播间网页版左下角和右下角的马赛克 // @description:en Automatically remove the mosaic in the bottom left and right corners of the Bilibili live webpage version // @author TheChuan1503 // @match https://live.bilibili.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; function action(){ var doms = document.getElementsByClassName('web-player-module-area-mask') for (let i = 0; i < doms.length; i++) { var dom = doms[i] dom.style = {} } } setInterval(() => { action() }, 200) })();