Skip to content

Instantly share code, notes, and snippets.

@iloveitaly
Created July 23, 2022 21:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iloveitaly/8da41a553ab5e596853d5d0fcad20e87 to your computer and use it in GitHub Desktop.
Save iloveitaly/8da41a553ab5e596853d5d0fcad20e87 to your computer and use it in GitHub Desktop.
Download all PDFs for contributions in fidelity charitable by copy & pasting this into your browser
$x("//a[contains(@href, \"fc-services/api/v1/document/download\")]").forEach(el => { el.download = el.text.replace("(PDF)", "").replace("/", "-") + ".pdf"; var e = document.createEvent('MouseEvents'); e.initEvent('click' ,true ,true); el.dispatchEvent(e);})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment