// ==UserScript== // @name 哔哩哔哩直播间马赛克去除 // @namespace miopuss // @version 0.0.1 // @description 去除哔哩哔哩直播间出现的部分马赛克遮挡 // @author yingshiyv // @match *://*.bilibili.com/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // @downloadURL none // ==/UserScript== let videoIdName = 'web-player-module-area-mask-panel'; let liveBox = 'player-section p-relative border-box none-select z-player-section'; // 等待网页完成加载 window.addEventListener('load', function() { // 加载完成后执行的代码 setTimeout(function(){ removeMask(); },2000); let player = document.getElementsByClassName(liveBox)[0]; player.onclick = function(){ setTimeout(function(){ removeMask(); },2000); } }, false); function removeMask(){ let pa = document.getElementById(videoIdName); if(pa!= null && pa!= ''){ let ele = pa.firstElementChild; if(ele!=null&&ele!=''){ ele.parentNode.removeChild(ele); console.log('脚本执行完成'); } } }