Google Meet Volume Control

Client side volume control for Google Meet

Was ist Google Meet Volume Control?

Google Meet Volume Control ist eine Chrome-Erweiterung, die von https://matthew-cash.com entwickelt wurde, und ihr Hauptmerkmal ist "Client side volume control for Google Meet".

Erweiterungsscreenshots

screenshot

Google Meet Volume Control-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Meet Volume Control-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Google Meet Volume Control Google Meet Volume Control
ID nkbnlgonoekhmldnihfdpakhhjhmdkbd
Offizielle URL https://chromewebstore.google.com/detail/google-meet-volume-contro/nkbnlgonoekhmldnihfdpakhhjhmdkbd
Beschreibung Client side volume control for Google Meet
Dateigröße 14.06 KB
Installationsanzahl 54,008
Aktuelle Version 1.2.0
Letztes Update 2023-06-29
Veröffentlichungsdatum 2020-09-15
Bewertung 4.56/5 Insgesamt 136 Bewertungen
Entwickler https://matthew-cash.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/MatthewCash/google-meet-volume-control
Hilfeseite URL https://github.com/MatthewCash/google-meet-volume-control/issues
Unterstützte Sprachen 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"
    ]
}