Hangouts toggle

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

Wat is Hangouts toggle?

Hangouts toggle is een Chrome-extensie ontwikkeld door Wouter0100, en de belangrijkste functie is "This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.".

Download het CRX-bestand van de extensie Hangouts toggle

Download Hangouts toggle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Hangouts toggle Hangouts toggle
ID nidndogcoebjkeffddmaijgegbenafaa
Officiële URL https://chrome.google.com/webstore/detail/nidndogcoebjkeffddmaijgegbenafaa
Beschrijving This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
Bestandsgrootte 30.15 KB
Aantal Installaties 74
Huidige Versie 2.0
Laatst Bijgewerkt 2016-01-31
Publicatiedatum 2016-01-31
Beoordeling 4.50/5 Totaal 2 Beoordelingen
Ontwikkelaar Wouter0100
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/wouter0100/Hangouts-Toggle
Help Pagina-URL https://github.com/wouter0100/Hangouts-Toggle
Ondersteunde Talen 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
    }
}