Created
June 9, 2015 09:06
-
-
Save KoenRijpstra/257bbee5fa2f38fe3680 to your computer and use it in GitHub Desktop.
Google Results to CSV
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 list = document.querySelectorAll('h3.r a'); | |
var output = ""; | |
[].forEach.call(list, function(item) { | |
output += '"' + item.innerHTML + '","' + item.href + '"\n'; | |
}); | |
console.log(output); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment