Skip to content

Instantly share code, notes, and snippets.

@rberenguel
Created February 27, 2020 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rberenguel/62cec5107fa91eb15852dd7465d86ec5 to your computer and use it in GitHub Desktop.
Save rberenguel/62cec5107fa91eb15852dd7465d86ec5 to your computer and use it in GitHub Desktop.
Push to talk bookmarklet for Mac OS in Safari
javascript: (() => {const toggles = tip => ({ key }) => key === '' && document.querySelectorAll('[data-tooltip]').forEach(el => el.dataset.tooltip === tip && el.click());document.body.onkeyup = toggles('Turn off microphone (⌘ + D)');document.body.onkeydown = toggles('Turn on microphone (⌘ + D)');})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment