GoTo Meeting Muter

Press M to toggle

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name           GoTo Meeting Muter
// @description    Press M to toggle
// @author         Talha Habib
// @include        https://app.gotomeeting.com/*
// @version        1.0
// @email        talha@codeot.com
// @namespace    http://codeot.com
// ==/UserScript==

(function(){

document.onkeyup = function(e) {
  if (e.which == 77) {
        
	document.querySelector("audio").style.position = "absolute"; 
	document.querySelector("audio").style.top = "0"; 
	document.querySelector("audio").style.left = "0"; 
	document.querySelector("audio").style.zIndex = "999"; 
    if(document.querySelector("audio").muted){
        document.querySelector("audio").controls = "true";
        document.querySelector("audio").muted = false;
    }else{
              document.querySelector("audio").controls = "false";
	      document.querySelector("audio").muted = true;
   }		
  }
};

})();