Last active
April 20, 2022 18:17
-
-
Save mchelem/82040e73b5ff60d940115da4bc20d32d to your computer and use it in GitHub Desktop.
Toggle audio for a google meets window
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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