Last active
December 22, 2024 09:31
-
-
Save Kr328/15b25f9311e2e88ba3675592d033fbeb to your computer and use it in GitHub Desktop.
隐藏 Bilibili 的动态界面的右侧栏的 UserScript。
This file contains hidden or 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 No Right | |
// @namespace http://github.com/Kr328/no-right | |
// @version 1.0.0 | |
// @description Hide bilibili right | |
// @author Kr328 | |
// @match *://t.bilibili.com/* | |
// @icon https://www.bilibili.com/favicon.ico | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const STYLE = ` | |
aside.right { | |
display: none !important; | |
} | |
`; | |
GM_addStyle(STYLE); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment