Google Meet Mute Toggler

For muting and unmuting Google Meet from the extension icon.

Google Meet Mute Toggler란 무엇입니까?

Google Meet Mute Toggler은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "For muting and unmuting Google Meet from the extension icon."입니다.

확장 프로그램 스크린샷

screenshot

Google Meet Mute Toggler 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        For muting and unmuting Google Meet from the extension icon in the Chrome browser, no matter what tab you're currently looking at.

Features
* Toggle mute in your active Google Meet no matter what tab you're looking at
* Extension icon is green when you're in an active Google Meet and unmuted, red when muted, and otherwise gray
* You'll get an error message if you have more than one Meet open
* You can toggle the mute button on a Meet join page but it won't do much
* If you have a Meet open and toggle muting from within the application or using your keyboard, the extension icon will register this and change color appropriately (checks ever 3 seconds)

See code at https://github.com/jasonketola/Google-Meet-Mute-Toggler.                    

확장 프로그램 기본 정보

이름 Google Meet Mute Toggler Google Meet Mute Toggler
ID fkdppolbkpdoebdhflolnnkeiaoblfjc
공식 URL https://chromewebstore.google.com/detail/google-meet-mute-toggler/fkdppolbkpdoebdhflolnnkeiaoblfjc
설명 For muting and unmuting Google Meet from the extension icon.
파일 크기 11.12 KB
설치 횟수 8,694
현재 버전 0.3
최근 업데이트 2021-10-31
출시 날짜 2020-04-19
평점 3.33/5 총 3 개의 평점
개발자 Unknown
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jasonketola/Google-Meet-Mute-Toggler
도움말 페이지 URL https://github.com/jasonketola/Google-Meet-Mute-Toggler
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Mute Toggler",
    "description": "For muting and unmuting Google Meet from the extension icon.",
    "version": "0.3",
    "author": "Jason Ketola",
    "icons": {
        "16": "M_gray16.png",
        "48": "M_gray48.png",
        "128": "M_gray128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Toggle",
        "default_icon": "M_gray128.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/meet.google.com\/",
        "alarms"
    ]
}