Created
February 27, 2026 14:11
-
-
Save wlinds/650abed15ce18a6ad0660844bcb7140c to your computer and use it in GitHub Desktop.
Download all files in a Discord channel
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
| (async () => { | |
| const allDownloadAs = document.querySelectorAll('a[aria-label="Download"][role="button"]'); | |
| for (const a of allDownloadAs) { | |
| const cloneA = a.cloneNode(true); | |
| document.body.appendChild(cloneA); | |
| cloneA.click(); | |
| document.body.removeChild(cloneA); | |
| await new Promise(r => setTimeout(r, 800)); | |
| } | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment