Home Assistant Mute Switch
Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…
Home Assistant Mute Switch क्या है?
Home Assistant Mute Switch Ole-Kenneth द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Home Assistant Mute Switch एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived access token, and pick the sensor/light/switch to control the mute state. FYI: Be aware that this version will only work with SSL/HTTPS connection to Home Assistant.
एक्सटेंशन की मूल जानकारी
नाम | Home Assistant Mute Switch |
ID | agjmampeijncjkcnojmgfokephaddjkn |
आधिकारिक URL | https://chromewebstore.google.com/detail/home-assistant-mute-switc/agjmampeijncjkcnojmgfokephaddjkn |
विवरण | Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived… |
फ़ाइल का आकार | 44.84 KB |
स्थापना संख्या | 31 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2022-01-20 |
प्रकाशन तिथि | 2022-01-12 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Ole-Kenneth |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Home Assistant Mute Switch", "version": "1.0.0", "options_page": "html\/options.html", "host_permissions": [ "https:\/\/meet.google.com\/*" ], "permissions": [ "storage" ], "icons": { "16": "\/assets\/icons\/icon16.png", "48": "\/assets\/icons\/icon48.png", "128": "\/assets\/icons\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "html\/options.html" ], "matches": [ "https:\/\/meet.google.com\/*" ], "use_dynamic_url": true } ], "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_idle" } ] } |