Forked from benjaminoakes/google-meet-spacebar.user.js
Last active
April 15, 2020 17:11
-
-
Save ho0ber/3a0b64b0f3a0be47de68c65cb9937448 to your computer and use it in GitHub Desktop.
Google Meet/Hangouts Push-to-Talk
This file contains 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
// ==UserScript== | |
// @name Google Push to Talk | |
// @namespace http://tampermonkey.net/ | |
// @version 0.5 | |
// @description Hold down the spacebar to unmute the mic in Google Meet; tapping the spacebar toggles mute. | |
// @author Marc Reynolds (github.com/marcreynolds) | |
// @match https://meet.google.com/* | |
// @updateUrl https://gist.github.com/marcreynolds/6c629eaf8bfe87986ebe90ebea7daf85/raw/google-meet-spacebar.user.js | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
window._getGoogleMeetMuteEl = function() { | |
if(window._googleMeetMuteEl === undefined) { | |
window._googleMeetMuteEl = document.querySelector('div[role=\"button\"][data-tooltip*=\"microphone\"]'); | |
} | |
return window._googleMeetMuteEl; | |
}; | |
window._clickMute = function() { | |
window._getGoogleMeetMuteEl().click(); | |
}; | |
window._isMuted = function() { | |
return window._getGoogleMeetMuteEl().attributes["data-tooltip"].value.match(/turn on microphone/i) !== null; | |
}; | |
document.body.onmouseup = function(e) { | |
if(e.button == 4){ | |
e.stopPropagation(); | |
e.preventDefault(); | |
window._clickMute(); | |
window._meetupSpaceDown = false; | |
} | |
}; | |
document.body.onmousedown = function(e) { | |
if(e.button == 4 && window._meetupSpaceDown !== true){ | |
e.stopPropagation(); | |
e.preventDefault(); | |
if(window._isMuted()) { | |
window._clickMute(); | |
} | |
} | |
}; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment