Skip to content

Instantly share code, notes, and snippets.

@multimeric
Created April 12, 2020 12:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save multimeric/9e308b806ffbd5fa2729e366ce8bb978 to your computer and use it in GitHub Desktop.
Save multimeric/9e308b806ffbd5fa2729e366ce8bb978 to your computer and use it in GitHub Desktop.
// Open up Sever Settings → Emoji in your browser
// Open the dev console using F12
// Using the inspection tool, look for an element with the class .emojiRow-XXXX
// Edit the string ".emojiRow-zIc7ZX" below into whatever class you got from the previous script
// Paste the below script into the dev tools console
let str = "";
for (let emoj of $$('.emojiRow-zIc7ZX')){
str += emoj.children[1].innerText;
str += '\t'
str += emoj.children[0].style['background-image'].replace('url("https://cdn.discordapp.com/emojis/', '').replace('.png?v=1")', '');
str += '\n'
}
console.log(str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment