Super Meet Mute

Fast & global muting/unmuting for Google Meet.

Super Meet Mute란 무엇입니까?

Super Meet Mute은(는) AdrianPal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fast & global muting/unmuting for Google Meet."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Super Meet Mute 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Fastly toggle microphone in Google Meet!

1 - Define a global shortcut to mute/unmute the microphone ;
2 - Do whatever you want to do, use whatever app you want to use ;
3 - Toggle the microphone! That's it! 

Wherever you are on your computer, no matter what window is focused, you can toggle the microphone for your Google Meets!
You can also toggle the microphone by clicking on the extension icon.

***First of all, you need to set a shortcut!***

Visit the Chrome Extension page (by right clicking on the extension icon, and then "Manage Extensions"), then the hamburger menu in the top left corner, and "Keyboard Shortcuts".
You can define a "Chrome" shortcut (i.e. when the Chrome window is focused), or a Global shortcut (i.e. when any application window is focused).

--------------------------

This extension is open source, originally developed by mattsimonis, and updated/fixed by AdrianPal! Feel free to contribute or update the extension on my GitHub repo:

https://github.com/AdrianPal/super-meet-mute

Do not hesitate to contact me if you want!                    

확장 프로그램 기본 정보

이름 Super Meet Mute Super Meet Mute
ID gaahlcaciakkdkggcjhdhlhgfdblabec
공식 URL https://chromewebstore.google.com/detail/super-meet-mute/gaahlcaciakkdkggcjhdhlhgfdblabec
설명 Fast & global muting/unmuting for Google Meet.
파일 크기 16.71 KB
설치 횟수 3,072
현재 버전 1.1.0
최근 업데이트 2021-06-21
출시 날짜 2020-05-20
평점 3.33/5 총 6 개의 평점
개발자 AdrianPal
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/AdrianPal/super-meet-mute
도움말 페이지 URL https://github.com/AdrianPal/super-meet-mute/issues/new
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Super Meet Mute",
    "short_name": "SuperMeetMute",
    "author": "Adrian Palumbo, from Matt Simonis",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Fast & global muting\/unmuting for Google Meet.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "js\/meetmute.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Disconnected"
    },
    "permissions": [
        "https:\/\/meet.google.com\/*"
    ],
    "commands": {
        "toggle_mute": {
            "description": "Toggle Mute",
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "global": true
        },
        "mute": {
            "description": "Mute",
            "suggested_key": {
                "default": "Ctrl+Shift+M"
            },
            "global": true
        },
        "unmute": {
            "description": "Unmute",
            "suggested_key": {
                "default": "Ctrl+Shift+B"
            },
            "global": true
        }
    }
}