Skip to content

Instantly share code, notes, and snippets.

@sambaldwin
Created September 9, 2018 12:02
Show Gist options
  • Save sambaldwin/3fc637b68aeca234b027b92f85425e33 to your computer and use it in GitHub Desktop.
Save sambaldwin/3fc637b68aeca234b027b92f85425e33 to your computer and use it in GitHub Desktop.
Scrape GitHub issues (for use in browser console)
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