Skip to content

Instantly share code, notes, and snippets.

@ThomasOrlita
Last active March 31, 2020 11:51
Show Gist options
  • Save ThomasOrlita/f6be2564e439b867e57e2254d40196e2 to your computer and use it in GitHub Desktop.
Save ThomasOrlita/f6be2564e439b867e57e2254d40196e2 to your computer and use it in GitHub Desktop.
Gmail auto check mail from POP3 every 5 min
setInterval(() => {
location.href = 'https://mail.google.com/mail/u/0/#settings/accounts';
const elements = [...document.querySelectorAll('span')].filter(el => el.textContent.includes('Check mail now'));
// const elements = document.querySelectorAll('.rP.sA');
elements.forEach(el => el.click());
}, 5 * 60 * 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment