Skip to content

Instantly share code, notes, and snippets.

@maple3142
Created November 13, 2018 23:37
Show Gist options
  • Select an option

  • Save maple3142/5da1f67baef791c27188f0e6e2f56b11 to your computer and use it in GitHub Desktop.

Select an option

Save maple3142/5da1f67baef791c27188f0e6e2f56b11 to your computer and use it in GitHub Desktop.
d=document
dl=s=>{
a=d.createElement('a')
a.href=s
a.download=s.split('/').pop()
d.body.appendChild(a)
a.click()
a.remove()
}
d.querySelectorAll('img').forEach(e=>dl(e.src))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment