From ff5759f3c79df31446d7581a064b3b0432b6bec3 Mon Sep 17 00:00:00 2001 From: chee Date: Sun, 24 Sep 2017 18:59:52 +0100 Subject: [PATCH] hide likes and upvotes everywhere --- hide-likes.css | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 hide-likes.css diff --git a/hide-likes.css b/hide-likes.css new file mode 100644 index 0000000..2a7151c --- /dev/null +++ b/hide-likes.css @@ -0,0 +1,25 @@ +@-moz-document domain("reddit.com") { + .score { + display: none; + } +} + +@-moz-document domain("youtube.com") { + [aria-label*="likes"] { + display: none; + } +} + +@-moz-document domain("twitter.com") { + .ProfileTweet-actionCount, + .stats { + display: none; + } +} + +@-moz-document domain("facebook.com") { + .UFILikeSentence, + .UFICommentReactionsBling { + display: none; + } +}