Created
April 25, 2017 05:13
-
-
Save jeffhandley/3b6580495c3f0ecf521c29b5d0f6093f to your computer and use it in GitHub Desktop.
Open profile pictures for all members of a slack channel
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
document.querySelectorAll("#channel_page_all_members a.lazy.member_preview_link.member_image.thumb_20") | |
.forEach(function(member) { | |
window.open(member.dataset.original.replace(/^url\(\'(.*)-48\'\)$/, "$1-128")); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment