Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save biast12/19c2b6d52e63570641cecc2ecdc0136d to your computer and use it in GitHub Desktop.
Save biast12/19c2b6d52e63570641cecc2ecdc0136d to your computer and use it in GitHub Desktop.
Disable Discord Profile Decorations and Effects
// ==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);
})();
@biast12
Copy link
Author

biast12 commented Oct 13, 2023

Disable Discord Profile Decorations and Effects

  1. Install a browser extension for managing user scripts (skip if you already have one):

  2. Install The Script from this Github

If you have issues or just need help then DM me on Twitter

If you wanna Support me on Paypal or Join my Patreon!

@biast12
Copy link
Author

biast12 commented Oct 13, 2023

I'm personally not gonna use this script so pls report if there's something not working in the future

@jax5n
Copy link

jax5n commented Dec 24, 2023

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