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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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
    }
}