Skip to content

Instantly share code, notes, and snippets.

@jeffhandley
Created April 25, 2017 05:13
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 jeffhandley/3b6580495c3f0ecf521c29b5d0f6093f to your computer and use it in GitHub Desktop.
Save jeffhandley/3b6580495c3f0ecf521c29b5d0f6093f to your computer and use it in GitHub Desktop.
Open profile pictures for all members of a slack channel
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