Created
August 4, 2016 10:24
-
-
Save bencevans/74ef2335647c47aaf4750500378412dd to your computer and use it in GitHub Desktop.
List Projects .js
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
// https://github.com/bencevans?tab=repositories | |
var repos = document.getElementsByClassName('repo-list-name') | |
var arr = Array.prototype.slice.call( repos ) | |
var names = arr.map((r) => { return 'bencevans/' + r.innerText }) | |
names.join('&') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment