Hangremote
This extension provides remote control for Google Hangouts
Hangremote란 무엇입니까?
Hangremote은(는) Marcelo Rossi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension provides remote control for Google Hangouts"입니다.
확장 프로그램 스크린샷
Hangremote 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
UPDATES: may_2019: works for Google Meet last version, multilingual support New: Now supports Google Meet, and also supports Google Hangouts. Features: - Mute/(Un)mute microphone - Enable/Disable camera - Leave the hangouts call - (ON/OFF) mic/cam by default at start - Shortcuts ** Avoid mic/cam ON when starting a video-call ** This extension enables you to (un)mute at hangouts video-call start. ** Easily control to (un)mute and get (on/off) cam, from the extension icon, not worrying about finding the tab ** - Mute/Unmute microphone - Enable/Disable camera - Leave the hangouts call (closes the tab) Or keyboard shortcuts (editable): - Ctrl+Shift+8 - Toggle Webcam - Ctrl+Shift+7 - Toggle Microphone Please report any issue before rating if you have any, I will gladly help Notes: It does not support more than one tab/sessions of hangout/hangout of hangout/meet open at the same time. Github: - https://github.com/cheluskis/hangremote Changelog: - 1.0.2: added Google Meet support - 1.0.1: now direct hangouts videocall works leaving hangouts chat open - minified code - 1.0.0: First version
확장 프로그램 기본 정보
이름 | Hangremote |
ID | naabbdmohmekdgecllphidjiaobnekcc |
공식 URL | https://chromewebstore.google.com/detail/hangremote/naabbdmohmekdgecllphidjiaobnekcc |
설명 | This extension provides remote control for Google Hangouts |
파일 크기 | 13.83 KB |
설치 횟수 | 5,480 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2019-05-28 |
출시 날짜 | 2019-05-27 |
평점 | 4.73/5 총 11 개의 평점 |
개발자 | Marcelo Rossi |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/cheluskis/hangremote |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hangremote", "description": "This extension provides remote control for Google Hangouts", "version": "1.0.3", "background": { "scripts": [ "src\/js\/commands.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.google.com\/hangouts*", "*:\/\/*.google.com\/call*", "*:\/\/meet.google.com\/*" ], "js": [ "src\/js\/content.js", "src\/js\/elements.js" ] } ], "commands": { "toggleMic": { "suggested_key": { "default": "Ctrl+Shift+7" }, "global": true, "description": "Toggle Microphone in Hangouts" }, "toggleCam": { "suggested_key": { "default": "Ctrl+Shift+8" }, "global": true, "description": "Toggle Webcam in Hangouts" } }, "browser_action": { "default_popup": "src\/popup.html", "default_title": "Manage microphone and camera settings on google hangouts", "default_icon": { "19": "icons\/PNG\/hangouts2_19.png", "38": "icons\/PNG\/hangouts2_38.png" } }, "permissions": [ "activeTab", "tabs", "storage" ] } |