Greasy Fork is available in English.
Hide elements with class "vip-wrap" and "adblock-tips"
ของเมื่อวันที่
// ==UserScript==// @name 屏蔽B站浏览器插件提示横幅与大会员图标// @namespace http://tampermonkey.net/// @version 1.1// @description Hide elements with class "vip-wrap" and "adblock-tips"// @author ChatGPT// @match http://*.bilibili.com/*// @match https://*.bilibili.com/*// @license MIT// @grant none// ==/UserScript==(function() {'use strict';let hideList = ["vip-wrap", "adblock-tips"]for(let i = 0; i < hideList.length; i++) {let elements = document.getElementsByClassName(hideList[i]);elements[0].style.display = "none";}})();