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
/** | |
* 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" |