// ==UserScript== // @name Patreon - Hide Comments // @namespace http://tampermonkey.net/ // @version 3.0.1 // @description Hides the comments on Patreon creator posts. Designed to alleviate stress. // @author XerBlade // @license GPL-3.0 // @grant GM_addStyle // @run-at document-start // @match *://*.patreon.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` div[data-tag="content-card-comment-thread-container"], div[data-tag="post-details"] ~ div { 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); } })();