Skip to content

Instantly share code, notes, and snippets.

@skeptrunedev
Created January 14, 2024 18:18
Show Gist options
  • Save skeptrunedev/424cbbda2943e9f3dd6ba37a0e85c7bb to your computer and use it in GitHub Desktop.
Save skeptrunedev/424cbbda2943e9f3dd6ba37a0e85c7bb to your computer and use it in GitHub Desktop.
skiff scroll for selecting all emails to export
// paste this into the console when viewing your skiff inbox
const elementToScroll = document.querySelector("#mailListElement > div.sc-irmRQO.iHuLQh > div > div:nth-child(1) > div");
setInterval(() => {
console.log("paginating");
elementToScroll.scrollTop = elementToScroll.scrollHeight;
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment