Skip to content

Instantly share code, notes, and snippets.

@ChristopherA
Created June 11, 2018 06:23
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 ChristopherA/45f7e1a74445dde6573e4a8b012aab5f to your computer and use it in GitHub Desktop.
Save ChristopherA/45f7e1a74445dde6573e4a8b012aab5f to your computer and use it in GitHub Desktop.
grab facebook friend URLs
var friends = document.querySelectorAll('._698 > div > a');
urls = [];
for (var i = 0, len = friends.length; i < len; i++) {
urls.push(friends[i].href);
}
JSON.stringify(urls);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment