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文件

下載Google Meet Global Shortcuts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}