Skip to content

Instantly share code, notes, and snippets.

@XenHat
Last active May 21, 2025 01:36
Show Gist options
  • Save XenHat/a415b14a38e9ccd81f4a7de8c2fec159 to your computer and use it in GitHub Desktop.
Save XenHat/a415b14a38e9ccd81f4a7de8c2fec159 to your computer and use it in GitHub Desktop.
Hide annoying discord buttons
/* Hide Nitro gift button */
button[aria-label="Send a gift"] {
display: none;
width: 0;
}
/* Remove App Launcher from chat channels */
button[aria-label="Apps"] {
display: none;
width: 0;
}
/* Hide gif picker button, language dependent*/
button[aria-label="Open GIF picker"] {
display: none;
width: 0;
}
/* Hide sticker picker button, language dependent*/
button[aria-label="Open sticker picker"] {
display: none;
width: 0;
}
/* Hide annoying sticker popup window that appears when you type */
.channelTextArea-1FufC0 > .container-1ZA19X {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment