Google Meet Volume Control

Client side volume control for Google Meet

Что такое Google Meet Volume Control?

Google Meet Volume Control - это расширение Chrome, разработанное https://matthew-cash.com, и его основная функция - "Client side volume control for Google Meet".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Google Meet Volume Control

Скачайте файлы расширений Google Meet Volume Control в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}