Hangouts toggle

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

Co je Hangouts toggle?

Hangouts toggle je rozšíření Chrome vyvinuté Wouter0100, a jeho hlavní funkcí je „This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.“.

Stáhnout soubor CRX rozšíření Hangouts toggle

Stáhněte si soubory rozšíření Hangouts toggle ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Hangouts toggle Hangouts toggle
ID nidndogcoebjkeffddmaijgegbenafaa
Oficiální URL https://chrome.google.com/webstore/detail/nidndogcoebjkeffddmaijgegbenafaa
Popis This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
Velikost souboru 30.15 KB
Počet instalací 74
Aktuální Verze 2.0
Poslední Aktualizace 2016-01-31
Datum Vydání 2016-01-31
Hodnocení 4.50/5 Celkem 2 Hodnocení
Vývojář Wouter0100
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/wouter0100/Hangouts-Toggle
URL Stránky Nápovědy https://github.com/wouter0100/Hangouts-Toggle
Podporované Jazyky 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
    }
}