Created
June 4, 2024 06:36
-
-
Save Kr328/055c5b538c204e0069b9bd76b306c549 to your computer and use it in GitHub Desktop.
Bilibili Live Mask Remover
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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