Meet Tools
Semi-automatic Google Meet management
Meet Tools란 무엇입니까?
Meet Tools은(는) mason에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Semi-automatic Google Meet management"입니다.
확장 프로그램 스크린샷
Meet Tools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Meet Tools expands the functionality of Google Meets to allow for automation. FEATURES: - Automatically reload Google Meets that have not started yet - Automatically join meets when starting - Automatically mute/disable camera when joining - Automatically join breakout rooms - Automatically leave Google Meets when others are leaving - Notify Discord/Home Assistant Webhook when key words are said - Automatically record Google Meets and save the file to your local hard drive All of these features are toggleable to best suit your needs, and more features will be coming soon.
확장 프로그램 기본 정보
이름 | Meet Tools |
ID | aikmjdhifadkaefedbjimlfckpihblko |
공식 URL | https://chromewebstore.google.com/detail/meet-tools/aikmjdhifadkaefedbjimlfckpihblko |
설명 | Semi-automatic Google Meet management |
파일 크기 | 93.38 KB |
설치 횟수 | 31 |
현재 버전 | 1.5.9 |
최근 업데이트 | 2021-02-19 |
출시 날짜 | 2021-02-16 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | mason |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Meet Tools", "version": "1.5.9", "description": "Semi-automatic Google Meet management", "manifest_version": 2, "permissions": [ "storage", "storage", "tabCapture", "downloads" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js", "recorderHandler.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content.js", "captions.js", "recorder.js" ], "run_at": "document_end" } ], "page_action": { "default_icon": { "48": "icon48.png" } }, "options_ui": { "page": "options.html", "open_in_tab": false } } |