// ==UserScript== // @name Block the community 墙外弱智吧联盟 on the Twitter/X // @namespace x.com // @version 1.0.0 // @description 屏蔽 Twitter/X 上的 墙外弱智吧联盟 社群 // @author LukeNewNew // @license MIT // @grant GM_addStyle // @run-at document-start // @match *://*/* // @downloadURL none // ==/UserScript== (function() { let css = `.css-175oi2r[data-testid="cellInnerDiv"]:has([href="/i/communities/1723286568683913463"]) { display: none }`; 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); } })();