Google Meet <=> Home Assistant

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

Google Meet <=> Home Assistant là gì?

Google Meet <=> Home Assistant là một tiện ích mở rộng Chrome được phát triển bởi https://www.colinodell.com, và tính năng chính của nó là "Updates a Home Assistant entity state with the status of your Google Meet calls".

Ả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 Google Meet <=> Home Assistant

Tải xuống các tệp mở rộng Google Meet <=> Home Assistant 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

                        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.                    

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

Tên Google Meet <=> Home Assistant Google Meet <=> Home Assistant
ID gghhlbjdgdemfjmkdfoiebpobebkkccm
URL Chính Thức https://chrome.google.com/webstore/detail/gghhlbjdgdemfjmkdfoiebpobebkkccm
Mô tả Updates a Home Assistant entity state with the status of your Google Meet calls
Kích Thước Tệp 192 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2023-04-18
Ngày Phát Hành 2023-04-18
Nhà Phát Triển https://www.colinodell.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/colinodell/google-meet-hass-extension#configuration
URL Trang Chính Sách Bảo Mật https://www.colinodell.com/chrome-extension-privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}