Created
September 9, 2018 12:02
-
-
Save sambaldwin/3fc637b68aeca234b027b92f85425e33 to your computer and use it in GitHub Desktop.
Scrape GitHub issues (for use in browser console)
This file contains 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
var issues = document.querySelectorAll('.issues-listing .js-issue-row .link-gray-dark'); | |
var list = ''; | |
issues.forEach(function (issue) { | |
var issueText = issue.innerText.trim(); | |
list += '- ' + issueText + '\n'; | |
}); | |
list; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment