Skip to content

Instantly share code, notes, and snippets.

@Hashbrown777
Created April 23, 2021 01:50
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 Hashbrown777/421f390659bbe53b15cbb3052c4d7988 to your computer and use it in GitHub Desktop.
Save Hashbrown777/421f390659bbe53b15cbb3052c4d7988 to your computer and use it in GitHub Desktop.
let bob = () => {
let count = 0;
for (let e of Array.from(document.querySelectorAll('.NotificationItem__clearIconButton___3pU15'))) {
e.click();
++count;
}
if (count)
setTimeout(bob, 5000);
};
bob();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment