// Login to your team through the browser. // Go to: https://.slack.com/customize/emoji // Run this on the browser's dev tools javascript console var emojis = $('.emoji_row'); var numEmojis = emojis.size(); var pre = document.createElement('pre'); pre.append('[\n'); emojis.each(function (index) { var url = $(this).find('td:nth-child(1) span').attr('data-original'); var extension = url.substring(url.lastIndexOf('.')); var name = $(this).find('td:nth-child(2)').html().replace(/:|\s/g, ''); pre.append(JSON.stringify({name: name, extension: extension, url: url})); if (index == (numEmojis-1)) { pre.append('\n]'); } else { pre.append(',\n'); } }); $('body').empty().append(pre); // Now, in the body of the browser you'll see the json representation of all the custom emoji data for that team. // copy and paste the json into a file and use with 02_download.sh