Skip to content

Instantly share code, notes, and snippets.

@vimaexd
Last active June 3, 2024 12:43
Show Gist options
  • Save vimaexd/35b4ff962f8e92b74decc3352f636870 to your computer and use it in GitHub Desktop.
Save vimaexd/35b4ff962f8e92b74decc3352f636870 to your computer and use it in GitHub Desktop.
Remove Discord gift button and Nitro menus
/* Remove decorations shop */
ul[aria-label="Direct Messages"] li:has(a[href="/shop"]) {
display: none;
}
/* Remove Nitro tab */
ul[aria-label="Direct Messages"] li:has(a[href="/store"]) {
display: none;
}
/* Remove gift button */
button[aria-label="Send a gift"] {
display: none;
}
@dudebloke
Copy link

incredible

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment