Skip to content

Instantly share code, notes, and snippets.

View randy-stad's full-sized avatar

Randy Murrish randy-stad

View GitHub Profile
@randy-stad
randy-stad / google-meet-toggle.script
Last active October 22, 2020 13:00
AppleScript that toggles mute in a Google Meet running in Google Chrome.
on run {input, parameters}
tell application "Google Chrome"
activate
repeat with theWindow in windows
set i to 0
repeat with theTab in tabs of theWindow
set i to i + 1
if URL of theTab starts with "https://meet.google.com" then
set index of theWindow to 1