Meet Tools

Semi-automatic Google Meet management

Meet Toolsとは何ですか?

Meet Toolsはmasonによって開発されたChromeの拡張機能で、その主な機能は「Semi-automatic Google Meet management」です。

拡張機能のスクリーンショット

screenshot

Meet Tools拡張機能のCRXファイルをダウンロード

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
Eメール [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
    }
}