Hangouts toggle

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

Apa itu Hangouts toggle?

Hangouts toggle adalah ekstensi Chrome yang dikembangkan oleh Wouter0100, dan fitur utamanya adalah "This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.".

Unduh Berkas CRX Ekstensi Hangouts toggle

Unduh file ekstensi Hangouts toggle dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Hangouts toggle Hangouts toggle
ID nidndogcoebjkeffddmaijgegbenafaa
URL Resmi https://chrome.google.com/webstore/detail/nidndogcoebjkeffddmaijgegbenafaa
Deskripsi This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
Ukuran File 30.15 KB
Jumlah Instalasi 74
Versi Saat Ini 2.0
Terakhir Diperbarui 2016-01-31
Tanggal Publikasi 2016-01-31
Penilaian 4.50/5 Total 2 Penilaian
Pengembang Wouter0100
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/wouter0100/Hangouts-Toggle
URL Halaman Bantuan https://github.com/wouter0100/Hangouts-Toggle
Bahasa yang Didukung 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
    }
}