MuteMe Web Extension
Take control of web-based video calls with MuteMe
MuteMe Web Extension란 무엇입니까?
MuteMe Web Extension은(는) parm에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take control of web-based video calls with MuteMe"입니다.
확장 프로그램 스크린샷
MuteMe Web Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
"Introducing the MuteMe Chrome Extension - the ultimate solution for muting and unmuting your web based video conferences with ease! With this extension, you'll have level three integration that allows you to mute or unmute your microphone on popular platforms like Google Meet, Teams, and more (coming soon). And the best part? The virtual mute button for the platforms stays in sync with all other methods of muting including the tray icon and your MuteMe, so you'll never have to worry about mismatched mute states. Simply download the free MuteMe app at www.muteme.com/download to get started. This extension only currently works with one Chrome profile. Using it across multiple profiles will not work. MuteMe software version 0.15.0 or above is required.
확장 프로그램 기본 정보
이름 | MuteMe Web Extension |
ID | iabboefdfnocmnkmoejbmacffgfafbbf |
공식 URL | https://chromewebstore.google.com/detail/muteme-web-extension/iabboefdfnocmnkmoejbmacffgfafbbf |
설명 | Take control of web-based video calls with MuteMe |
파일 크기 | 178 KB |
설치 횟수 | 3,779 |
현재 버전 | 1.5.0 |
최근 업데이트 | 2023-09-25 |
출시 날짜 | 2023-03-15 |
평점 | 3.50/5 총 2 개의 평점 |
개발자 | parm |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://muteme.com |
도움말 페이지 URL | https://muteme.com/pages/contact-us |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "background": { "service_worker": ".\/background.js" }, "action": { "default_popup": "popup.html" }, "permissions": [ "alarms", "storage" ], "host_permissions": [ "https:\/\/meet.google.com\/*", "https:\/\/teams.live.com\/*", "http:\/\/localhost\/*" ], "icons": { "16": "\/images\/muteme16.png", "32": "\/images\/muteme32.png", "48": "\/images\/muteme48.png", "128": "\/images\/muteme128.png" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "googleMeet-control.js" ] }, { "matches": [ "https:\/\/teams.live.com\/*" ], "js": [ "teams-control.js" ] } ], "name": "MuteMe Web Extension", "description": "Take control of web-based video calls with MuteMe", "version": "1.5.0" } |