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