// ==UserScript== // @name Patreon - Hide Comments // @namespace http://tampermonkey.net/ // @version 1.0.0 // @description Hides the comments on Patreon creator posts. Designed to alleviate stress. // @author XerBlade // @grant GM_addStyle // @run-at document-start // @match *://*.patreon.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` .UQSDB { 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); } })();