您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
送礼需要点开礼物面板,防止一不小心送出去
// ==UserScript== // @name B站直播屏蔽外显送礼按钮 // @namespace http://tampermonkey.net/ // @version 1.0.0 // @description 送礼需要点开礼物面板,防止一不小心送出去 // @author TGSAN // @match *://live.bilibili.com/* // @grant none // ==/UserScript== (function() { 'use strict'; let applyFeatureStyle = document.createElement("style"); let featureStyle = ` .gift-control-panel .right-part .gift-presets .gift-panel.base-panel { transform: scale(0); } `; function updateStyle() { if (document.head == applyFeatureStyle.parentNode) { document.head.removeChild(applyFeatureStyle) } applyFeatureStyle.innerHTML = featureStyle; document.head.appendChild(applyFeatureStyle); } updateStyle(); })();