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是由https://www.colinodell.com開發的Chrome擴展程式,該擴展的主要功能是“Updates a Home Assistant entity state with the status of your Google Meet calls”。

擴展截圖

screenshot

下載Google Meet <=> Home Assistant擴展crx文件

下載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
官方網址 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\/*"
    ]
}