Skip to content

Instantly share code, notes, and snippets.

@ozero
Created June 22, 2016 10:24
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 ozero/c987c5f8b385c2c72759132c836b5acc to your computer and use it in GitHub Desktop.
Save ozero/c987c5f8b385c2c72759132c836b5acc to your computer and use it in GitHub Desktop.
/*
1. open member list and scroll to end of end.
2. exec this snippet in js console.
*/
var anc = document.getElementsByClassName("dUF9n");
var result = [];
for (var i=0;i<anc.length;i++){
result.push(anc[i].getAttribute("href"));
}
console.log(JSON.stringify(result));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment