Hides the comments on Patreon creator posts. Designed to alleviate stress.
/* ==UserStyle==
@name Patreon - Hide Comments
@namespace http://tampermonkey.net/
@version 3.0.2
@description Hides the comments on Patreon creator posts. Designed to alleviate stress.
@author XerBlade
@license GPL-3.0-or-later
==/UserStyle== */
@-moz-document domain("patreon.com") {
div[data-tag="content-card-comment-thread-container"], div[data-tag="post-details"] ~ div {
display: none;
}
}