Google Meet Controls

Control your microphone manners for Meet

Cos'è Google Meet Controls?

Google Meet Controls è un'estensione di Chrome sviluppata da Ivan Tichý, e la sua funzione principale è "Control your microphone manners for Meet".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Google Meet Controls

Scarica i file di estensione Google Meet Controls in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This is a simple extension that allows to control Google Meet with global keyboard shortcuts. Please have a look at the video and set up keyboard shortcuts as it cannot be set automatically during installation.

It needs Chrome restart after installation.                    

Informazioni di Base sull'Estensione

Nome Google Meet Controls Google Meet Controls
ID ncebfbcadlnhbfmfglhijjljfhimndil
URL Ufficiale https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil
Descrizione Control your microphone manners for Meet
Dimensione del File 22.74 KB
Conteggio Installazioni 665
Versione Corrente 2.0
Ultimo Aggiornamento 2020-02-06
Data di Pubblicazione 2020-02-06
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore Ivan Tichý
Email [email protected]
Tipo di Pagamento free
Lingue Supportate cs
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Controls",
    "short_name": "Meet Controls",
    "description": "Control your microphone manners for Meet",
    "version": "2.0",
    "icons": {
        "128": "notmuted.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "meet_controller.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "keyboard_listener.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "notifications"
    ],
    "commands": {
        "toggle": {
            "description": "Toggle mute",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+X",
                "mac": "MacCtrl+X"
            }
        },
        "mute": {
            "description": "Force mute",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "MacCtrl+M"
            }
        },
        "unmute": {
            "description": "Force unmute",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+U",
                "mac": "MacCtrl+U"
            }
        }
    }
}