Skip to content

Instantly share code, notes, and snippets.

@Shilo
Created August 27, 2020 10:47
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 Shilo/e317e1fb2e3b929e2ccb94db48941e44 to your computer and use it in GitHub Desktop.
Save Shilo/e317e1fb2e3b929e2ccb94db48941e44 to your computer and use it in GitHub Desktop.
Hide Discord blocked messages with one line Javascript CSS injection.
(function() { var css = `div[class^="blockedSystemMessage"]{display: none !important; padding: 0 !important;}`; var cssDiv = document.createElement('div'); cssDiv.innerHTML = '&shy;<style>' + css + '</style>'; document.body.appendChild(cssDiv.childNodes[1]); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment