GoTo Meeting Muter

Press M to toggle

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name           GoTo Meeting Muter
// @description    Press M to toggle
// @author         Talha Habib
// @include        https://app.gotomeeting.com/*
// @version        1.0
// @email        [email protected]
// @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;
   }		
  }
};

})();