Created
February 27, 2020 08:54
-
-
Save rberenguel/62cec5107fa91eb15852dd7465d86ec5 to your computer and use it in GitHub Desktop.
Push to talk bookmarklet for Mac OS in Safari
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: (() => {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