Skip to content

Instantly share code, notes, and snippets.

@intuited
Created April 24, 2019 18:21
Show Gist options
  • Save intuited/0200dcbba5ae86a7017da3cf1e921047 to your computer and use it in GitHub Desktop.
Save intuited/0200dcbba5ae86a7017da3cf1e921047 to your computer and use it in GitHub Desktop.
Bookmarklet to scrape card names from EDHREC. For nefarious purposes only.
javascript:(function(){
els = document.getElementsByClassName("nwname");
a = Array.from(els);
strings = a.map(x => x.innerText.split(' // ')[0]);
console.log(strings.join('\n'));
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment