Skip to content

Instantly share code, notes, and snippets.

@wlinds
Created February 27, 2026 14:11
Show Gist options
  • Select an option

  • Save wlinds/650abed15ce18a6ad0660844bcb7140c to your computer and use it in GitHub Desktop.

Select an option

Save wlinds/650abed15ce18a6ad0660844bcb7140c to your computer and use it in GitHub Desktop.
Download all files in a Discord channel
(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