Patreon - Hide Comments

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

目前為 2022-03-11 提交的版本,檢視 最新版本

/* ==UserStyle==
@name         Patreon - Hide Comments
@namespace    http://tampermonkey.net/
@version      2.1.0
@description  Hides the comments on Patreon creator posts. Designed to alleviate stress.
@author       XerBlade
@homepage     https://greasyfork.org/en/users/761164-xerblade
==/UserStyle== */

@-moz-document domain("patreon.com") {

    div[data-tag='post-details'] + div {
        display: none;
    }

}