Meet Tools

Semi-automatic Google Meet management

Meet Tools là gì?

Meet Tools là một tiện ích mở rộng Chrome được phát triển bởi mason, và tính năng chính của nó là "Semi-automatic Google Meet management".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Meet Tools

Tải xuống các tệp mở rộng Meet Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Meet Tools Meet Tools
ID aikmjdhifadkaefedbjimlfckpihblko
URL Chính Thức https://chromewebstore.google.com/detail/meet-tools/aikmjdhifadkaefedbjimlfckpihblko
Mô tả Semi-automatic Google Meet management
Kích Thước Tệp 93.38 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 1.5.9
Cập Nhật Lần Cuối 2021-02-19
Ngày Phát Hành 2021-02-16
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển mason
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}