Google Meet Push to Talk

Enable push to talk functionality in Google Meet

O que é Google Meet Push to Talk?

Google Meet Push to Talk é uma extensão do Chrome desenvolvida por JCW Services, e sua principal característica é "Enable push to talk functionality in Google Meet".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Google Meet Push to Talk

Baixe arquivos de extensão Google Meet Push to Talk no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This extension is for Google Meet

This will enable simple push to talk functionality to make it easier to only have your microphone on when talk to prevent feedback especially in large meetings

When the spacebar is pressed down it will unmute the microphone and when released it will mute the microphone

Code - https://github.com/jcw-os/google-meet-ptt                    

Informações Básicas da Extensão

Nome Google Meet Push to Talk Google Meet Push to Talk
ID lmbeadglfeffhemaffjdgfbgmiggafkg
URL Oficial https://chromewebstore.google.com/detail/google-meet-push-to-talk/lmbeadglfeffhemaffjdgfbgmiggafkg
Descrição Enable push to talk functionality in Google Meet
Tamanho do Arquivo 95.2 KB
Contagem de Instalações 24,051
Versão Atual 1.0.6
Última Atualização 2021-05-28
Data de Publicação 2020-05-28
Classificação 3.36/5 Total de 28 Avaliações
Desenvolvedor JCW Services
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Push to Talk",
    "description": "Enable push to talk functionality in Google Meet",
    "version": "1.0.6",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png",
        "512": "icons\/icon-512.png",
        "1024": "icons\/icon-1024.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "css": [
                "css\/ptt.css"
            ]
        }
    ]
}