Meet Tools

Semi-automatic Google Meet management

Meet Tools क्या है?

Meet Tools mason द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Semi-automatic Google Meet management"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Meet Tools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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