Meet Tools

Semi-automatic Google Meet management

Что такое Meet Tools?

Meet Tools - это расширение Chrome, разработанное mason, и его основная функция - "Semi-automatic Google Meet management".

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

screenshot

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

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

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

                        Meet Tools expands the functionality of Google Meets to allow for automation.

FEATURES:
- Automatically reload Google Meets that have not started yet
- Automatically join meets when starting
- Automatically mute/disable camera when joining
- Automatically join breakout rooms
- Automatically leave Google Meets when others are leaving
- Notify Discord/Home Assistant Webhook when key words are said
- Automatically record Google Meets and save the file to your local hard drive

All of these features are toggleable to best suit  your needs, and more features will be coming soon.                    

Основная информация о расширении

Название Meet Tools Meet Tools
ID aikmjdhifadkaefedbjimlfckpihblko
Официальный URL https://chromewebstore.google.com/detail/meet-tools/aikmjdhifadkaefedbjimlfckpihblko
Описание Semi-automatic Google Meet management
Размер файла 93.38 KB
Количество установок 31
Текущая Версия 1.5.9
Последнее Обновление 2021-02-19
Дата публикации 2021-02-16
Рейтинг 5.00/5 Всего 1 оценок
Разработчик mason
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meet Tools",
    "version": "1.5.9",
    "description": "Semi-automatic Google Meet management",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "storage",
        "tabCapture",
        "downloads"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "recorderHandler.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js",
                "captions.js",
                "recorder.js"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_icon": {
            "48": "icon48.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}