Skip to content

Instantly share code, notes, and snippets.

@ajsharma
Created December 14, 2021 23:58
Show Gist options
  • Save ajsharma/eef9bb08aed03abd74682853f6c596a4 to your computer and use it in GitHub Desktop.
Save ajsharma/eef9bb08aed03abd74682853f6c596a4 to your computer and use it in GitHub Desktop.
Mark all Google Fi Voicemails as Read
// Go to https://messages.google.com/web/voicemail
// Scroll through your messages to load all the unread messages
// Run this in your browser
const inputs = document.querySelectorAll('.unread');
for (let i = 1; i < inputs.length; i++) { inputs[i].click() }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment