Skip to content

Instantly share code, notes, and snippets.

@rothgar
Last active August 13, 2020 20:50
Show Gist options
  • Save rothgar/7cb0f048353f099f2103784d3bd01c93 to your computer and use it in GitHub Desktop.
Save rothgar/7cb0f048353f099f2103784d3bd01c93 to your computer and use it in GitHub Desktop.
Chime Keyboard shortcuts
// ==UserScript==
// @name Chime Keyboard Shortcuts
// @namespace http://app.chime.aws
// @version 0.1
// @description Simple keyboard shortcuts for chime
// @author [email protected]
// @match https://app.chime.aws/meetings/*
// @grant none
// @run-at document-end
// ==/UserScript==
// 'm' = mute voice
// 'v' = mute face
(function() {
'use strict';
document.addEventListener('keydown', function(e) {
if( e.target.className === "notranslate public-DraftEditor-content" ) return;
console.log(e);
if (e.key == "m" && !e.shiftKey && !e.ctrlKey && !e.altKey && !e.metaKey) {
var unmuteButton = document.querySelector(".MeetingControlButton--micMuted");
var muteButton = document.querySelector(".MeetingControlButton--micActive");
if (unmuteButton !== null) {
unmuteButton.click();
} else {
muteButton.click();
}
} else if (e.key == "v" && !e.shiftKey && !e.ctrlKey && !e.altKey && !e.metaKey) {
var faceMuteButton = document.querySelector(".MeetingControlButton--localVideoMuted");
var faceUnmuteButton = document.querySelector(".MeetingControlButton--localVideoActive");
if (faceUnmuteButton !== null) {
faceUnmuteButton.click();
} else {
faceMuteButton.click();
}
}
}, false);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment