返回首頁 

Greasy Fork is available in English.

屏蔽B站浏览器插件提示横幅与大会员图标

Hide elements with class "vip-wrap" and "adblock-tips"

ของเมื่อวันที่ 17-06-2023 ดู เวอร์ชันล่าสุด

// ==UserScript==// @name         屏蔽B站浏览器插件提示横幅与大会员图标// @namespace    http://tampermonkey.net/// @version      1.2// @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()