Skip to content

Instantly share code, notes, and snippets.

@marco-hoyer
Created September 21, 2022 17:41
Show Gist options
  • Save marco-hoyer/9793396f5415007ea163ea3a60e2e4f4 to your computer and use it in GitHub Desktop.
Save marco-hoyer/9793396f5415007ea163ea3a60e2e4f4 to your computer and use it in GitHub Desktop.
Paste this into the browser js console when you have your postbox open and get all documents downloaded for the current page
downloadLinks = $('a[id$="downloadLink"]')
for (const [_, value] of Object.entries(downloadLinks)) {
window.open(value.href, "_blank")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment