Patreon - Hide Comments

Hides the comments on Patreon creator posts. Designed to alleviate stress.

  1. /* ==UserStyle==
  2. @name Patreon - Hide Comments
  3. @namespace http://tampermonkey.net/
  4. @version 3.0.2
  5. @description Hides the comments on Patreon creator posts. Designed to alleviate stress.
  6. @author XerBlade
  7. @license GPL-3.0-or-later
  8. ==/UserStyle== */
  9.  
  10. @-moz-document domain("patreon.com") {
  11.  
  12. div[data-tag="content-card-comment-thread-container"], div[data-tag="post-details"] ~ div {
  13. display: none;
  14. }
  15.  
  16. }