Google Meet Controls
Control your microphone manners for Meet
Google Meet Controls란 무엇입니까?
Google Meet Controls은(는) Ivan Tichý에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control your microphone manners for Meet"입니다.
확장 프로그램 스크린샷
Google Meet Controls 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a simple extension that allows to control Google Meet with global keyboard shortcuts. Please have a look at the video and set up keyboard shortcuts as it cannot be set automatically during installation. It needs Chrome restart after installation.
확장 프로그램 기본 정보
이름 | Google Meet Controls |
ID | ncebfbcadlnhbfmfglhijjljfhimndil |
공식 URL | https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil |
설명 | Control your microphone manners for Meet |
파일 크기 | 22.74 KB |
설치 횟수 | 665 |
현재 버전 | 2.0 |
최근 업데이트 | 2020-02-06 |
출시 날짜 | 2020-02-06 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | Ivan Tichý |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | cs |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Meet Controls", "short_name": "Meet Controls", "description": "Control your microphone manners for Meet", "version": "2.0", "icons": { "128": "notmuted.png" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "run_at": "document_start", "js": [ "meet_controller.js" ] } ], "background": { "scripts": [ "keyboard_listener.js" ], "persistent": false }, "permissions": [ "tabs", "notifications" ], "commands": { "toggle": { "description": "Toggle mute", "global": true, "suggested_key": { "default": "Ctrl+X", "mac": "MacCtrl+X" } }, "mute": { "description": "Force mute", "global": true, "suggested_key": { "default": "Ctrl+M", "mac": "MacCtrl+M" } }, "unmute": { "description": "Force unmute", "global": true, "suggested_key": { "default": "Ctrl+U", "mac": "MacCtrl+U" } } } } |