Skip to content

Instantly share code, notes, and snippets.

@lucahammer
Created March 30, 2018 15:35
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 lucahammer/03805822afaf6efb68024ed90cafa8a8 to your computer and use it in GitHub Desktop.
Save lucahammer/03805822afaf6efb68024ed90cafa8a8 to your computer and use it in GitHub Desktop.
add all Facebook contacts to a list
// Create new List
// Choose Manage List -> Edit List
// Scroll to bottom of friends.
// Execute code
var friends = document.querySelectorAll('.friendListItem');
for (var i = 0; i < friends.length; i++) {
friends[i].click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment