Skip to content

Instantly share code, notes, and snippets.

@kaustavha
Created June 28, 2018 20:31
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 kaustavha/ea1159a5b227b32fffc3c71bd84d0360 to your computer and use it in GitHub Desktop.
Save kaustavha/ea1159a5b227b32fffc3c71bd84d0360 to your computer and use it in GitHub Desktop.
Github browser helper
// Get a list of all the names of all the projects on a github org page
s = [];
document.querySelectorAll('.col-12').forEach(e => {x = e.firstChild.nextSibling.firstChild.nextSibling.innerText; s.push(x.replace(' Private', ''))});
// Break the list into lines to easily copy paste into a spreadsheet
s.forEach(e => console.log(e));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment