您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
关闭b站直播间右侧的22娘礼物特效和左侧的新年活动爆竹特效
// ==UserScript== // @name b站直播间边缘特效关闭 // @description 关闭b站直播间右侧的22娘礼物特效和左侧的新年活动爆竹特效 // @author Hivol // @namespace http://www.hasqo.cn // @version 1.1.0 // @include *://live.bilibili.com/* // @license MIT // @supportURL http://www.hasqo.cn // @grant None // ==/UserScript== (function () { 'use strict'; document.getElementById("my-dear-haruna-vm").style.display = "none"; document.getElementById("spring-2018-section").style.display = "none"; })();