Skip to content

Instantly share code, notes, and snippets.

@mchelem
Last active April 20, 2022 18:17
Show Gist options
  • Save mchelem/82040e73b5ff60d940115da4bc20d32d to your computer and use it in GitHub Desktop.
Save mchelem/82040e73b5ff60d940115da4bc20d32d to your computer and use it in GitHub Desktop.
Toggle audio for a google meets window
javascript: (function() {
let audios = document.getElementsByTagName('audio');
for (let audio of audios) {
audio.muted = !audio.muted;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment