Created
April 12, 2020 12:31
-
-
Save multimeric/9e308b806ffbd5fa2729e366ce8bb978 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// 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