Skip to content

Instantly share code, notes, and snippets.

@IOExceptional
Last active August 29, 2015 14:25
Show Gist options
  • Save IOExceptional/9d249741527b6495ba0f to your computer and use it in GitHub Desktop.
Save IOExceptional/9d249741527b6495ba0f to your computer and use it in GitHub Desktop.
Steam Friends List Link Grabber
var profiles = document.getElementsByClassName('friendBlockLinkOverlay');
var linkText = "";
for( var i = 0; i < profiles.length; i++) { linkText += "\r\n" + profiles[i].href; }
console.dir(linkText);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment