Google Meet Volume Control

Client side volume control for Google Meet

Google Meet Volume Control란 무엇입니까?

Google Meet Volume Control은(는) https://matthew-cash.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Client side volume control for Google Meet"입니다.

확장 프로그램 스크린샷

screenshot

Google Meet Volume Control 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Set a global volume for all Meet participants (client side).

Click the extension's icon while in Google Meet to adjust the volume using a simple slider.                    

확장 프로그램 기본 정보

이름 Google Meet Volume Control Google Meet Volume Control
ID nkbnlgonoekhmldnihfdpakhhjhmdkbd
공식 URL https://chromewebstore.google.com/detail/google-meet-volume-contro/nkbnlgonoekhmldnihfdpakhhjhmdkbd
설명 Client side volume control for Google Meet
파일 크기 14.06 KB
설치 횟수 54,008
현재 버전 1.2.0
최근 업데이트 2023-06-29
출시 날짜 2020-09-15
평점 4.56/5 총 136 개의 평점
개발자 https://matthew-cash.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/MatthewCash/google-meet-volume-control
도움말 페이지 URL https://github.com/MatthewCash/google-meet-volume-control/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet Volume Control",
    "description": "Client side volume control for Google Meet",
    "version": "1.2.0",
    "short_name": "Meet Volume",
    "manifest_version": 3,
    "action": {
        "default_popup": "src\/popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "src\/js\/meet.js"
            ]
        }
    ],
    "background": {
        "service_worker": "src\/js\/background.js"
    },
    "permissions": [
        "storage",
        "background",
        "declarativeContent"
    ]
}