Google Meet Global Shortcuts

Added global shortcuts to google meet, to mute, unmute & toggle the microphone

Google Meet Global Shortcuts란 무엇입니까?

Google Meet Global Shortcuts은(는) Marko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Added global shortcuts to google meet, to mute, unmute & toggle the microphone"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Google Meet Global Shortcuts 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds global shortcut keys to turn the microphone on/off in Google Meets.

This extension:
- Allows you to turn your microphone on/off from without having the Meeting Tab or Chrome open.
- Always see if you are muted or not.

* If the app icon is gray, no meeting was detected.
* If the app icon is green, you are not muted in a meeting.
* If the app icon is red, you are muted in a meeting.

To change the shortcut, click "Open shortcut settings" on the application pop-up window.
Here you can set all key combinations and whether the key combination should work globally or only when Chrome is focused.                    

확장 프로그램 기본 정보

이름 Google Meet Global Shortcuts Google Meet Global Shortcuts
ID fjbngkpiplemfiflfmbhbjicmmfdcgni
공식 URL https://chromewebstore.google.com/detail/google-meet-global-shortc/fjbngkpiplemfiflfmbhbjicmmfdcgni
설명 Added global shortcuts to google meet, to mute, unmute & toggle the microphone
파일 크기 34.36 KB
설치 횟수 817
현재 버전 1.0.3
최근 업데이트 2020-04-30
출시 날짜 2020-04-30
평점 3.60/5 총 10 개의 평점
개발자 Marko
결제 유형 free
지원되는 언어 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "1.0.3",
    "description": "__MSG_extDescription__",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "toggleMicrophone": {
            "description": "__MSG_toggleMicrophone__",
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "global": true
        },
        "muteMicrophone": {
            "description": "__MSG_muteMicrophone__",
            "global": true
        },
        "unmuteMicrophone": {
            "description": "__MSG_unmuteMicrophone__",
            "global": true
        }
    },
    "browser_action": {
        "default_title": "__MSG_extName__",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/default\/16.png",
            "32": "icons\/default\/32.png"
        }
    },
    "icons": {
        "16": "icons\/default\/16.png",
        "32": "icons\/default\/32.png"
    },
    "default_locale": "en",
    "permissions": [
        "https:\/\/meet.google.com\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "run_at": "document_idle"
        }
    ]
}