Greasy Fork is available in English.
Hide elements with class "vip-wrap" and "adblock-tips"
ของเมื่อวันที่
// ==UserScript==// @name 屏蔽B站浏览器插件提示横幅与大会员图标// @namespace http://tampermonkey.net/// @version 1.3// @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 hide() {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";}}function main() {'use strict';setTimeout(hide(), 100);console.log("=====hide activate=====")}main()