Last active
April 18, 2024 20:06
-
-
Save biast12/19c2b6d52e63570641cecc2ecdc0136d to your computer and use it in GitHub Desktop.
Disable Discord Profile Decorations and Effects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Disable Discord Profile Decorations and Effects | |
// @author Biast12 | |
// @description Disable Discord Profile Decorations and Effects By Biast12 | |
// @icon https://www.google.com/s2/favicons?domain=discord.com | |
// @version 1.0.4 | |
// @namespace https://twitter.com/Biast12 | |
// @homepageURL https://gist.github.com/biast12/19c2b6d52e63570641cecc2ecdc0136d | |
// @supportURL https://gist.github.com/biast12/19c2b6d52e63570641cecc2ecdc0136d | |
// @updateURL https://gist.github.com/biast12/19c2b6d52e63570641cecc2ecdc0136d/raw/DisableDiscordProfileDecorationsandEffects.user.js | |
// @downloadURL https://gist.github.com/biast12/19c2b6d52e63570641cecc2ecdc0136d/raw/DisableDiscordProfileDecorationsandEffects.user.js | |
// @contributionURL https://www.paypal.com/donate/?hosted_button_id=RWB2QFK7CKUM2 | |
// @license MIT | |
// @grant GM_addStyle | |
// @run-at document-start | |
// @include https://*discord.com/* | |
// ==/UserScript== | |
(function() { | |
const css = ` | |
[class*="avatarDecoration_"], | |
[class*="profileEffects_"] { | |
display: none !important; | |
} | |
`; | |
const styleNode = document.createElement("style"); | |
styleNode.textContent = css; | |
// Determine where to append the style node | |
const targetNode = document.head || document.documentElement; | |
targetNode.appendChild(styleNode); | |
})(); |
Thank you, removed the absolute shitshow going on in peoples' profiles.
(I won't respond because made this account to reply so I don't think I'll ever log in again)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm personally not gonna use this script so pls report if there's something not working in the future