Skip to content

Instantly share code, notes, and snippets.

@innermond
Created February 6, 2020 16:45
Show Gist options
  • Select an option

  • Save innermond/08124bd00308d31da8a4e8ac73c0b337 to your computer and use it in GitHub Desktop.

Select an option

Save innermond/08124bd00308d31da8a4e8ac73c0b337 to your computer and use it in GitHub Desktop.
get link to image of a google search result
out=''
src=''
document.querySelectorAll('img[class^=rg_i]').forEach(x=>{
src=x.dataset.src??x.dataset.iurl??x.src??'none'
if (src === 'none') {
console.log(x)
return
}
out+=src+"\n"
})
console.log(out)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment