Bilibili Live Player Mask Remover(去除B站直播间网页马赛克)

Automatically removes the web player mask on live.bilibili.com(自动去除B站直播间马赛克)

// ==UserScript==
// @name         Bilibili Live Player Mask Remover(去除B站直播间网页马赛克)
// @namespace    http://tampermonkey.net/
// @version      0.1.3
// @description  Automatically removes the web player mask on live.bilibili.com(自动去除B站直播间马赛克)
// @author       Caleyuexing
// @match        https://live.bilibili.com/*
// @license MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Function to remove the target element
    const removeMask = () => {
        const targetElement = document.querySelector('.web-player-module-area-mask');
        if (targetElement) {
            targetElement.remove();
            console.log('Removed web player mask.');
        }
    };

    // Call the function every second
    setInterval(removeMask, 1000);
})();