Created
September 21, 2022 17:41
-
-
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
This file contains 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
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