Skip to content

Instantly share code, notes, and snippets.

@Shilo
Created September 1, 2020 09:06
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/bf547162d5da5b19571a111832ac6447 to your computer and use it in GitHub Desktop.
Save Shilo/bf547162d5da5b19571a111832ac6447 to your computer and use it in GitHub Desktop.
Hide Discord typing status with one line Javascript CSS injection.
(function() { var css = `div[class^="typing"]{visibility:hidden !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