Hangouts toggle

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

¿Qué es Hangouts toggle?

Hangouts toggle es una extensión de Chrome desarrollada por Wouter0100, y su función principal es "This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.".

Descargar Archivo CRX de la Extensión Hangouts toggle

Descarga archivos de extensión Hangouts toggle en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Hangouts toggle Hangouts toggle
ID nidndogcoebjkeffddmaijgegbenafaa
URL Oficial https://chrome.google.com/webstore/detail/nidndogcoebjkeffddmaijgegbenafaa
Descripción This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
Tamaño del Archivo 30.15 KB
Cantidad de Instalaciones 74
Versión Actual 2.0
Última Actualización 2016-01-31
Fecha de Publicación 2016-01-31
Calificación 4.50/5 Total de 2 Calificaciones
Desarrollador Wouter0100
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/wouter0100/Hangouts-Toggle
URL de la Página de Ayuda https://github.com/wouter0100/Hangouts-Toggle
Idiomas Soportados 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
    }
}