Meet Tools

Semi-automatic Google Meet management

¿Qué es Meet Tools?

Meet Tools es una extensión de Chrome desarrollada por mason, y su función principal es "Semi-automatic Google Meet management".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Meet Tools

Descarga archivos de extensión Meet Tools en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Meet Tools Meet Tools
ID aikmjdhifadkaefedbjimlfckpihblko
URL Oficial https://chromewebstore.google.com/detail/meet-tools/aikmjdhifadkaefedbjimlfckpihblko
Descripción Semi-automatic Google Meet management
Tamaño del Archivo 93.38 KB
Cantidad de Instalaciones 31
Versión Actual 1.5.9
Última Actualización 2021-02-19
Fecha de Publicación 2021-02-16
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador mason
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
    }
}