Google Meet <=> Home Assistant

Updates a Home Assistant entity state with the status of your Google Meet calls

Google Meet <=> Home Assistantคืออะไร?

Google Meet <=> Home Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.colinodell.com และคุณลักษณะหลักของมันคือ "Updates a Home Assistant entity state with the status of your Google Meet calls"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet <=> Home Assistant

ดาวน์โหลดไฟล์ส่วนขยาย Google Meet <=> Home Assistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Chrome extension that relays your Google Meet status (in meeting or not) to Home Assistant so you can build your own DIY "On Air" light or other automations.

It works by detecting whether you have any active meetings open in any Chrome tabs, and then toggles an Input Boolean in Home Assistant accordingly which you can use to create automations from.

See https://github.com/colinodell/google-meet-hass-extension#configuration for additional setup instructions.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Google Meet <=> Home Assistant Google Meet <=> Home Assistant
ID gghhlbjdgdemfjmkdfoiebpobebkkccm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/gghhlbjdgdemfjmkdfoiebpobebkkccm
คำอธิบาย Updates a Home Assistant entity state with the status of your Google Meet calls
ขนาดไฟล์ 192 KB
จำนวนการติดตั้ง 40
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2023-04-18
วันที่เผยแพร่ 2023-04-18
ผู้พัฒนา https://www.colinodell.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/colinodell/google-meet-hass-extension#configuration
URL หน้านโยบายความเป็นส่วนตัว https://www.colinodell.com/chrome-extension-privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Meet <=> Home Assistant",
    "version": "0.1.0",
    "description": "Updates a Home Assistant entity state with the status of your Google Meet calls",
    "author": "Colin O'Dell",
    "homepage_url": "https:\/\/github.com\/colinodell\/google-meet-hass-extension",
    "action": {
        "default_icon": {
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Options",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/meet.google.com\/*",
        "*:\/\/*\/api\/states\/*"
    ]
}