Google Meet Mute
Easy muting/unmuting for when you're in a Google Meet.
Google Meet Mute란 무엇입니까?
Google Meet Mute은(는) SaidaiSRi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy muting/unmuting for when you're in a Google Meet."입니다.
확장 프로그램 스크린샷
Google Meet Mute 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Easy muting/unmuting for when you're in a Google Meet. Easily mute and unmute your Google Meet tabs! With this extension, you can: - Set global keyboard shortcuts to toggle muting from anywhere - See if you are currently muted from the app's icon - Toggle muting by clicking the app's icon * When the app's icon is purple colored microphone, there is no active Google Meet session. * When the app's icon is microphone unmuted, the microphone is currently unmuted. * When the app's icon is microphone muted, the microphone is currently muted. To set the keyboard shortcuts, right click the app icon -> Manage Extensions. From there, click the hamburger menu -> Keyboard shortcuts. Here you can set keyboard shortcuts for any extension. You can also specify Chrome (when Chrome is in focus) or Global (when any window is in focus). Influenced by Meet Mute https://chrome.google.com/webstore/detail/meet-mute/dkgoclojlihiolngeagmhkjiglmoeeic Google Meet Mute Toggler https://chrome.google.com/webstore/detail/google-meet-mute-toggler/fkdppolbkpdoebdhflolnnkeiaoblfjc Icons made by Smashicons from www.flaticon.com Meet Mute is open source! Feel free to contribute! https://github.com/saidaisri/google-meet-mute
확장 프로그램 기본 정보
이름 | Google Meet Mute |
ID | nnjmhmkohajomkpncmoakephgemkldkm |
공식 URL | https://chromewebstore.google.com/detail/google-meet-mute/nnjmhmkohajomkpncmoakephgemkldkm |
설명 | Easy muting/unmuting for when you're in a Google Meet. |
파일 크기 | 28 KB |
설치 횟수 | 164 |
현재 버전 | 0.0.2 |
최근 업데이트 | 2020-09-28 |
출시 날짜 | 2020-09-24 |
평점 | 3.67/5 총 3 개의 평점 |
개발자 | SaidaiSRi |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/saidaisri/google-meet-mute |
개인정보 보호 정책 페이지 URL | https://event.thinkcommand.com/privacy-policy.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Meet Mute", "short_name": "GoogleMeetMute", "author": "SRi", "version": "0.0.2", "manifest_version": 2, "description": "Easy muting\/unmuting for when you're in a Google Meet.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "js\/meetmute.js" ] } ], "browser_action": { "default_icon": "icons\/icon16.png", "default_title": "Disconnected" }, "permissions": [ "tabs", "https:\/\/meet.google.com\/", "alarms" ], "commands": { "toggle_mute": { "description": "Toggle Mute", "suggested_key": { "default": "Ctrl+Shift+K" }, "global": true }, "mute": { "description": "Mute", "suggested_key": { "default": "Ctrl+Shift+M" }, "global": true }, "unmute": { "description": "Unmute", "suggested_key": { "default": "Ctrl+Shift+B" }, "global": true } } } |