Greasy Fork is available in English.
Hide elements with class "vip-wrap" and "adblock-tips"
ของเมื่อวันที่
// ==UserScript==// @name 屏蔽B站浏览器插件提示横幅与大会员图标// @namespace http://tampermonkey.net/// @version 2.4// @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';function hideElements() {let hideList = ["vip-wrap", "adblock-tips"];for (let i = 0; i < hideList.length; i++) {let elements = document.getElementsByClassName(hideList[i]);for (let j = 0; j < elements.length; j++) {if (elements[j]) {elements[j].style.display = "none";}}}}if (document.readyState === 'loading') {document.addEventListener('DOMContentLoaded', hideElements);} else {hideElements();}})();