Created
June 28, 2018 20:31
-
-
Save kaustavha/ea1159a5b227b32fffc3c71bd84d0360 to your computer and use it in GitHub Desktop.
Github browser helper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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