Skip to content

Instantly share code, notes, and snippets.

View Chokage's full-sized avatar

ChokagePrincess Chokage

View GitHub Profile
@Chokage
Chokage / annas-archive-download.js
Created July 9, 2025 06:13 — forked from achadha235/annas-archive-download.js
Anna's archive auto download
/**
* Wait on a slow download page for Anna's archive and auto * click the Download button once it is ready
*/
function checkAndClickDownloadButton() {
const intervalMs = 1000;
let clicked = false;
let intervalId;
function check() {
const btns = Array.from(document.getElementsByTagName("a")).filter(
(ele) => ele.innerText === "Download now"