Created
February 4, 2020 21:27
-
-
Save dvingerh/9bd403c5865e7c945e7e840a88eadef6 to your computer and use it in GitHub Desktop.
Discord Remove Most Used Emojis
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 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