Skip to content

Instantly share code, notes, and snippets.

@MarkZhangTW
Created April 6, 2018 00:58
Show Gist options
  • Save MarkZhangTW/c89bc05d05327aa154803ca2ab6dabee to your computer and use it in GitHub Desktop.
Save MarkZhangTW/c89bc05d05327aa154803ca2ab6dabee to your computer and use it in GitHub Desktop.
狄卡圖片下載器。Dcard Image Downloader.
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