Skip to content

Instantly share code, notes, and snippets.

@iest
Created February 9, 2015 12:10
Show Gist options
  • Save iest/bb4feabc3e0568b70ae2 to your computer and use it in GitHub Desktop.
Save iest/bb4feabc3e0568b70ae2 to your computer and use it in GitHub Desktop.
Copy all values from iamthefold.com with Chrome
// 1. Load iamthefold.com on Google Chrome
// 2. Open devtools (cmd-option-J on a mac)
// 3. Paste the code below into the console
copy(Array.prototype.slice.call(document.querySelectorAll('li')).map(function(elm){return elm.textContent}))
// 4. Now paste into your favourite text editor!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment