Greasy Fork is available in English.

屌人用的bilibili直播全屏隐藏边栏

给一个不用 Stylish/Stylus 的屌朋友写的

// ==UserScript==
// @name        屌人用的bilibili直播全屏隐藏边栏
// @namespace   Violentmonkey Scripts
// @match       https://live.bilibili.com/*
// @grant       none
// @version     1.0.0
// @author      AndyF
// @description 给一个不用 Stylish/Stylus 的屌朋友写的
// @license MIT
// ==/UserScript==

var link = document.createElement("link");
link.rel = "stylesheet";
link.type = "text/css";
link.href = "https://userstyles.world/api/style/9980.user.css";
document.getElementsByTagName("head")[0].appendChild(link);