Skip to content

Instantly share code, notes, and snippets.

@exegeteio
Last active February 4, 2022 20:57
Show Gist options
  • Save exegeteio/bf0cfd3c63626584131fd7a91ea01891 to your computer and use it in GitHub Desktop.
Save exegeteio/bf0cfd3c63626584131fd7a91ea01891 to your computer and use it in GitHub Desktop.
Extract Emotes from twitch chat.
// type the part of the emote you want into your chat in Twitch.
// For example: :hype
// Then paste this into your browser's developer console.
// Will yield all of the hype emotes you've gotten on Twitch.
// Beware pasting them that there is a 500 character limit per chat.
a = []; document.querySelectorAll('.chat-input-tray__open .jrwvz').forEach((i, idx, array) => {a.push(i.title)}); console.log(a.join(' '));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment