Push To Talk For Google Meet

Hold in Google Meet to talk instead of fumbling around trying to mute and unmute

O que é Push To Talk For Google Meet?

Push To Talk For Google Meet é uma extensão do Chrome desenvolvida por https://www.w3technic.com, e sua principal característica é "Hold in Google Meet to talk instead of fumbling around trying to mute and unmute".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Push To Talk For Google Meet

Baixe arquivos de extensão Push To Talk For Google Meet 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

                        Hold [spacebar] in Google Meet to talk instead of fumbling around trying to mute and unmute
No more unexpected sounds.
Simple add-on that allows you to mute and unmute yourself with a key press instead of fumbling around trying to click the icon.

DOCUMENTATION
Click "Add to Chrome"  button then go to Google Meet page
Mute/unmute: Quick push [spacebar]
Hold [spacebar] (default) to talk, release to go back to mute
Configure your own hotkey if you don't like [spacebar] in settings
Mute will be on by default, but you can disable that feature in settings
This extensions only works on Google Meet

PURPOSE
This extension was made to help all the teachers and students figuring out distance learning together.

PRIVACY POLICY
We don't store your data, period.
Thanks!                    

Informações Básicas da Extensão

Nome Push To Talk For Google Meet Push To Talk For Google Meet
ID kkijalhkcfebhahlagllhlpocfehbfok
URL Oficial https://chromewebstore.google.com/detail/push-to-talk-for-google-m/kkijalhkcfebhahlagllhlpocfehbfok
Descrição Hold in Google Meet to talk instead of fumbling around trying to mute and unmute
Tamanho do Arquivo 35.12 KB
Contagem de Instalações 986
Versão Atual 1.1.1
Última Atualização 2020-07-25
Data de Publicação 2020-07-21
Classificação 4.29/5 Total de 7 Avaliações
Desenvolvedor https://www.w3technic.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.w3technic.com/
URL da Página de Ajuda https://www.w3technic.com/contact.html
URL da Página de Política de Privacidade https://w3technic.com/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.1.1",
    "manifest_version": 2,
    "name": "Push To Talk For Google Meet",
    "description": "Hold  in Google Meet to talk instead of fumbling around trying to mute and unmute",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "ptt.bundle.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.bundle.js",
            "update-conf.js",
            "update.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "options.html"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "homepage_url": "https:\/\/www.w3technic.com\/p\/push-to-talk-for-google-meet.html"
}