// ==UserScript== // @name 哔哩哔哩去除直播间马赛克 // @description 额,测试? // @author idk // @match https://live.bilibili.com/* // @grant none // @icon https://static.hdslb.com/mobile/img/512.png // @version 0.1 // @license MIT // @namespace https://greasyfork.org/users/1259036 // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(function(){ document.getElementsByClassName("web-player-module-area-mask")[0].remove() },2000) })();