Skip to content

Instantly share code, notes, and snippets.

@cupcakearmy
Created June 15, 2021 09:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cupcakearmy/8c314b891e6958f26374c0205bac85e9 to your computer and use it in GitHub Desktop.
Save cupcakearmy/8c314b891e6958f26374c0205bac85e9 to your computer and use it in GitHub Desktop.
Delete all auth users from firebase console
const interval = setInterval(() => {
if ($('.edit-account-button').length === 0) {
clearInterval(interval)
} else {
$('.edit-account-button').first().click()
$('button:contains("Delete account")').click()
$('.confirm-button').click()
}
}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment