Skip to content

Instantly share code, notes, and snippets.

@Kr328
Last active December 22, 2024 09:31
Show Gist options
  • Save Kr328/15b25f9311e2e88ba3675592d033fbeb to your computer and use it in GitHub Desktop.
Save Kr328/15b25f9311e2e88ba3675592d033fbeb to your computer and use it in GitHub Desktop.
隐藏 Bilibili 的动态界面的右侧栏的 UserScript。
// ==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