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 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
عنوان صفحة سياسة الخصوصية 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\/*"
    ]
}