Skip to content

Instantly share code, notes, and snippets.

@idleberg
Last active September 9, 2023 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save idleberg/44b87470c4692330e5ce9978cefc134b to your computer and use it in GitHub Desktop.
Save idleberg/44b87470c4692330e5ce9978cefc134b to your computer and use it in GitHub Desktop.
Hide blocked users on Discord

Hide blocked users on Discord

When you block a user on Discord, you still get an option to show the user's messages. This can defeat the purpose of blocking, it can be bad for your health.

The following CSS snippet will hide a blocked user's messages for good. It can be used with Stylish or any other extension that allows override a website's style.

[class^="groupStart"]:has([class^="blockedSystemMessage"]) {
  display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment