Created
January 1, 2019 16:16
-
-
Save unarist/593c754722803a73c0986db7cc97128d to your computer and use it in GitHub Desktop.
Mastodon - Hide private posts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==UserStyle== | |
@name Mastodon - Hide private posts | |
@namespace github.com/unarist | |
@version 1.0.0 | |
@description Hide private posts from timeline | |
@author unarist | |
==/UserStyle== */ | |
@-moz-document regexp("^https://[^/]+/web/.*") { | |
/* :not(.muted) filters notification */ | |
.status-private:not(.muted) { display: none } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment