Hangouts toggle

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

什麼是Hangouts toggle?

Hangouts toggle是由Wouter0100開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.”。

下載Hangouts toggle擴展crx文件

下載Hangouts toggle擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Hangouts toggle Hangouts toggle
ID nidndogcoebjkeffddmaijgegbenafaa
官方網址 https://chrome.google.com/webstore/detail/nidndogcoebjkeffddmaijgegbenafaa
簡介 This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
檔案大小 30.15 KB
安裝次數 74
目前版本 2.0
更新時間 2016-01-31
上架時間 2016-01-31
評分 4.50/5 共 2 次評分
開發者 Wouter0100
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/wouter0100/Hangouts-Toggle
說明頁面URL https://github.com/wouter0100/Hangouts-Toggle
支援的語言 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
    }
}