Skip to content

Instantly share code, notes, and snippets.

@adamay000
Created May 28, 2021 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamay000/60ec5dd80177bcf1d7c1724fa7123655 to your computer and use it in GitHub Desktop.
Save adamay000/60ec5dd80177bcf1d7c1724fa7123655 to your computer and use it in GitHub Desktop.
chrome://downloads/の一番上のやつ自動で再開させる
// 90.0.4430.212
setInterval(() => {
const button = document.querySelector("body > downloads-manager").shadowRoot.querySelector("#frb0").shadowRoot.querySelector("#pauseOrResume");
if (/再開/.test(button?.textContent)) {
console.log("再開");
button.click();
}
}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment