您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
给一个不用 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);