// ==UserScript== // @name [Bilibili] 去他妈的评论区 // @namespace ckylin-style-deletefuckingcomments // @version 1.0.0 // @description 移除网页版哔哩哔哩的评论区 // @author CKylinMC // @license WTFPL // @grant GM_addStyle // @run-at document-start // @match *://*.bilibili.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` #comment, .comment-m, .bb-comment, .forw-area { 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); } })();