Hangouts toggle

This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.

O que é Hangouts toggle?

Hangouts toggle é uma extensão do Chrome desenvolvida por Wouter0100, e sua principal característica é "This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.".

Baixar o arquivo CRX da Extensão Hangouts toggle

Baixe arquivos de extensão Hangouts toggle 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 allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.

You're able to select the shortcut from the Extensions page in Chrome, at the right bottom of the page.                    

Informações Básicas da Extensão

Nome Hangouts toggle Hangouts toggle
ID nidndogcoebjkeffddmaijgegbenafaa
URL Oficial https://chrome.google.com/webstore/detail/nidndogcoebjkeffddmaijgegbenafaa
Descrição This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
Tamanho do Arquivo 30.15 KB
Contagem de Instalações 74
Versão Atual 2.0
Última Atualização 2016-01-31
Data de Publicação 2016-01-31
Classificação 4.50/5 Total de 2 Avaliações
Desenvolvedor Wouter0100
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/wouter0100/Hangouts-Toggle
URL da Página de Ajuda https://github.com/wouter0100/Hangouts-Toggle
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hangouts toggle",
    "version": "2.0",
    "description": "This extension allows you to (un)mute your microphone and enable\/disable your webcam with a single shortcut from everywhere.",
    "icons": {
        "128": "assets\/img\/icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "global": true,
            "description": "Toggle webcam and microphone in Hangouts"
        },
        "toggleMicrophone": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "global": true,
            "description": "Toggle webcam in Hangouts"
        },
        "toggleWebcam": {
            "suggested_key": {
                "default": "Ctrl+Shift+3"
            },
            "global": true,
            "description": "Toggle microphone in Hangouts"
        }
    },
    "content_scripts": [
        {
            "js": [
                "assets\/js\/update.js"
            ],
            "matches": [
                "https:\/\/plus.google.com\/hangouts\/*",
                "https:\/\/talkgadget.google.com\/hangouts\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "assets\/js\/background.js"
        ],
        "persistent": false
    }
}