Created
April 6, 2018 00:58
-
-
Save MarkZhangTW/c89bc05d05327aa154803ca2ab6dabee to your computer and use it in GitHub Desktop.
狄卡圖片下載器。Dcard Image Downloader.
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
document.querySelectorAll(".GalleryImage_image_3lGzO").forEach(tag => { | |
let link = document.createElement('a'); | |
link.href = tag.src; | |
link.download = tag.src; | |
let e = document.createEvent('MouseEvents'); | |
e.initEvent('click', true, true); | |
link.dispatchEvent(e); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment