Google Meet Push to Talk
Enable push to talk functionality in Google Meet
Google Meet Push to Talk란 무엇입니까?
Google Meet Push to Talk은(는) JCW Services에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enable push to talk functionality in Google Meet"입니다.
확장 프로그램 스크린샷
Google Meet Push to Talk 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension is for Google Meet This will enable simple push to talk functionality to make it easier to only have your microphone on when talk to prevent feedback especially in large meetings When the spacebar is pressed down it will unmute the microphone and when released it will mute the microphone Code - https://github.com/jcw-os/google-meet-ptt
확장 프로그램 기본 정보
이름 | Google Meet Push to Talk |
ID | lmbeadglfeffhemaffjdgfbgmiggafkg |
공식 URL | https://chromewebstore.google.com/detail/google-meet-push-to-talk/lmbeadglfeffhemaffjdgfbgmiggafkg |
설명 | Enable push to talk functionality in Google Meet |
파일 크기 | 95.2 KB |
설치 횟수 | 24,051 |
현재 버전 | 1.0.6 |
최근 업데이트 | 2021-05-28 |
출시 날짜 | 2020-05-28 |
평점 | 3.36/5 총 28 개의 평점 |
개발자 | JCW Services |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Meet Push to Talk", "description": "Enable push to talk functionality in Google Meet", "version": "1.0.6", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png", "256": "icons\/icon-256.png", "512": "icons\/icon-512.png", "1024": "icons\/icon-1024.png" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "js\/content_script.js" ], "css": [ "css\/ptt.css" ] } ] } |