哔哩哔哩直播间马赛克遮挡层去除

将哔哩哔哩直播间右上右下的马赛克遮挡层去除

// ==UserScript==
// @name         哔哩哔哩直播间马赛克遮挡层去除
// @description  将哔哩哔哩直播间右上右下的马赛克遮挡层去除
// @author       KscDvfmCnuJFmiCqDWyf
// @match        https://live.bilibili.com/*
// @grant        none
// @icon         https://www.bilibili.com/favicon.ico
// @version      0.1
// @license      MIT
// @namespace https://greasyfork.org/users/1312316
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(function() {
        var elements = document.getElementsByClassName("web-player-module-area-mask");
        while (elements.length > 0) {
            elements[0].parentNode.removeChild(elements[0]);
        }
    }, 5000);
})();