// ==UserScript== // @name bilibili 屏蔽b站系统通知 // @namespace giligili // @version 1.0.0 // @description 叮!你获得了新的限时任务啦!呕——呕—— // @author yui // @grant GM_addStyle // @run-at document-start // @match *://*.www.bilibili.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` /*220619屏蔽b站系统通知*/ .red-num--message,.message-inner-list> a:nth-child(4)>.message-inner-list__item--num{display: none!important;} .nav-item-message>.t>.num{display: none!important;} a[href="//message.bilibili.com/#/system"]>span{display: none!important;} .side-bar>.list>li:nth-child(4)>a>.notify-number{display: none!important;} `; if (typeof GM_addStyle !== "undefined") { GM_addStyle(css); } else { const styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } })();