您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
基于页面元素监听实现的Bilibili(哔哩哔哩/B站)直播间马赛克清除
// ==UserScript== // @name 更好的Bilibili直播马赛克清除 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 基于页面元素监听实现的Bilibili(哔哩哔哩/B站)直播间马赛克清除 // @author Hell // @match https://live.bilibili.com/* // @icon https://www.bilibili.com/favicon.ico // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; const mask_panel = "web-player-module-area-mask-panel" const observer = new MutationObserver((mutationsList) => { for (const mutation of mutationsList) { for (const node of mutation.addedNodes) { if (node.nodeName === 'DIV' && node.id === mask_panel) { node.remove(); break; } } } }); observer.observe(document.querySelector(".live-player-mounter"), { childList: true }); })();