Skip to content

Instantly share code, notes, and snippets.

@dvingerh
Created February 4, 2020 21:27
Show Gist options
  • Save dvingerh/9bd403c5865e7c945e7e840a88eadef6 to your computer and use it in GitHub Desktop.
Save dvingerh/9bd403c5865e7c945e7e840a88eadef6 to your computer and use it in GitHub Desktop.
Discord Remove Most Used Emojis
// ==UserScript==
// @name Discord Remove Most Used Emojis
// @version 1
// @description Discord Remove Most Used Emojis
// @namespace Violentmonkey Scripts
// @grant GM_addStyle
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// @require https://gist.github.com/notcammy/a8b37bc2f49a76c30220d80fdd661429/raw/3148bcb32b9f0ce30cc62ee684eb60962051bcfa/jquery.initialize.js
// @match *://discordapp.com/*
// @match *://cdn.discordapp.com/*
// @run-at document-idle
//
// ==/UserScript==
$('div[aria-label^="Add Reaction: "]').initialize(function() {
$(this).hide();
});
$('div[class*="emojiSeparator-"]').initialize(function() {
$(this).hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment