Skip to content

Instantly share code, notes, and snippets.

@biast12
Last active September 21, 2024 12:14
Show Gist options
  • Save biast12/17c6941206797dae126540dd4bc93805 to your computer and use it in GitHub Desktop.
Save biast12/17c6941206797dae126540dd4bc93805 to your computer and use it in GitHub Desktop.
Disable Reply Ping Automatically
// ==UserScript==
// @name Disable Reply Ping Automatically
// @author Doggybootsy, Biast12
// @description Disable reply ping automatically in your discord!
// @icon https://www.google.com/s2/favicons?domain=discord.com
// @version 1.0.1
// @namespace https://twitter.com/Biast12
// @homepageURL https://gist.github.com/biast12/17c6941206797dae126540dd4bc93805
// @supportURL https://gist.github.com/biast12/17c6941206797dae126540dd4bc93805
// @updateURL https://gist.github.com/biast12/17c6941206797dae126540dd4bc93805/raw/AutoDisableReplyPing.user.js
// @downloadURL https://gist.github.com/biast12/17c6941206797dae126540dd4bc93805/raw/AutoDisableReplyPing.user.js
// @contributionURL https://www.paypal.com/donate/?hosted_button_id=RWB2QFK7CKUM2
// @license MIT
// @grant none
// @include https://*discord.com/*
// ==/UserScript==
(function() {
window.webpackChunkdiscord_app.push([
[ Symbol() ],
{},
r => {
if (!r.b) return;
const FluxDispatcherModule = Object.values(r.c).find(m=>Array.isArray(m.exports?.default?._interceptors));
FluxDispatcherModule?.exports?.default?.addInterceptor((event) => {
if (event.type === "CREATE_PENDING_REPLY") {
event.shouldMention = false;
};
});
}
]);
})();
@biast12
Copy link
Author

biast12 commented Oct 27, 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!

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