Skip to content

Instantly share code, notes, and snippets.

@tyrelsouza
Created September 3, 2019 14:25
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 tyrelsouza/b7ed1a0cd78fc17e48addb48a84daec1 to your computer and use it in GitHub Desktop.
Save tyrelsouza/b7ed1a0cd78fc17e48addb48a84daec1 to your computer and use it in GitHub Desktop.
Completely ignore blocked people on discord with Rambox
(()=>{ let css=`
div[class^="messageGroupBlocked"] {display:none;}
`;
var ss = document.createElement("style");
ss.type = "text/css"; ss.innerHTML = css;
document.getElementsByTagName("head")[0].appendChild(ss); })();
/*
https://github.com/ramboxapp/community-edition/wiki/Inject-JavaScript-Code
https://greasyfork.org/en/scripts/31001-discord-custom-css-no-blocked-messages/code
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment