Created
November 13, 2018 23:37
-
-
Save maple3142/5da1f67baef791c27188f0e6e2f56b11 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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