Skip to content

Instantly share code, notes, and snippets.

@Kr328
Created June 4, 2024 06:36
Show Gist options
  • Save Kr328/055c5b538c204e0069b9bd76b306c549 to your computer and use it in GitHub Desktop.
Save Kr328/055c5b538c204e0069b9bd76b306c549 to your computer and use it in GitHub Desktop.
Bilibili Live Mask Remover
// ==UserScript==
// @name Bilibili Mask Remover
// @namespace http://github.com/Kr328/bililive-mask-remover
// @version 1.0
// @author Kr328
// @description Remove mask of bilibli live.
// @license GPLv3
// @icon https://www.bilibili.com/favicon.ico
// @match *://live.bilibili.com/*
// @grant GM_addStyle
// ==/UserScript==
(function () {
'use strict';
const style = `
#web-player-module-area-mask-panel,
.web-player-module-area-mask {
opacity: 0 !important;
}
`;
GM_addStyle(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment