Google Meet Volume Control

Client side volume control for Google Meet

Vad är Google Meet Volume Control?

Google Meet Volume Control är en Chrome-tillägg utvecklad av https://matthew-cash.com, och dess huvudfunktion är "Client side volume control for Google Meet".

Tilläggsskärmbilder

screenshot

Ladda ner Google Meet Volume Control-förlängningens CRX-fil

Ladda ner Google Meet Volume Control-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Google Meet Volume Control Google Meet Volume Control
ID nkbnlgonoekhmldnihfdpakhhjhmdkbd
Officiell webbadress https://chromewebstore.google.com/detail/google-meet-volume-contro/nkbnlgonoekhmldnihfdpakhhjhmdkbd
Beskrivning Client side volume control for Google Meet
Filstorlek 14.06 KB
Antal Installationer 54,008
Aktuell Version 1.2.0
Senast Uppdaterad 2023-06-29
Publiceringsdatum 2020-09-15
Betyg 4.56/5 Totalt 136 Betyg
Utvecklare https://matthew-cash.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/MatthewCash/google-meet-volume-control
Hjälpsida URL https://github.com/MatthewCash/google-meet-volume-control/issues
Stödda Språk 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"
    ]
}