b站直播马赛克删除

Remove the specified div element from the webpage

// ==UserScript==
// @name         b站直播马赛克删除
// @namespace    http://your.namespace/here
// @version      0.1
// @description  Remove the specified div element from the webpage
// @author       Your Name
// @match        https://live.bilibili.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    window.addEventListener('load', function() {
        var element = document.getElementById('web-player-module-area-mask-panel');
        if (element) {
            element.remove();
        }
    });
})();