Google Meet Volume Control

Client side volume control for Google Meet

Co to jest Google Meet Volume Control?

Google Meet Volume Control to rozszerzenie Chrome opracowane przez https://matthew-cash.com, a jego główną funkcją jest „Client side volume control for Google Meet”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Google Meet Volume Control

Pobierz pliki rozszerzeń Google Meet Volume Control w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Meet Volume Control Google Meet Volume Control
ID nkbnlgonoekhmldnihfdpakhhjhmdkbd
Oficjalny URL https://chromewebstore.google.com/detail/google-meet-volume-contro/nkbnlgonoekhmldnihfdpakhhjhmdkbd
Opis Client side volume control for Google Meet
Rozmiar pliku 14.06 KB
Liczba instalacji 54,008
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2023-06-29
Data Publikacji 2020-09-15
Ocena 4.56/5 Łącznie 136 Oceny
Deweloper https://matthew-cash.com
E-mail matthew@matthew-cash.com
Typ Płatności free
Strona Rozszerzenia https://github.com/MatthewCash/google-meet-volume-control
Adres URL Strony Pomocy https://github.com/MatthewCash/google-meet-volume-control/issues
Obsługiwane Języki 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"
    ]
}