删除烦人的插件拦截提醒

Remove specified element once

// ==UserScript==
// @name         删除烦人的插件拦截提醒
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove specified element once
// @author       Nchyn
// @match        *://*.bilibili.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 删除指定的元素
    const elementToRemove = document.querySelector('div.adblock-tips');
    if (elementToRemove) {
        elementToRemove.remove();
    }
})();