自动关闭B站横幅提示

自动关闭B站网页顶端的横幅提示,提供更好的用户体验。

// ==UserScript==
// @name         自动关闭B站横幅提示
// @namespace    http://tampermonkey.net/
// @version      1
// @description  自动关闭B站网页顶端的横幅提示,提供更好的用户体验。
// @author       ChatGPT
// @match        https://www.bilibili.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 获取横幅元素
    let banner = document.querySelector('.adblock-tips');
    if (banner) {
        // 隐藏横幅元素
        banner.style.display = 'none';
    }
})();