diff --git a/custom_components/hacs/__init__.py b/custom_components/hacs/__init__.py index 35bbf00..755ec25 100644 --- a/custom_components/hacs/__init__.py +++ b/custom_components/hacs/__init__.py @@ -19,6 +19,7 @@ from homeassistant.core import HomeAssistant from homeassistant.helpers.aiohttp_client import async_get_clientsession from homeassistant.helpers.discovery import async_load_platform from homeassistant.helpers.event import async_call_later +from homeassistant.helpers.issue_registry import IssueSeverity, async_create_issue from homeassistant.helpers.start import async_at_start from homeassistant.loader import async_get_integration import voluptuous as vol @@ -30,6 +31,7 @@ from .enums import ConfigurationType, HacsDisabledReason, HacsStage, LovelaceMod from .frontend import async_register_frontend from .utils.configuration_schema import hacs_config_combined from .utils.data import HacsData +from .utils.logger import LOGGER from .utils.queue_manager import QueueManager from .utils.version import version_left_higher_or_equal_then_right from .websocket import async_register_websocket_commands @@ -217,6 +219,24 @@ async def async_initialize_integration( async def async_setup(hass: HomeAssistant, config: dict[str, Any]) -> bool: """Set up this integration using yaml.""" + if DOMAIN in config: + async_create_issue( + hass, + DOMAIN, + "deprecated_yaml_configuration", + is_fixable=False, + issue_domain=DOMAIN, + severity=IssueSeverity.WARNING, + translation_key="deprecated_yaml_configuration", + learn_more_url="https://hacs.xyz/docs/configuration/options", + ) + LOGGER.warning( + "YAML configuration of HACS is deprecated and will be " + "removed in version 2.0.0, there will be no automatic " + "import of this. " + "Please remove it from your configuration, " + "restart Home Assistant and use the UI to configure it instead." + ) return await async_initialize_integration(hass=hass, config=config) @@ -232,6 +252,10 @@ async def async_unload_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> """Handle removal of an entry.""" hacs: HacsBase = hass.data[DOMAIN] + if hacs.queue.has_pending_tasks: + hacs.log.warning("Pending tasks, can not unload, try again later.") + return False + # Clear out pending queue hacs.queue.clear() @@ -265,5 +289,6 @@ async def async_unload_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> async def async_reload_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> None: """Reload the HACS config entry.""" - await async_unload_entry(hass, config_entry) + if not await async_unload_entry(hass, config_entry): + return await async_setup_entry(hass, config_entry) diff --git a/custom_components/hacs/config_flow.py b/custom_components/hacs/config_flow.py index 1227e2a..c769886 100644 --- a/custom_components/hacs/config_flow.py +++ b/custom_components/hacs/config_flow.py @@ -1,4 +1,8 @@ """Adds config flow for HACS.""" +from __future__ import annotations + +from typing import TYPE_CHECKING + from aiogithubapi import GitHubDeviceAPI, GitHubException from aiogithubapi.common.const import OAUTH_USER_LOGIN from awesomeversion import AwesomeVersion @@ -11,15 +15,29 @@ from homeassistant.loader import async_get_integration import voluptuous as vol from .base import HacsBase -from .const import CLIENT_ID, DOMAIN, MINIMUM_HA_VERSION +from .const import CLIENT_ID, DOMAIN, LOCALE, MINIMUM_HA_VERSION from .enums import ConfigurationType -from .utils.configuration_schema import RELEASE_LIMIT, hacs_config_option_schema +from .utils.configuration_schema import ( + APPDAEMON, + COUNTRY, + DEBUG, + EXPERIMENTAL, + NETDAEMON, + RELEASE_LIMIT, + SIDEPANEL_ICON, + SIDEPANEL_TITLE, +) from .utils.logger import LOGGER +if TYPE_CHECKING: + from homeassistant.core import HomeAssistant + class HacsFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): """Config flow for HACS.""" + hass: HomeAssistant + VERSION = 1 CONNECTION_CLASS = config_entries.CONN_CLASS_CLOUD_POLL @@ -32,6 +50,7 @@ class HacsFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): self._progress_task = None self._login_device = None self._reauth = False + self._user_input = {} async def async_step_user(self, user_input): """Handle a flow initialized by the user.""" @@ -42,10 +61,12 @@ class HacsFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): return self.async_abort(reason="single_instance_allowed") if user_input: - if [x for x in user_input if not user_input[x]]: + if [x for x in user_input if x.startswith("acc_") and not user_input[x]]: self._errors["base"] = "acc" return await self._show_config_form(user_input) + self._user_input = user_input + return await self.async_step_device(user_input) ## Initial form @@ -112,24 +133,35 @@ class HacsFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): "acc_untested", default=user_input.get("acc_untested", False) ): bool, vol.Required("acc_disable", default=user_input.get("acc_disable", False)): bool, + vol.Optional( + "experimental", default=user_input.get("experimental", False) + ): bool, } ), errors=self._errors, ) - async def async_step_device_done(self, _user_input): + async def async_step_device_done(self, user_input: dict[str, bool] | None = None): """Handle device steps""" if self._reauth: existing_entry = self.hass.config_entries.async_get_entry(self.context["entry_id"]) self.hass.config_entries.async_update_entry( - existing_entry, data={"token": self.activation.access_token} + existing_entry, data={**existing_entry.data, "token": self.activation.access_token} ) await self.hass.config_entries.async_reload(existing_entry.entry_id) return self.async_abort(reason="reauth_successful") - return self.async_create_entry(title="", data={"token": self.activation.access_token}) + return self.async_create_entry( + title="", + data={ + "token": self.activation.access_token, + }, + options={ + "experimental": self._user_input.get("experimental", False), + }, + ) - async def async_step_reauth(self, user_input=None): + async def async_step_reauth(self, _user_input=None): """Perform reauth upon an API authentication error.""" return await self.async_step_reauth_confirm() @@ -172,11 +204,21 @@ class HacsOptionsFlowHandler(config_entries.OptionsFlow): if hacs is None or hacs.configuration is None: return self.async_abort(reason="not_setup") + if hacs.queue.has_pending_tasks: + return self.async_abort(reason="pending_tasks") + if hacs.configuration.config_type == ConfigurationType.YAML: schema = {vol.Optional("not_in_use", default=""): str} else: - schema = hacs_config_option_schema(self.config_entry.options) - del schema["frontend_repo"] - del schema["frontend_repo_url"] + schema = { + vol.Optional(SIDEPANEL_TITLE, default=hacs.configuration.sidepanel_title): str, + vol.Optional(SIDEPANEL_ICON, default=hacs.configuration.sidepanel_icon): str, + vol.Optional(RELEASE_LIMIT, default=hacs.configuration.release_limit): int, + vol.Optional(COUNTRY, default=hacs.configuration.country): vol.In(LOCALE), + vol.Optional(APPDAEMON, default=hacs.configuration.appdaemon): bool, + vol.Optional(NETDAEMON, default=hacs.configuration.netdaemon): bool, + vol.Optional(DEBUG, default=hacs.configuration.debug): bool, + vol.Optional(EXPERIMENTAL, default=hacs.configuration.experimental): bool, + } return self.async_show_form(step_id="user", data_schema=vol.Schema(schema)) diff --git a/custom_components/hacs/const.py b/custom_components/hacs/const.py index 8af28b8..85fda91 100644 --- a/custom_components/hacs/const.py +++ b/custom_components/hacs/const.py @@ -6,7 +6,7 @@ from aiogithubapi.common.const import ACCEPT_HEADERS NAME_SHORT = "HACS" DOMAIN = "hacs" CLIENT_ID = "395a8e669c5de9f7c6e8" -MINIMUM_HA_VERSION = "2022.11.0" +MINIMUM_HA_VERSION = "2023.6.0" URL_BASE = "/hacsfiles" diff --git a/custom_components/hacs/manifest.json b/custom_components/hacs/manifest.json index a1395f8..467db16 100644 --- a/custom_components/hacs/manifest.json +++ b/custom_components/hacs/manifest.json @@ -19,5 +19,5 @@ "requirements": [ "aiogithubapi>=22.10.1" ], - "version": "1.32.1" + "version": "1.33.0" } \ No newline at end of file diff --git a/custom_components/hacs/translations/en.json b/custom_components/hacs/translations/en.json index 8da487a..ef4b3ed 100644 --- a/custom_components/hacs/translations/en.json +++ b/custom_components/hacs/translations/en.json @@ -16,8 +16,9 @@ "data": { "acc_logs": "I know how to access Home Assistant logs", "acc_addons": "I know that there are no add-ons in HACS", - "acc_untested": "I know that everything inside HACS is custom and untested by Home Assistant", - "acc_disable": "I know that if I get issues with Home Assistant I should disable all my custom_components" + "acc_untested": "I know that everything inside HACS including HACS itself is custom and untested by Home Assistant", + "acc_disable": "I know that if I get issues with Home Assistant I should disable all my custom_components", + "experimental": "Enable experimental features, this is what eventually will become HACS 2.0.0, if you enable it now you do not need to do anything when 2.0.0 is released" }, "description": "Before you can setup HACS you need to acknowledge the following" }, @@ -30,22 +31,23 @@ } }, "progress": { - "wait_for_device": "1. Open {url} \n2.Paste the following key to authorize HACS: \n```\n{code}\n```\n" + "wait_for_device": "1. Open {url} \n2. Paste the following key to authorize HACS: \n```\n{code}\n```\n" } }, "options": { "abort": { "not_setup": "HACS is not setup.", - "release_limit_value": "The release limit needs to be between 1 and 100" + "pending_tasks": "There are pending tasks. Try again later.", + "release_limit_value": "The release limit needs to be between 1 and 100." }, "step": { "user": { "data": { "not_in_use": "Not in use with YAML", - "country": "Filter with country code.", + "country": "Filter with country code", "experimental": "Enable experimental features", - "release_limit": "Number of releases to show.", - "debug": "Enable debug.", + "release_limit": "Number of releases to show", + "debug": "Enable debug", "appdaemon": "Enable AppDaemon apps discovery & tracking", "netdaemon": "[DEPRECATED] Enable NetDaemon apps discovery & tracking", "sidepanel_icon": "Side panel icon", @@ -68,7 +70,11 @@ }, "removed": { "title": "Repository removed from HACS", - "description": "Because {reason}, '{name}' has been removed from HACS. Please visit the [HACS Panel](/hacs/repository/{repositry_id}) to remove it." + "description": "Because {reason}, `{name}` has been removed from HACS. Please visit the [HACS Panel](/hacs/repository/{repositry_id}) to remove it." + }, + "deprecated_yaml_configuration": { + "title": "YAML configuration is deprecated", + "description": "YAML configuration of HACS is deprecated and will be removed in version 2.0.0, there will be no automatic import of this.\nPlease remove it from your configuration, restart Home Assistant and use the UI to configure it instead." } } -} +} \ No newline at end of file diff --git a/custom_components/hacs/utils/data.py b/custom_components/hacs/utils/data.py index b128a3f..12e9db7 100644 --- a/custom_components/hacs/utils/data.py +++ b/custom_components/hacs/utils/data.py @@ -286,6 +286,7 @@ class HacsData: repository.data.last_updated = repository_data.get("last_updated", 0) if self.hacs.system.generator: repository.data.etag_releases = repository_data.get("etag_releases") + repository.data.open_issues = repository_data.get("open_issues", 0) repository.data.etag_repository = repository_data.get("etag_repository") repository.data.topics = [ topic for topic in repository_data.get("topics", []) if topic not in TOPIC_FILTER diff --git a/custom_components/hacs/utils/default.repositories b/custom_components/hacs/utils/default.repositories index 6de2a22..56cb46a 100644 --- a/custom_components/hacs/utils/default.repositories +++ b/custom_components/hacs/utils/default.repositories @@ -1 +1 @@ -{"172733314": {"repository_manifest": {"name": "HACS", "zip_release": true, "hide_default_branch": true, "homeassistant": "2022.11.0", "hacs": "0.19.0", "filename": "hacs.zip"}, "full_name": "hacs/integration", "authors": ["@ludeeus"], "category": "integration", "description": "HACS gives you a powerful UI to handle downloads of all your custom needs.", "domain": "hacs", "downloads": 91143, "etag_repository": "W/\"9514e0beca595d2906c2a8b691062ed2ac830cf08f8693024c1476547999148a\"", "last_updated": "2023-01-21T13:04:42Z", "stargazers_count": 3264, "topics": ["community", "package-manager"], "config_flow": true, "default_branch": "main", "installed": false, "last_commit": "04f917f", "last_version": "1.29.1", "manifest_name": "HACS", "open_issues": 4, "published_tags": ["1.29.1", "1.29.0", "1.28.4", "1.28.3", "1.28.2"], "releases": true, "version_installed": null, "last_fetched": 1674378896.346844, "first_install": true, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null}, "191831638": {"repository_manifest": {"name": "Meross Integration", "hacs": "1.6.0", "homeassistant": "2022.6"}, "full_name": "albertogeniola/meross-homeassistant", "authors": ["@albertogeniola"], "category": "integration", "description": "Custom component that leverages the Meross IoT library to integrate with Homeassistant", "domain": "meross_cloud", "etag_repository": "W/\"7b15692ada24ee71723957c0f7f988445904af15647791516d0fa6156a17213c\"", "last_updated": "2023-01-14T12:34:02Z", "stargazers_count": 506, "topics": ["meross", "meross-homeassistant"], "last_fetched": 1674377796.701164, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232269564": {"repository_manifest": {"name": "Konke", "country": "CN"}, "full_name": "5high/konke", "authors": ["@jedmeng"], "category": "integration", "description": "\u63a7\u5ba2\u5c0fK \u63a5\u5165Home Assistant\uff0c\u652f\u6301\u6700\u65b0\u7248\u672cHA \u76ee\u524d\u6700\u65b0\u7248\u672c\uff080.103\uff09\uff0c\u76f8\u4fe1\u672a\u6765\u7684\u7248\u672c\u4e5f\u53ef\u4ee5\u652f\u6301\u3002", "domain": "konke", "etag_repository": "W/\"8a0e9f0c1dc0ba5426abd8286b2a4797db05c4f536bfe93ed36d9bfc67399c19\"", "last_updated": "2022-02-08T07:44:52Z", "stargazers_count": 18, "last_fetched": 1671384803.051624, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234514524": {"repository_manifest": {"name": "Sonos Alarm"}, "full_name": "AaronDavidSchneider/SonosAlarm", "category": "integration", "description": "HomeAssistant custom component to control your SONOS Alarm", "domain": "sonos_alarm", "etag_repository": "W/\"4481cfb94fea57a700057ada7be94d438182828c96a14577e572b753c5a1d612\"", "last_updated": "2021-05-25T16:33:27Z", "stargazers_count": 20, "last_fetched": 1665938695.294071, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "169460975": {"repository_manifest": {}, "full_name": "akasma74/Hass-Custom-Alarm", "authors": ["@akasma74"], "category": "integration", "description": "It is a fork of \"Yet another take on a home assistant custom alarm\" that will exist until its author is back to our Earth", "domain": "bwalarm", "etag_repository": "W/\"96d490b1ca601310d3aca971c49b23a4636bac9ddeeacb6dde106e2b6fcf852f\"", "last_updated": "2023-01-08T22:00:23Z", "stargazers_count": 80, "last_fetched": 1674377795.496838, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "272432260": {"repository_manifest": {"name": "Floureon Thermostat", "homeassistant": "0.110.0", "render_readme": true}, "full_name": "algirdasc/hass-floureon", "authors": ["@algirdasc"], "category": "integration", "description": "Floureon (Broadlink based) thermostat integration for Home Assistant", "domain": "floureon", "etag_repository": "W/\"63fed5a2d1eb1194d0691aa4e91c6775856ee5cb2f81c6749749fbcdbb6b0d46\"", "last_updated": "2022-10-21T14:50:22Z", "stargazers_count": 24, "topics": ["broadlink", "floureon", "thermostat"], "last_fetched": 1672947967.835105, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215825339": {"repository_manifest": {"name": "Hekr Component", "filename": false, "country": false, "homeassistant": "2022.3.0", "persistent_directory": false}, "full_name": "alryaz/hass-hekr-component", "authors": ["@alryaz"], "category": "integration", "description": "Hekr integration using python-hekr", "domain": "hekr", "etag_repository": "W/\"d5d79e9cbb345241908bd8e2708a8b91bd36ef4bd9b242adf968539ffe5740ce\"", "last_updated": "2022-04-07T13:32:52Z", "stargazers_count": 33, "topics": ["consumption", "hekr", "wisen-application"], "last_fetched": 1671384814.813361, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257104502": {"repository_manifest": {"name": "FKF Budapest Garbage Collection", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/fkf-garbage-collection", "authors": ["@amaximus"], "category": "integration", "description": "FKF Budapest Garbage Collection custom component for Home Assistant", "domain": "fkf_garbage_collection", "downloads": 1, "etag_repository": "W/\"93f19b420236580f5f576edfdc8c2f9fe26cd8ae73bf4730801c48c1ea2bec48\"", "last_updated": "2022-11-27T09:27:13Z", "stargazers_count": 16, "topics": ["budapest"], "last_fetched": 1671384820.842269, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224374747": {"repository_manifest": {"name": "Phicomm DC1", "country": "CN"}, "full_name": "5high/phicomm-dc1-homeassistant", "category": "integration", "description": "\u6590\u8bafDC1\u63d2\u6392\u63a5\u5165Home Assistant\u63d2\u4ef6\uff0c\u672c\u63d2\u4ef6\u539f\u4f5c\u8005NETYJ\uff0c\u6b64\u5904\u4ec5\u4e3aHACS\u5b89\u88c5\u65b9\u4fbf\u4e4b\u7528\u3002", "domain": "phicomm_dc1", "etag_repository": "W/\"e754901360a5c58f4464d560fef8bac20950f27a71b2758e41cde46f2275044f\"", "last_updated": "2021-06-04T14:08:17Z", "stargazers_count": 14, "last_fetched": 1661584927.698566, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292720530": {"repository_manifest": {"name": "Pandora Car Alarm System", "render_readme": true, "homeassistant": "2021.12.0", "country": ["RU", "BY", "KZ", "UA"]}, "full_name": "alryaz/hass-pandora-cas", "authors": ["@alryaz", "@turbo-lab"], "category": "integration", "description": "Home Assistant custom component for Pandora Car Alarm System", "domain": "pandora_cas", "etag_repository": "W/\"d995bf95b551439107739340340c0f4c765e310b797f5ca662a8662334bda11a\"", "last_updated": "2022-12-01T16:46:46Z", "stargazers_count": 20, "topics": ["car-system", "pandora-alarm", "vehicle-tracking"], "last_fetched": 1672947973.280092, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "258012483": {"repository_manifest": {"name": "Livebox TV UHD", "hacs": "0.24.0", "homeassistant": "0.110.0"}, "full_name": "AkA57/liveboxtvuhd", "authors": ["@AkA57"], "category": "integration", "description": "Livebox TV UHD custom component for Home Assistant", "domain": "liveboxtvuhd", "etag_repository": "W/\"0aa0dab4869ca7b437b833c4344af13f90c9c32e9f1e6fb144595846539aea87\"", "last_updated": "2022-01-27T21:17:31Z", "stargazers_count": 14, "topics": ["livebox"], "last_fetched": 1672947958.509619, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233575809": {"repository_manifest": {"name": "Linksys Velop Device Tracker", "homeassistant": "0.100.0"}, "full_name": "AdamNaj/linksys_velop", "authors": ["@adamnaj"], "category": "integration", "description": "The linksys_velop platform allows for presence detection by listing devices connected to your Linksys Velop router.", "domain": "linksys_velop", "etag_repository": "W/\"399827a9940b7627489acd20e1a0581bd3f817f8b4379deb4df62c1615b6b77b\"", "last_updated": "2021-05-08T21:20:15Z", "stargazers_count": 13, "last_fetched": 1641307134.406528, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197920457": {"repository_manifest": {}, "full_name": "andersonshatch/midea-ac-py", "authors": ["@andersonshatch"], "category": "integration", "description": "This is a library to allow communicating to a Midea appliance via the Midea cloud.", "domain": "midea", "etag_repository": "W/\"3e189cae9a02230afb1e99e0bd200118121790adf09081034224836eb46a8f44\"", "last_updated": "2021-03-07T12:12:17Z", "stargazers_count": 72, "topics": ["midea"], "last_fetched": 1671384826.835673, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "160728801": {"repository_manifest": {}, "full_name": "asantaga/lightwaverf_HA_EnergySensor", "authors": ["@asantaga"], "category": "integration", "description": "Home Assistant Sensor for the LightwaveRF energy monitor", "domain": "lightwaverf_energy", "etag_repository": "W/\"2af6276bcf036ddcea41b9436c916c401a964072cc0130da2f5fc2975b21d29c\"", "last_updated": "2022-05-12T10:42:13Z", "stargazers_count": 5, "topics": ["electricity", "energysensor", "lightwaverf"], "last_fetched": 1653229594.283671, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "159080189": {"repository_manifest": {"name": "Drayton Wiser Integration for Home Assistant", "homeassistant": "2022.09", "render_readme": true, "zip_release": true, "filename": "wiser.zip"}, "full_name": "asantaga/wiserHomeAssistantPlatform", "authors": ["@asantaga", "@msp1974"], "category": "integration", "description": "Platform and related climate/sensors to support the Drayton Wiser Home Heating System", "domain": "wiser", "downloads": 1476, "etag_repository": "W/\"21c643475d8956283fd62f8c82ad37e3d08ba21ec8aa252824ab079fd548c10e\"", "last_updated": "2023-01-21T18:05:44Z", "stargazers_count": 165, "topics": ["drayton", "heating", "wiser"], "last_fetched": 1674377824.033667, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201497401": {"repository_manifest": {"name": "Xiaomi IR Climate"}, "full_name": "Anonym-tsk/homeassistant-climate-xiaomi-remote", "authors": ["@anonym-tsk"], "category": "integration", "description": "Xiaomi IR Climate Component", "domain": "xiaomi_remote", "etag_repository": "W/\"89256168a525fdf45f66c2f4488128da43308a2867e60c05b7b316ab8e397f81\"", "last_updated": "2022-10-11T15:33:07Z", "stargazers_count": 30, "topics": ["climate", "xiaomi"], "last_fetched": 1671384831.030163, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190378093": {"repository_manifest": {"name": "Visonic/Bentel/Tyco Alarm System"}, "full_name": "And3rsL/VisonicAlarm-for-Hassio", "authors": ["@And3rsL"], "category": "integration", "description": "Visonic/Bentel/Tyco Alarm System integrtation for Home Assistant", "domain": "visonicalarm", "etag_repository": "W/\"95ba43104564104bf3cd4091576dcc7260bb58316050fed796f900307a076df6\"", "last_updated": "2022-04-29T12:20:46Z", "stargazers_count": 17, "topics": ["alarm", "alarm-control-panel", "bentel", "tycomonitor", "visonic"], "last_fetched": 1671384827.072906, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "186347733": {"repository_manifest": {"name": "Audi connect", "homeassistant": "0.110.0"}, "full_name": "arjenvrh/audi_connect_ha", "authors": ["@arjenvrh"], "category": "integration", "description": "Adds an audi connect integration to home assistant", "domain": "audiconnect", "etag_repository": "W/\"02ed9892cff97e48b02dbca8caea7ea702d909144e1b384b3febea068b60237a\"", "last_updated": "2022-12-21T19:01:53Z", "stargazers_count": 124, "topics": ["audi", "audi-connect", "sensors"], "last_fetched": 1674377819.936756, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "252926906": {"repository_manifest": {"name": "Uponor Smatrix Pulse", "render_readme": true}, "full_name": "asev/homeassistant-uponor", "authors": ["@asev"], "category": "integration", "description": "Uponor Smatrix Pulse heating/cooling system integration for Home Assistant.", "domain": "uponor", "etag_repository": "W/\"f233ea5c1e95d9693960de8002901b4e768169b24c90212045e0658e92e5b73f\"", "last_updated": "2022-02-09T12:50:09Z", "stargazers_count": 25, "topics": ["heating-control", "smatrix", "uponor", "uponor-smatrix-pulse"], "last_fetched": 1674377824.423115, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "296028613": {"repository_manifest": {"name": "D-Link Presence / device_Tracker", "render_readme": true}, "full_name": "ayavilevich/homeassistant-dlink-presence", "authors": ["@ayavilevich"], "category": "integration", "description": "A D-Link AP/router device tracker for Home Assistant", "domain": "dlink_presence", "etag_repository": "W/\"e3e5d1c5f1c7863e87bbe7e461c715aa9896e030b7f3dde5aa0dc0258cb16d59\"", "last_updated": "2021-08-09T11:14:30Z", "stargazers_count": 8, "topics": ["d-link", "dlink", "presence-detection"], "last_fetched": 1653229598.779481, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237695750": {"repository_manifest": {"name": "OpenNEM (AU) Data", "country": "AU"}, "full_name": "bacco007/sensor.opennem", "authors": ["@bacco007"], "category": "integration", "description": "OpenNEM Sensor for Home Assistant", "domain": "opennem", "etag_repository": "W/\"05c7767329fb805023825e82ef265123bab939e62a7fe668e7a2c411303b5a0c\"", "last_updated": "2022-03-25T07:06:22Z", "stargazers_count": 9, "topics": ["opennem"], "last_fetched": 1656859065.151651, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250866164": {"repository_manifest": {"name": "Event sensor", "homeassistant": "2021.12.0", "render_readme": true}, "full_name": "azogue/eventsensor", "authors": ["@azogue"], "category": "integration", "description": "HomeAssistant custom sensor to track specific events", "domain": "eventsensor", "etag_repository": "W/\"45d5e79f7e4beb49596976182ab44abbee008ad7b97d2f0a6d80a4153b50b8fd\"", "last_updated": "2022-10-03T21:27:08Z", "stargazers_count": 82, "last_fetched": 1665325413.969288, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223739645": {"repository_manifest": {"name": "Climate IP", "country": "NO", "homeassistant": "0.110.2"}, "full_name": "atxbyea/samsungrac", "authors": ["@SebuZet"], "category": "integration", "description": "Home Assistant Climate Device for controlling (not only) Samsung AC", "domain": "climate_ip", "etag_repository": "W/\"f2e86b84c3a0a48be49b197b44f7ee068f9beb5c3941f68c743df11940f5d614\"", "last_updated": "2023-01-16T21:17:45Z", "stargazers_count": 37, "topics": ["airconditioning", "hacktoberfest2021", "samsung"], "last_fetched": 1674377824.942968, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256899380": {"repository_manifest": {"name": "Project Three Zero (7-11 Fuel Lock Monitor)", "render_readme": true}, "full_name": "atymic/project_three_zero_ha", "authors": ["@atymic"], "category": "integration", "description": "Project Three Zero Home Assistant Integration", "domain": "project_zero_three", "etag_repository": "W/\"ea0b6abd62bf036fc3fda1402260d9ea66488e12ddab5963a4feb975f7b3145d\"", "last_updated": "2022-01-27T00:39:52Z", "stargazers_count": 4, "topics": ["fuel"], "last_fetched": 1643571221.907677, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229519365": {"repository_manifest": {"name": "WaterNSW Real Time Data", "country": "AU"}, "full_name": "bacco007/sensor.waternsw", "authors": ["@bacco007"], "category": "integration", "description": "Home Assistant Sensor for WaterNSW Real Time Data", "domain": "waternsw", "etag_repository": "W/\"ae4a499606ba3090132a83b7ff239cd2415153643b2c99d786c7c6f3b177a653\"", "last_updated": "2022-06-10T08:04:57Z", "stargazers_count": 6, "last_fetched": 1671384844.684438, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "137655647": {"repository_manifest": {}, "full_name": "bertbert72/HomeAssistant_VirginTivo", "authors": ["@bertbert72"], "category": "integration", "description": "HomeAssistant component for control of Virgin Media Tivo boxes", "domain": "virgintivo", "etag_repository": "W/\"8a3e08773ed44f46bb64e4b49d1e39e44f500ff30e5ee89faed7d6e33c6aa421\"", "last_updated": "2022-10-09T12:31:35Z", "stargazers_count": 25, "last_fetched": 1672948001.364569, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "254203764": {"repository_manifest": {"name": "Bunq balance sensor", "render_readme": true}, "full_name": "ben8p/home-assistant-bunq-balance-sensors", "authors": ["@BSantalucia"], "category": "integration", "description": "Home assistant custom component to provide monetary account balance sensors for Bunq", "domain": "bunq", "etag_repository": "W/\"a022e41ed4b11d1f3ff40a8f34b15bd1ed4a034493b9937ea62e8fb5ae8bb669\"", "last_updated": "2022-01-04T14:46:01Z", "stargazers_count": 2, "topics": ["bunq", "bunq-api"], "last_fetched": 1641470148.650331, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "181480967": {"repository_manifest": {}, "full_name": "basschipper/homeassistant-generic-hygrostat", "authors": ["@basschipper"], "category": "integration", "description": "Generic Hygrostat for Home Assistant", "domain": "generic_hygrostat", "etag_repository": "W/\"959760373daa6617982f2096ced34beba4f2bc2666be3ef86a477531cc79df62\"", "last_updated": "2022-10-23T14:26:06Z", "stargazers_count": 63, "last_fetched": 1672947998.265915, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "282688934": {"repository_manifest": {"name": "EVA II PRO WiFi Midea Inventor Dehumidifier custom integration", "homeassistant": "0.96.0"}, "full_name": "barban-dev/homeassistant-midea-dehumidifier", "authors": ["@barban-dev"], "category": "integration", "description": "Home Assistant Custom Integration for EVA II PRO WiFi Smart Dehumidifier appliance by Midea/Inventor.", "domain": "midea_dehumidifier", "etag_repository": "W/\"0da894e75823a8dcded7801b7ccf37efbee6d0d37cb9f4d9794ef5ef91f987ba\"", "last_updated": "2022-01-31T20:14:41Z", "stargazers_count": 50, "topics": ["dehumidifier", "eva-ii-pro-wifi", "internet-of-things", "inventor", "iot", "midea"], "last_fetched": 1674377830.661393, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192086849": {"repository_manifest": {}, "full_name": "bouwew/sems2mqtt", "authors": ["bouwew"], "category": "integration", "description": "GoodWe SEMS MQTT-componenent for Home Assistant", "domain": "sems2mqtt", "etag_repository": "W/\"a58f0020c590882fde08036c3819293fcba34da14ad0516587aaadef5b1612d7\"", "last_updated": "2022-03-03T07:57:14Z", "stargazers_count": 8, "last_fetched": 1672948010.818122, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "296946072": {"repository_manifest": {"homeassistant": "0.115.0", "name": "Kodi Recently Added Media", "render_readme": true}, "full_name": "boralyl/kodi-recently-added", "authors": ["@boralyl"], "category": "integration", "description": "Custom component to feed recently added tv shows and movies to the custom card \"Upcoming Media Card\" for Home Assistant. ", "domain": "kodi_recently_added", "etag_repository": "W/\"0d1ff72f6b5653a2dc4e381d7a0781dce0899c6a0a56f2aab7f96cd3df1531b4\"", "last_updated": "2021-12-19T23:48:44Z", "stargazers_count": 6, "topics": ["kodi"], "last_fetched": 1662801657.225058, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236146080": {"repository_manifest": {"name": "Solaredge Modbus", "homeassistant": "2022.7.0"}, "full_name": "binsentsu/home-assistant-solaredge-modbus", "authors": ["@binsentsu"], "category": "integration", "description": "Home assistant Component for reading data locally from Solaredge inverter through modbus TCP", "domain": "solaredge_modbus", "etag_repository": "W/\"161964c02f0889a1d115201b00a9c176b80c1701124d7e0dfc17daec3d357798\"", "last_updated": "2023-01-15T21:11:32Z", "stargazers_count": 131, "topics": ["modbus", "modbus-tcp", "solaredge", "solaredge-inverter"], "last_fetched": 1674377837.281903, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250688607": {"repository_manifest": {"homeassistant": "0.108.0", "name": "Steam Wishlist", "render_readme": true}, "full_name": "boralyl/steam-wishlist", "authors": ["@boralyl"], "category": "integration", "description": "A home assistant integration that monitors games on sale on your Steam wishlist.", "domain": "steam_wishlist", "etag_repository": "W/\"986c51d6a05efcb5db96dbf660e3c357447082faafe11b608bf538db42ace500\"", "last_updated": "2022-06-12T18:21:41Z", "stargazers_count": 16, "topics": ["steam"], "last_fetched": 1661584977.909844, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "162808336": {"repository_manifest": {"name": "Lightwave RF"}, "full_name": "bigbadblunt/homeassistant-lightwave2", "authors": ["@bigbadblunt"], "category": "integration", "description": "Lightwave RF custom component for Home Assistant. Requires generation 2 (\"Link Plus\") hub, but will control both generation 1 (\"Connect Series\") and generation 2 (\"Smart Series\") devices.", "domain": "lightwave2", "etag_repository": "W/\"05a66e19cb9624214fa19c78a32fc34cd6dad2a17160aea9bfce870069abbb3b\"", "last_updated": "2023-01-08T10:48:41Z", "stargazers_count": 35, "topics": ["lightwave", "lightwaverf"], "last_fetched": 1674377836.468258, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260169906": {"repository_manifest": {"name": "Luxtronik", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "Bouni/luxtronik", "authors": ["@bouni"], "category": "integration", "description": "Luxtronik integration for Home Assistant", "domain": "luxtronik", "etag_repository": "W/\"8fdab5edde3469cd17b791b49d29580350c31db527ccbe604c8eca36b3fbfd71\"", "last_updated": "2023-01-06T14:14:05Z", "stargazers_count": 50, "topics": ["luxtronik", "luxtronik2"], "last_fetched": 1674377844.532978, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190260955": {"repository_manifest": {"name": "MIND Mobility", "country": "NL", "render_readme": true}, "full_name": "bramkragten/mind", "authors": ["@bramkragten"], "category": "integration", "description": "Add support for Mind Mobility vehicles in Home Assistant", "domain": "mind", "etag_repository": "W/\"a5c0237439d05a5353bfa99e20ce7509165ae9743d05a544ece9229ede619faa\"", "last_updated": "2021-05-07T13:37:44Z", "stargazers_count": 9, "last_fetched": 1665325431.492037, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259865897": {"repository_manifest": {"name": "DRK Blutspende", "country": ["DE"], "render_readme": true}, "full_name": "Bouni/drkblutspende", "authors": ["Bouni"], "category": "integration", "description": "DRK Blutspende component for Home Assistant ", "domain": "drkblutspende", "etag_repository": "W/\"acb23cb2e48a20f9ac686e5411c126b5ce6746a00c7f56cfca9709e2082013a3\"", "last_updated": "2022-02-23T08:06:00Z", "stargazers_count": 4, "topics": ["blutspende", "drk"], "last_fetched": 1646496790.364655, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "189680764": {"repository_manifest": {}, "full_name": "burnnat/media_player.screenly", "category": "integration", "description": "Screenly media player custom component for Home Assistant.", "domain": "screenly", "etag_repository": "W/\"b028cbcd074a688327e8c9e6d0897dd8840a6238cb51c903ef309879293707ec\"", "last_updated": "2019-09-27T05:19:26Z", "stargazers_count": 3, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201445202": {"repository_manifest": {"name": "ACV garbage collection sensor", "render_readme": true, "country": ["NL"]}, "full_name": "Cadsters/acv-hass-component", "authors": ["@floriskruisselbrink", "@Cadsters", "@aritmeester"], "category": "integration", "description": "\ud83d\uddd1\ufe0f Integration for bin/waste collection by acv-groep", "domain": "acv", "etag_repository": "W/\"301b223198d2dc87356def05fdc06bd27e7d932b0a277479e4f80ca4751c78e4\"", "last_updated": "2022-05-30T13:17:35Z", "stargazers_count": 4, "topics": ["acv-groep", "python3", "trash", "waste"], "last_fetched": 1671274665.680585, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262854926": {"repository_manifest": {"name": "Meteobridge Datalogger Integration", "render_readme": true, "homeassistant": "2022.11.0"}, "full_name": "briis/meteobridge", "authors": ["@briis"], "category": "integration", "description": "The Meteobridge Integration adds support for retrieving current weather data from a Meteobridge datalogger connected to a local Weather Station.", "domain": "meteobridge", "etag_repository": "W/\"0e3dc219282ea1e896afc177e212a8fd55158e36dc9aeef6282bc44c7ef7680a\"", "last_updated": "2022-11-16T06:58:41Z", "stargazers_count": 7, "topics": ["meteobridge"], "last_fetched": 1671384864.494365, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "284006518": {"repository_manifest": {"name": "Bonaire MyClimate", "render_readme": "true", "homeassistant": "2021.12.0"}, "full_name": "bremor/bonaire_myclimate", "authors": ["@bremor"], "category": "integration", "description": "Reverse engineered implementation of the Bonaire MyClimate app.", "domain": "bonaire_myclimate", "etag_repository": "W/\"5058fdf5f86c54ecef7b29a2d63308270f3379e5d9ca659cb122345e6d72293d\"", "last_updated": "2022-08-08T20:42:19Z", "stargazers_count": 15, "topics": ["bonaire", "bonaire-myclimate", "climate", "myclimate"], "last_fetched": 1672948014.065269, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229872760": {"repository_manifest": {"name": "Fitness Push"}, "full_name": "burnnat/ha-fitness-push", "category": "integration", "description": "Home Assistant integration to push fitness data to remote services.", "domain": "fitness_push", "etag_repository": "W/\"62361253781aeddcf0352876ad36c5b120f856841ee5e5582e63304ee9c06ea2\"", "last_updated": "2020-01-24T00:27:12Z", "stargazers_count": 1, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "204200635": {"repository_manifest": {"name": "Garbage Collection", "zip_release": true, "filename": "garbage_collection.zip", "homeassistant": "2022.12.0b0"}, "full_name": "bruxy70/Garbage-Collection", "authors": ["@bruxy70"], "category": "integration", "description": "\ud83d\uddd1 Custom Home Assistant sensor for scheduling garbage collection (or other regularly re-occurring events - weekly on given days, semi-weekly or monthly)", "domain": "garbage_collection", "downloads": 9872, "etag_repository": "W/\"89a6b96e568ff01d8b7487f4d16d31bdd539964f5a5ccfe863918eb44c9e8045\"", "last_updated": "2022-12-28T18:44:30Z", "stargazers_count": 339, "topics": ["garbage-collection", "schedule", "waste", "waste-management"], "last_fetched": 1674377853.354795, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262017793": {"repository_manifest": {"name": "Switchbot_press", "render_readme": true}, "full_name": "cagnulein/switchbot_press", "authors": ["@cagnulein"], "category": "integration", "description": "This is a simple project that manage the Switchbot ( https://amzn.to/3dnliBD ) that has only the \"press\" ability in Home Assistant.", "domain": "switchbot_press", "etag_repository": "W/\"b4d9a81bd079dcfbc4e4615549bd61fad56d403a496c7163fb4b514f4b0d23f6\"", "last_updated": "2022-05-05T04:19:21Z", "stargazers_count": 12, "topics": ["python3", "switchbot"], "last_fetched": 1656859091.013717, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202990294": {"repository_manifest": {"name": "CZ Public Transport", "homeassistant": "0.109.0", "zip_release": true, "filename": "cz_pub_tran.zip", "country": "CZ"}, "full_name": "bruxy70/CZ-Public-Transport", "authors": ["@bruxy70"], "category": "integration", "description": "\ud83d\ude8d Home Assistant custom sensor for finding Czech Public Transportation Connections", "domain": "cz_pub_tran", "downloads": 301, "etag_repository": "W/\"086f1e02554b010a53f76b28b227427cfd709169c4b9b010a876b6041663e9c2\"", "last_updated": "2022-06-01T20:40:21Z", "stargazers_count": 11, "topics": ["chaps", "crws", "departure-times", "idos", "public-transportation"], "last_fetched": 1672948018.29627, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261970408": {"repository_manifest": {"name": "Weatherbit Weather Forecast for Home Assistant", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "briis/weatherbit", "authors": ["@briis"], "category": "integration", "description": "The weatherbit integration adds support for the weatherbit.io web service as a source for meteorological data for your location.", "domain": "weatherbit", "etag_repository": "W/\"613bb307afa5cd74df8f77ad7f6e458de64352d3238cbdc5c38650b30c0896a1\"", "last_updated": "2023-01-08T11:47:29Z", "stargazers_count": 36, "topics": ["meteorological-data", "weather-forecast", "weatherbit"], "last_fetched": 1674377852.119791, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "210269734": {"repository_manifest": {"name": "HDHomeRun"}, "full_name": "burnnat/ha-hdhomerun", "category": "integration", "description": "HDHomeRun integration for Home Assistant.", "domain": "hdhomerun", "etag_repository": "W/\"e41ec5355213a6063702d2222aedf8659813dbddc198e69a1007a19f156782fe\"", "last_updated": "2021-07-12T21:00:20Z", "stargazers_count": 11, "last_fetched": 1657362659.864132, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207620142": {"repository_manifest": {"name": "DPC sensor", "country": ["IT", "VA", "SM"]}, "full_name": "caiosweet/Home-Assistant-custom-components-DPC-Alert", "authors": ["@caiosweet"], "category": "integration", "description": "Italy Meteo-hydro alert and hydrogeological phenomena Civil Protection (Protezione Civile). In this custom component you can find the vigilance Bulletin and the Bulletin of national hydrogeological and hydraulic criticalities. They allow to check whether in your current location there will be criticalities/warnings related to weather-hydrogeological and hydraulic phenomena. Weather forecasts for civil protection purposes differs from the classic \"weather forecasts\". They highlight potentially harmful situations to people or things. This component was created for personal purposes, in order to be able to monitor the Civil Protection site and check for important updates. I hope it will be useful to you.", "domain": "dpc", "etag_repository": "W/\"ac0a4adc013de42d15a00378f916b7a4af8cdfbfa0fd690d31e7e4244329f63a\"", "last_updated": "2022-06-20T14:53:10Z", "stargazers_count": 34, "topics": ["dpc", "protezionecivile"], "last_fetched": 1671384872.655159, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "179347477": {"repository_manifest": {"name": "Circadian Lighting"}, "full_name": "claytonjn/hass-circadian_lighting", "authors": ["@claytonjn"], "category": "integration", "description": "Circadian Lighting custom component for Home Assistant", "domain": "circadian_lighting", "etag_repository": "W/\"68005b36e3ff8781fceb9715cbeb9f15e657f13c83cea71c7a21c9bfaf946aaf\"", "last_updated": "2022-11-03T23:03:51Z", "stargazers_count": 622, "topics": ["circadian", "circadian-rhythms", "lighting", "sleep", "wellness"], "last_fetched": 1674377867.020097, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195594888": {"repository_manifest": {"name": "Sinope GT125", "filename": false, "render_readme": true, "country": ["CA"], "homeassistant": "0.110.0"}, "full_name": "claudegel/sinope-gt125", "authors": ["@claudegel"], "category": "integration", "description": "Sinope custom component for Home Assistant to manage Sinop\u00e9 devices directly via the GT125 gateway", "domain": "sinope", "etag_repository": "W/\"71ad37e3a28c11e256b1005dd75f8ae991d0ea8f1b7b680b26fc87fcf3645019\"", "last_updated": "2022-04-09T02:44:10Z", "stargazers_count": 14, "topics": ["sinope"], "last_fetched": 1671384881.123141, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "127689312": {"repository_manifest": {"name": "Sinope Neviweb", "filename": false, "render_readme": true, "country": ["CA"], "homeassistant": "0.110.0"}, "full_name": "claudegel/sinope-1", "authors": ["@claudegel"], "category": "integration", "description": "Neviweb Custom Component for Home Assistant to manage devices connected via GT125", "domain": "neviweb", "etag_repository": "W/\"7da3f84956514d7b388b93e043ba3c7f9404db57c1713926f0563de487de6832\"", "last_updated": "2023-01-20T03:23:23Z", "stargazers_count": 21, "topics": ["neviweb", "sinope"], "last_fetched": 1674377865.025482, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "139892990": {"repository_manifest": {"name": "BrewDog", "render_readme": true}, "full_name": "custom-components/brewdog", "authors": ["@ludeeus"], "category": "integration", "description": "\ud83c\udf7b Display information about random beers from Brewdog as a sensor in Home Assistant, you can use this in a push notification next time you visit a bar.", "domain": "brewdog", "etag_repository": "W/\"85b2f4992733e20203324c50f000a4ecff740e59908dadd23c929a57f53118a4\"", "last_updated": "2022-03-11T08:08:33Z", "stargazers_count": 3, "topics": ["api", "brewdog", "punkapi"], "last_fetched": 1648399864.935171, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "139664351": {"repository_manifest": {"name": "Alexa Media Player", "zip_release": true, "filename": "alexa_media.zip", "homeassistant": "2022.3.0b0"}, "full_name": "custom-components/alexa_media_player", "authors": ["@alandtse", "@keatontaylor"], "category": "integration", "description": "This is a custom component to allow control of Amazon Alexa devices in Home Assistant using the unofficial Alexa API.", "domain": "alexa_media", "downloads": 10892, "etag_repository": "W/\"e66d7245843d9e4b852f22a1dc1e33eb04300b8a59bd3192f3f40d6a799aa124\"", "last_updated": "2023-01-16T16:59:54Z", "stargazers_count": 1019, "topics": ["alexa"], "last_fetched": 1674377871.422208, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224560492": {"repository_manifest": {"name": "Sinope Neviweb130", "filename": false, "render_readme": true, "country": ["CA"], "homeassistant": "2021.12.1"}, "full_name": "claudegel/sinope-130", "authors": ["@claudegel"], "category": "integration", "description": "Neviweb custom component for Home Assistant to manage devices connected via a GT130 and wifi devices from Sinop\u00e9", "domain": "neviweb130", "etag_repository": "W/\"f6a6e3647d52d5b9009efccb53e9941f5d979e178a639e082cf66bad3360519d\"", "last_updated": "2023-01-13T01:24:08Z", "stargazers_count": 33, "topics": ["neviweb", "sinope"], "last_fetched": 1674377866.377389, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146510412": {"repository_manifest": {"name": "ICY E-thermostaat", "zip_release": true, "filename": "combined.zip", "hide_default_branch": true, "homeassistant": "0.96.0"}, "full_name": "custom-components/climate.e_thermostaat", "authors": ["@gerard33"], "category": "integration", "description": "E-Thermostaat (ICY) component for Home Assistant", "domain": "e_thermostaat", "downloads": 31, "etag_repository": "W/\"df7a9e3a9adbc197cbdc28c3f3a76824d3cf9514e6f2aa1f8782184c46456a79\"", "last_updated": "2022-06-26T16:35:51Z", "stargazers_count": 3, "topics": ["e-thermostaat", "icy"], "last_fetched": 1656859103.68526, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "173563704": {"repository_manifest": {}, "full_name": "custom-components/climate.programmable_thermostat", "category": "integration", "description": "Programmable thermostat that let you have a smart thermostat on budget.", "domain": "programmable_thermostat", "etag_repository": "W/\"b3367a495568e8ae37aa40b3a2270d5d70b211293fd3f996e249418c522b06a7\"", "last_updated": "2022-11-09T16:30:24Z", "stargazers_count": 103, "last_fetched": 1674377873.70568, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209854868": {"repository_manifest": {"name": "FedEx", "country": "US"}, "full_name": "custom-components/fedex", "category": "integration", "description": "The fedex platform allows one to track deliveries by FedEx", "domain": "fedex", "etag_repository": "W/\"6de65545cb6885425b88bedd017d47bca69a106336c6e1f37ab4a15220d29374\"", "last_updated": "2020-01-18T17:31:45Z", "stargazers_count": 5, "last_fetched": 1661585007.883075, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "145180996": {"repository_manifest": {"name": "Feedparser", "homeassistant": "2021.4.0", "render_readme": true}, "full_name": "custom-components/feedparser", "authors": ["@iantrich"], "category": "integration", "description": "\ud83d\udcf0 RSS Feed Integration", "domain": "feedparser", "etag_repository": "W/\"7ce020644b7927b0760f62a30341a340056e2bc4088ff3833ed10daef5f10d4e\"", "last_updated": "2022-01-31T14:09:21Z", "stargazers_count": 90, "last_fetched": 1674377875.200321, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201963665": {"repository_manifest": {"name": "Healthchecks.io", "zip_release": true, "hide_default_branch": true, "filename": "healthchecksio.zip"}, "full_name": "custom-components/healthchecksio", "authors": ["@ludeeus"], "category": "integration", "description": "Update and display the status of your healthchecks.io checks.", "domain": "healthchecksio", "downloads": 916, "etag_repository": "W/\"c02b237c862aa3a21d14e85d1b7b073aeddaeacd4cf7409fe67653afbd6f7aa4\"", "last_updated": "2022-07-29T04:17:16Z", "stargazers_count": 36, "topics": ["api-client", "healthchecksio", "monitor"], "last_fetched": 1671384889.805385, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "131915802": {"repository_manifest": {"name": "Places", "render_readme": true, "hide_default_branch": true}, "full_name": "custom-components/places", "authors": ["@tenly2000", "@iantrich"], "category": "integration", "description": "Component to integrate with OpenStreetMap Reverse Geocode (places)", "domain": "places", "etag_repository": "W/\"e9dffb3dfb8176d650cad29c80b07573c0696297d3f9b23fa6e7f1bb41c63124\"", "last_updated": "2022-12-01T00:06:26Z", "stargazers_count": 74, "topics": ["device-tracker", "geolocation", "openstreetmap"], "last_fetched": 1671384892.579982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201805130": {"repository_manifest": {"name": "nordpool", "render_readme": true}, "full_name": "custom-components/nordpool", "authors": ["@hellowlol"], "category": "integration", "description": "This component allows you to pull in the energy prices into Home-Assistant.", "domain": "nordpool", "etag_repository": "W/\"95b980a1c7af35f7c15a9ec4d6e3bbdf1f344f88b4f113ef63e3ddf3c470d95c\"", "last_updated": "2023-01-14T10:49:52Z", "stargazers_count": 266, "topics": ["energy-prices", "nordpool"], "last_fetched": 1674377878.153089, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "176018567": {"repository_manifest": {"name": "gPodder", "render_readme": true, "zip_release": true, "hide_default_branch": true, "hacs": "0.19.0", "filename": "gpodder.zip"}, "full_name": "custom-components/gpodder", "authors": ["@iantrich"], "category": "integration", "description": "\ud83c\udfa7 gPodder Integration for Podcast Feed Monitoring", "domain": "gpodder", "downloads": 261, "etag_repository": "W/\"796bb09fce04c7df2dc3504b6834fdb6366335c81a90d25eb629f953cf6b08e7\"", "last_updated": "2021-06-05T21:16:30Z", "stargazers_count": 11, "last_fetched": 1657362676.485116, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "184404372": {"repository_manifest": {}, "full_name": "custom-components/qbo", "authors": ["@SebRut"], "category": "integration", "description": null, "domain": "qbo", "etag_repository": "W/\"25326cafd527a5b1a4c182637275b3f8f1ef1175f346aa104401ed963888eb1e\"", "last_updated": "2019-05-26T13:38:57Z", "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209855108": {"repository_manifest": {"name": "linksys_ap"}, "full_name": "custom-components/linksys_ap", "category": "integration", "description": "The linksys_ap platform offers presence detection by looking at connected devices to a Linksys based access point.", "domain": "linksys_ap", "etag_repository": "W/\"97b25b23c86ec22a60c44348f803fe89bcc597e68d81bd188c788720c323c272\"", "last_updated": "2019-09-20T18:28:36Z", "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "178101579": {"repository_manifest": {}, "full_name": "custom-components/sensor.airthings_wave", "authors": ["@MartyTremblay"], "category": "integration", "description": "hassio support for Airthings Wave BLE environmental radon sensor.", "domain": "airthings_wave", "etag_repository": "W/\"490c8118bd3bb43759d523c7c32f40057f15fa5b0d2889f31b29203dd502c23d\"", "last_updated": "2022-11-03T17:25:53Z", "stargazers_count": 99, "topics": ["airthings-wave", "bluetooth-low-energy", "btle", "environmental", "radon"], "last_fetched": 1672948047.116366, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283847957": {"repository_manifest": {"name": "pyscript", "zip_release": true, "filename": "hass-custom-pyscript.zip"}, "full_name": "custom-components/pyscript", "authors": ["@craigbarratt"], "category": "integration", "description": "Pyscript adds rich Python scripting to HASS", "domain": "pyscript", "downloads": 11207, "etag_repository": "W/\"d1f2c879077282aba5791c9eccdcdd4d2d00ffa8230b0b056a257fe21af451e9\"", "last_updated": "2023-01-01T08:38:11Z", "stargazers_count": 566, "topics": ["jupyter"], "last_fetched": 1674377879.244932, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "182915754": {"repository_manifest": {"name": "Grocy custom component", "render_readme": true, "zip_release": true, "hide_default_branch": true, "homeassistant": "2021.12.0", "filename": "grocy.zip"}, "full_name": "custom-components/grocy", "authors": ["@SebRut", "@isabellaalstrom"], "category": "integration", "description": "Custom Grocy integration for Home Assistant", "domain": "grocy", "downloads": 2701, "etag_repository": "W/\"32a8345c61c90110269874d0cb71ea181d605fe8ebca0128ccac38a7dc495a2f\"", "last_updated": "2022-09-24T11:02:29Z", "stargazers_count": 90, "topics": ["grocy"], "last_fetched": 1674377875.644689, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "173564471": {"repository_manifest": {}, "full_name": "custom-components/sensor.file_restore", "category": "integration", "description": "Improved file sensor component that let you read the whole last line content.", "domain": "file_restore", "etag_repository": "W/\"405d628482725bc0607c1196627e526101d4365ccf6d3037b7d3cd7195e802a6\"", "last_updated": "2021-03-20T08:09:50Z", "stargazers_count": 11, "last_fetched": 1672948049.74403, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "174809046": {"repository_manifest": {"name": "Avanza Stock", "render_readme": true}, "full_name": "custom-components/sensor.avanza_stock", "authors": ["@claha"], "category": "integration", "description": "Custom component to get stock data from Avanza for Home Assistant", "domain": "avanza_stock", "etag_repository": "W/\"08c72c8b18bbefb23a667ad15afe76a19b3b96a299c92992a725177bf07100d2\"", "last_updated": "2023-01-12T22:32:36Z", "stargazers_count": 33, "topics": ["funds", "stock"], "last_fetched": 1674377881.996495, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207110572": {"repository_manifest": {"name": "Avfallsor", "country": "NOR", "homeassistant": "0.96.0", "render_readme": true}, "full_name": "custom-components/sensor.avfallsor", "authors": ["@hellowlol"], "category": "integration", "description": "Simple sensor for avfallsor", "domain": "avfallsor", "etag_repository": "W/\"84eb1296fe7414a834bf4cd5f1ec61e9e48008d3d489ac480cf7fdf7c587fe68\"", "last_updated": "2022-11-09T18:49:56Z", "stargazers_count": 7, "last_fetched": 1671384896.013453, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "145777833": {"repository_manifest": {}, "full_name": "custom-components/sensor.personalcapital", "authors": ["@iantrich"], "category": "integration", "description": "\ud83d\udcb5 Personal Capital Integration for Bank Account Monitoring", "domain": "personalcapital", "etag_repository": "W/\"a14bc3cc7cf0584e0c9cacc9451f2a3891a952dee19a6d3cc2a447995ec87d11\"", "last_updated": "2021-06-05T21:15:20Z", "stargazers_count": 12, "last_fetched": 1641895547.723645, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151550084": {"repository_manifest": {}, "full_name": "custom-components/sensor.owlintuition", "authors": ["@glpatcern"], "category": "integration", "description": "A set of sensors to integrate the OWL Intuition devices network", "domain": "owlintuition", "etag_repository": "W/\"2be7cc81c7f3eb033b79f7a64b7b56a4c841557d0495dc2c32ea91a75c776bde\"", "last_updated": "2022-05-07T13:58:07Z", "stargazers_count": 10, "last_fetched": 1653229651.67981, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195438291": {"repository_manifest": {"name": "Nintendo Wishlist", "render_readme": true, "homeassistant": "0.118.5"}, "full_name": "custom-components/sensor.nintendo_wishlist", "authors": ["@boralyl"], "category": "integration", "description": "A sensor that monitors a Nintendo Switch wish list for when games are on sale.", "domain": "nintendo_wishlist", "etag_repository": "W/\"0461ee57ec9f6cacd7e042070da4fe72a3f9d03527ef55254ef72fd02894fe5e\"", "last_updated": "2022-07-06T02:11:39Z", "stargazers_count": 12, "topics": ["nintendo-switch"], "last_fetched": 1665325468.593318, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "154845921": {"repository_manifest": {}, "full_name": "custom-components/sensor.ssh", "authors": ["@jchasey"], "category": "integration", "description": "SSH Generic Sensor", "domain": "ssh", "etag_repository": "W/\"d4e4975afb09f3592cb0dc9ed348d088406933235ec30884e73128995e5036fd\"", "last_updated": "2021-12-04T08:45:38Z", "stargazers_count": 33, "last_fetched": 1665325469.535635, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151580533": {"repository_manifest": {}, "full_name": "custom-components/sensor.unifigateway", "authors": ["@jchasey"], "category": "integration", "description": "High level health status of UniFi Security Gateway devices via UniFi Controller", "domain": "unifigateway", "etag_repository": "W/\"d79d76a99abb8be9d89e1d6bbd03ac2e32cd46c0a7ee65216c9ea7157ceee9f1\"", "last_updated": "2021-04-19T12:12:56Z", "stargazers_count": 115, "last_fetched": 1674377887.446675, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199888538": {"repository_manifest": {"name": "Stadtreinigung Hamburg", "country": "DE", "homeassistant": "0.109.0", "zip_release": true, "filename": "stadtreinigung_hamburg.zip"}, "full_name": "custom-components/sensor.stadtreinigung_hamburg", "authors": ["@vigonotion"], "category": "integration", "description": "Stadtreinigung Hamburg - get garbage collection dates in Hamburg - custom component for Home Assistant", "domain": "stadtreinigung_hamburg", "downloads": 136, "etag_repository": "W/\"b7143bfdab3c6d2abd5f585764d72ed7268d96df34e45d8f44cf092667b6f133\"", "last_updated": "2022-08-08T08:48:52Z", "stargazers_count": 18, "last_fetched": 1666451244.724401, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "140146868": {"repository_manifest": {}, "full_name": "custom-components/sensor.untappd", "authors": ["@iantrich", "@swetoast"], "category": "integration", "description": "\ud83c\udf7b Untappd Integration", "domain": "untappd", "etag_repository": "W/\"f864abbb20339fb3ffa11d1fc53429323c37fee7b4a3353b06015445128d8ffc\"", "last_updated": "2022-04-28T11:17:02Z", "stargazers_count": 35, "topics": ["automations", "badges", "beer", "untappd", "untappd-api"], "last_fetched": 1671384901.443357, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146379582": {"repository_manifest": {"name": "Trakt", "homeassistant": "0.99.0", "render_readme": true}, "full_name": "custom-components/sensor.trakt", "authors": ["@iantrich", "@engrbm"], "category": "integration", "description": "\ud83d\udcfa Trakt Integration for Upcoming Media Card", "domain": "trakt", "etag_repository": "W/\"158ce4b258c7046481201c391b2c0c6147350ab064a6e40cc785bd5fb7da1a27\"", "last_updated": "2022-06-21T14:17:46Z", "stargazers_count": 54, "last_fetched": 1674377886.781081, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209855274": {"repository_manifest": {"name": "SRP Energy Sensor", "country": ["US"]}, "full_name": "custom-components/srp_energy", "category": "integration", "description": "The srp_energy integration shows information from Srp hourly energy usage report for their customers", "domain": "srp_energy", "etag_repository": "W/\"a5bc02ffe772dbb7265185d5433d66486a64b9d74cdf4175b261ce82dc66264f\"", "last_updated": "2020-12-16T23:22:01Z", "stargazers_count": 2, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "171854441": {"repository_manifest": {"name": "youtube", "zip_release": true, "filename": "youtube.zip", "homeassistant": "2021.4.0"}, "full_name": "custom-components/youtube", "authors": ["@ludeeus"], "category": "integration", "description": "A platform which give you info about the newest video on a channel", "domain": "youtube", "downloads": 1034, "etag_repository": "W/\"583ca7ba217174f70a07cddce1fda3743f0e9ef7099ee2d74364b80b8f27232b\"", "last_updated": "2022-07-30T08:09:26Z", "stargazers_count": 36, "topics": ["youtube"], "last_fetched": 1665325474.865134, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209855510": {"repository_manifest": {"name": "Sytadin", "country": ["FR"]}, "full_name": "custom-components/sytadin", "category": "integration", "description": "The sytadin sensor platform allows you to monitor traffic details from Sytadin", "domain": "sytadin", "etag_repository": "W/\"e350d94702ce10fe4acc0359969c2d99d719a4fe057775f6993380fd4ddd51ea\"", "last_updated": "2021-11-18T01:03:59Z", "stargazers_count": 1, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209855666": {"repository_manifest": {"name": "UPS", "country": "US"}, "full_name": "custom-components/ups", "category": "integration", "description": "The ups platform allows one to track deliveries by the UPS", "domain": "ups", "etag_repository": "W/\"136c99e7ca204711ed5b028ebf5bc2d14d87fa20979f5c77bde2393d0671c574\"", "last_updated": "2021-05-19T10:28:06Z", "stargazers_count": 5, "last_fetched": 1662801704.206685, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "139894340": {"repository_manifest": {"name": "Weatheralerts", "render_readme": true, "country": "US"}, "full_name": "custom-components/weatheralerts", "authors": ["@ludeeus", "@jlverhagen"], "category": "integration", "description": "A sensor that gives you weather alerts from alerts.weather.gov.", "domain": "weatheralerts", "etag_repository": "W/\"ec49dd5b4a0f7ee9e32c5a442b33b11d02a013b16c5ec5118343a369c1e1e4bc\"", "last_updated": "2022-06-25T01:40:30Z", "stargazers_count": 93, "topics": ["weatheralerts"], "last_fetched": 1672948056.08202, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180651910": {"repository_manifest": {}, "full_name": "custom-components/zaptec", "authors": ["hellowlol"], "category": "integration", "description": "zaptec charger custom component for home assistant", "domain": "zaptec", "etag_repository": "W/\"995d929b235653d100d80e756b3aa880ec6c9d5930168f5eb83ce51e5336ef6a\"", "last_updated": "2022-12-14T12:41:08Z", "stargazers_count": 14, "topics": ["api", "zaptec"], "last_fetched": 1671384903.877366, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228604799": {"repository_manifest": {"name": "Arpscan Device Tracker", "country": "NL"}, "full_name": "cyberjunky/home-assistant-arpscan_tracker", "authors": ["@cyberjunky"], "category": "integration", "description": "This component tracks devices using the arp-scan liinux command, it's very fast, and reasonably accurate.", "domain": "arpscan_tracker", "etag_repository": "W/\"1c325433ffbfdd5805ae7f78d06feca637aa207452cd3a03fb5e14e332e56ee3\"", "last_updated": "2021-02-21T17:03:43Z", "stargazers_count": 18, "last_fetched": 1671384905.319681, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228649088": {"repository_manifest": {"name": "P2000 Sensor", "country": "NL"}, "full_name": "cyberjunky/home-assistant-p2000", "authors": ["@cyberjunky"], "category": "integration", "description": ":fire_engine: This component tracks P2000 emergency events in The Netherlands.", "domain": "p2000", "etag_repository": "W/\"7c470a56e394004a13cfedc646d4cac64a1df957abbc32f9067e2044b85232ec\"", "last_updated": "2022-12-31T13:58:27Z", "stargazers_count": 45, "topics": ["emergency", "p2000"], "last_fetched": 1672948059.051833, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228618998": {"repository_manifest": {"name": "Plugwise", "country": ["NL"]}, "full_name": "cyberjunky/home-assistant-plugwise", "authors": ["@cyberjunky"], "category": "integration", "description": ":electric_plug: This component can read values from and control Plugwise circles and plugs.", "domain": "plugwise", "etag_repository": "W/\"680d99964c3533ae6aa8de3976e9975049add5e75ceeaf05dd4e84101233e42b\"", "last_updated": "2020-07-08T06:34:47Z", "stargazers_count": 2, "topics": ["plugwise", "power"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228627470": {"repository_manifest": {"name": "HVCGroep", "country": "NL"}, "full_name": "cyberjunky/home-assistant-hvcgroep", "authors": ["@cyberjunky"], "category": "integration", "description": ":recycle: :wastebasket: This component fetches garbage pickup dates for parts of The Netherlands using HVC Groep's REST API.", "domain": "hvcgroep", "etag_repository": "W/\"57479a8d1020b2948b67651fc8fd14d78a088beb715a3cb30532d5282b8b6368\"", "last_updated": "2022-05-03T05:47:55Z", "stargazers_count": 9, "last_fetched": 1653229663.911464, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228662926": {"repository_manifest": {"name": "Toon Climate", "country": "NL"}, "full_name": "cyberjunky/home-assistant-toon_climate", "authors": ["@cyberjunky"], "category": "integration", "description": "This component provides a climate device for rooted Toon thermostats.", "domain": "toon_climate", "etag_repository": "W/\"70d547a4ff803868a9356bb38a097a47f0d17431daf79051eb2877d2070916ce\"", "last_updated": "2022-11-24T20:30:08Z", "stargazers_count": 24, "last_fetched": 1671384908.172849, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228685436": {"repository_manifest": {"name": "Toon Boiler Status"}, "full_name": "cyberjunky/home-assistant-toon_boilerstatus", "authors": ["@cyberjunky"], "category": "integration", "description": "This component reads and displays the boiler status values from a rooted Toon thermostat.", "domain": "toon_boilerstatus", "etag_repository": "W/\"96029a7086df08f60414c5ecc27ac8f227a64d1a0f96a2d51cedab1de51cc15e\"", "last_updated": "2023-01-04T12:20:20Z", "stargazers_count": 11, "topics": ["cv", "opentherm", "toon"], "last_fetched": 1674377893.693908, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228678807": {"repository_manifest": {"name": "Toon Smart Meter", "country": "NL"}, "full_name": "cyberjunky/home-assistant-toon_smartmeter", "authors": ["@cyberjunky"], "category": "integration", "description": "This component reads and displays sensor values from the meteradapter connected to a rooted Toon thermostat.", "domain": "toon_smartmeter", "etag_repository": "W/\"714addcc6e456856cb87bde19aa033becd9f2f58bd82051d29aae97f4a82653e\"", "last_updated": "2022-11-08T08:37:20Z", "stargazers_count": 16, "last_fetched": 1671384909.285592, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228690854": {"repository_manifest": {"name": "TTN Gateway Sensor", "country": "NL"}, "full_name": "cyberjunky/home-assistant-ttn_gateway", "authors": ["@cyberjunky"], "category": "integration", "description": "This components reads statistics from a The Things Network Gateway.", "domain": "ttn_gateway", "etag_repository": "W/\"1e83dda384aa58268644570a08c298cbc19d5282008c105d483a6028ab793547\"", "last_updated": "2021-12-18T16:52:03Z", "stargazers_count": 2, "last_fetched": 1656859128.161735, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220661494": {"repository_manifest": {"name": "Orange Livebox routeur", "country": "FR", "homeassistant": "0.109", "render_readme": true}, "full_name": "Cyr-ius/hass-livebox-component", "authors": ["@cyr-ius"], "category": "integration", "description": "Livebox Component for Home assistant", "domain": "livebox", "etag_repository": "W/\"c17fee019ca9d4f97e47861b1f7076c72c97216e06881c37bf50e397b6cecdd4\"", "last_updated": "2022-12-18T12:53:41Z", "stargazers_count": 30, "topics": ["livebox", "orange"], "last_fetched": 1674377896.006209, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "297379398": {"repository_manifest": {"name": "Tractive"}, "full_name": "Danielhiversen/home_assistant_tractive", "authors": ["@danielhiversen"], "category": "integration", "description": "Custom component for Tractive", "domain": "tractive", "etag_repository": "W/\"0394384d7044af5a8cd00a65e5bedc1edc8a32bc23cb802e5fe6d881ad2d1bb9\"", "last_updated": "2021-12-20T09:30:02Z", "stargazers_count": 33, "topics": ["tractive"], "last_fetched": 1672948067.070623, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "293843053": {"repository_manifest": {"name": "Adax heaters"}, "full_name": "Danielhiversen/home_assistant_adax", "authors": ["@danielhiversen"], "category": "integration", "description": "Integration for Adax heaters", "domain": "adax", "etag_repository": "W/\"6920c043418a74abd21cb27596fcd1a4225d72040dccd15f065bc8b0e452b681\"", "last_updated": "2021-04-28T05:30:29Z", "stargazers_count": 26, "topics": ["adax", "adax-heaters"], "last_fetched": 1672948066.695669, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "158194879": {"repository_manifest": {"name": "Entity Controller", "homeassistant": "2022.7.4"}, "full_name": "danobot/entity-controller", "authors": ["@danobot"], "category": "integration", "description": "Entity and lighting controller for managing devices via timers, scripts, and sun-based time restrictions.", "domain": "entity_controller", "etag_repository": "W/\"55485146f8a0b0f8c442793814821304d06362bd46d54a5f5d4197e35067cb08\"", "last_updated": "2022-11-23T13:33:17Z", "stargazers_count": 210, "topics": ["finite-state-machine", "internet-of-things", "iot", "lighting-controller", "motion-light", "motion-sensor"], "last_fetched": 1674377904.636904, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195459345": {"repository_manifest": {"name": "Climate Group", "render_readme": true, "homeassistant": "0.96.0"}, "full_name": "daenny/climate_group", "authors": ["@daenny"], "category": "integration", "description": "Home Assistant Climate Group", "domain": "climate_group", "etag_repository": "W/\"2e43be935cc91cdbcb4178f6c14a1f8d19806a2b1542683e01a24206a3ab7cea\"", "last_updated": "2022-11-15T13:06:19Z", "stargazers_count": 89, "last_fetched": 1674377898.516643, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203736221": {"repository_manifest": {"name": "Uponor Uhome integration", "render_readme": true}, "full_name": "dave-code-ruiz/uhomeuponor", "authors": ["@almirdelkic", "@dave-code-ruiz", "@LordMike"], "category": "integration", "description": "Custom Component to connect Home Assistant with Uhome Uponor Smatrix App", "domain": "uhomeuponor", "etag_repository": "W/\"c4dff2fc810a38951a5fc1a6de5a4c28a7dbe61e063db5241e28bf38490ee02b\"", "last_updated": "2022-11-24T15:02:00Z", "stargazers_count": 12, "topics": ["gateway", "rest-api", "setpoint", "smatrix", "smatrixwaveplus", "thermostat", "uponor"], "last_fetched": 1674377904.838232, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201457186": {"repository_manifest": {"name": "Mylar Sensor Card", "render_readme": true}, "full_name": "WillowMist/sensor.mylar", "authors": ["@darksir23"], "category": "integration", "description": "HomeAssistant Sensor for Mylar (Compatible with Upcoming Meda Card)", "domain": "mylar", "etag_repository": "W/\"e5632177f97a47539d4a2480308448f80de0e588d4b42b3e893062c48f552314\"", "last_updated": "2019-11-23T19:10:34Z", "stargazers_count": 2, "topics": ["media-card", "mylar"], "last_fetched": 1642943792.299242, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "266557774": {"repository_manifest": {"name": "proscenic 790T vacuum", "homeassistant": "2021.7.4", "render_readme": true}, "full_name": "deblockt/hass-proscenic-790T-vacuum", "authors": ["deblockt"], "category": "integration", "description": "proscenic 790T intergration for home assistant", "domain": "proscenic", "downloads": 25, "etag_repository": "W/\"e95e1134a6fead9e9a1e005db16ad6f7e37146a3fcd02b6b81fd1e915fa0999c\"", "last_updated": "2022-07-09T14:18:52Z", "stargazers_count": 15, "topics": ["790t", "proscenic", "vacuum", "vacuum-cleaner"], "last_fetched": 1672948074.072547, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283518438": {"repository_manifest": {"name": "RHVoice", "render_readme": true}, "full_name": "definitio/ha-rhvoice", "authors": ["@definitio"], "category": "integration", "description": "Home Assistant integration for RHVoice - a local text-to-speech engine.", "domain": "rhvoice", "etag_repository": "W/\"2931e6a974e6c6555f3fc6ea48bb72bf580228ae37de690f2883dc82c673e6f9\"", "last_updated": "2022-10-10T16:36:48Z", "stargazers_count": 31, "topics": ["rhvoice", "tts"], "last_fetched": 1674377911.04165, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283243425": {"repository_manifest": {"name": "SoX", "render_readme": true}, "full_name": "definitio/ha-sox", "authors": ["@definitio"], "category": "integration", "description": "A Home Assistant integration to turn your vacuum into an audio player.", "domain": "sox", "etag_repository": "W/\"5f959441ecc15d27831f2114af2aad1bb74a4a0b0a4291c50bb65d05129dd045\"", "last_updated": "2022-10-08T16:49:31Z", "stargazers_count": 16, "topics": ["audio-player", "roborock", "robot-vacuum", "vacuum", "xiaomi"], "last_fetched": 1672948077.832501, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255139072": {"repository_manifest": {"name": "Entidade Reguladora dos Servi\u00e7os Energ\u00e9ticos", "country": "PT", "homeassistant": "2022.4.0", "render_readme": true}, "full_name": "dgomes/ha_erse", "authors": ["@dgomes"], "category": "integration", "description": "Home Assistant Custom Component for ERSE", "domain": "erse", "etag_repository": "W/\"4e61109f5fb2490fdda5e6c32678286080869d6061ece94cf4cf5b5aa65a30b6\"", "last_updated": "2023-01-03T21:05:58Z", "stargazers_count": 29, "topics": ["home-assistant-component", "utility-meters"], "last_fetched": 1672948078.54691, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "163322610": {"repository_manifest": {"name": "Panasonic Comfort Cloud HA component", "homeassistant": "0.110.0"}, "full_name": "djbulsink/panasonic_ac", "authors": ["Djbulsink", "SeraphimSerapis"], "category": "integration", "description": "Panasonic Comfort Cloud HA component", "domain": "panasonic_ac", "etag_repository": "W/\"dd118dfcefa0b03673e9773ed68ed12909d0ec010d6b1d039975ae27a990dd52\"", "last_updated": "2022-07-28T06:55:03Z", "stargazers_count": 31, "last_fetched": 1671384930.433163, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "177469955": {"repository_manifest": {"name": "Mitsubishi Kumo Cloud", "render_readme": true, "homeassistant": "0.96.0"}, "full_name": "dlarrick/hass-kumo", "authors": ["@dlarrick"], "category": "integration", "description": "Home Assistant module interfacing with Mitsubishi mini-split units", "domain": "kumo", "etag_repository": "W/\"2a90ba42fe994e431557321bea6878b0fe02b459ce9a0aef898fc7951317a2cd\"", "last_updated": "2023-01-07T13:33:16Z", "stargazers_count": 59, "topics": ["climate", "kumo", "kumocloud", "mini-split", "mitsubishi"], "last_fetched": 1674377917.94715, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291751884": {"repository_manifest": {"name": "SpaceX Next Launch and Starman", "country": "CA", "homeassistant": "0.115.0"}, "full_name": "djtimca/HASpaceX", "authors": ["@djtimca"], "category": "integration", "description": "Home Assistant integration for SpaceX Next Launch and Starman data.", "domain": "spacex", "etag_repository": "W/\"1ae2bbf198a86d3a2e6049147fe1cef265567e9252a7a9cf8c1d34fab1f2f2be\"", "last_updated": "2023-01-02T12:13:36Z", "stargazers_count": 31, "topics": ["home-assistant-component", "spacex", "spacex-launches"], "last_fetched": 1674377917.55141, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229014136": {"repository_manifest": {"name": "MyJDownloader", "render_readme": true, "homeassistant": "2022.4.0b0"}, "full_name": "doudz/homeassistant-myjdownloader", "authors": ["doudz"], "category": "integration", "description": "myjdownloader integration for home assistant", "domain": "myjdownloader", "etag_repository": "W/\"b665207af3f509e9bded6dce5ff9f50369a31f1937b56e17aa4b104ea26b906a\"", "last_updated": "2022-09-26T19:35:39Z", "stargazers_count": 24, "last_fetched": 1672948089.335145, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188698828": {"repository_manifest": {"country": ["RU", "BY"], "homeassistant": "2022.5", "name": "Yandex Smart Home", "render_readme": true}, "full_name": "dext0r/yandex_smart_home", "category": "integration", "description": "Adds support for Yandex Smart Home (Alice voice assistant) into Home Assistant", "domain": "yandex_smart_home", "etag_repository": "W/\"bf6392de7d8c887ec9edda39545c3b48efc3e4cd178432cfc46773d4c3471ea5\"", "last_updated": "2023-01-16T12:34:12Z", "stargazers_count": 591, "topics": ["alice", "home-assistant-component", "voice-assistant", "yandex"], "last_fetched": 1674377911.606057, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200073618": {"repository_manifest": {}, "full_name": "dlashua/templatebinarysensor", "authors": ["@dlashua"], "category": "integration", "description": "Add template binary_sensors from the UI.", "domain": "templatebinarysensor", "etag_repository": "W/\"95cf27777f199854834431cb1b6335d507321f411b9e3803d8979270d882cc59\"", "last_updated": "2021-11-11T12:35:12Z", "stargazers_count": 1, "last_fetched": 1671384933.260154, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "267076188": {"repository_manifest": {"name": "Gigaset Elements", "render_readme": "true", "homeassistant": "2022.5.0"}, "full_name": "dynasticorpheus/gigasetelements-ha", "authors": ["@dynasticorpheus"], "category": "integration", "description": "Gigaset Smart Home integration for Home Assistant", "domain": "gigasetelements", "etag_repository": "W/\"c24cb23ed0ff8e539f3adb9a5ca9cdef8ff5dbbb81fedb03ccf663bc8dd687a1\"", "last_updated": "2022-11-20T10:17:54Z", "stargazers_count": 15, "topics": ["community", "gigaset", "gigasetelements", "python3"], "last_fetched": 1671384944.356352, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250345421": {"repository_manifest": {"name": "Folding@HomeControl", "homeassistant": "2022.2.3"}, "full_name": "eifinger/hass-foldingathomecontrol", "authors": ["@eifinger"], "category": "integration", "description": "Homeassistant integration for FoldingAtHomeControl", "domain": "foldingathomecontrol", "etag_repository": "W/\"cd188b1a0e39d7b87c107e68be430b8fd7a349f6e9a5d9247064cd2f01dd6555\"", "last_updated": "2022-12-15T17:09:51Z", "stargazers_count": 15, "topics": ["asyncio", "folding-at-home", "foldingathome", "python3"], "last_fetched": 1671384949.111329, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202322117": {"repository_manifest": {"name": "open_route_service"}, "full_name": "eifinger/open_route_service", "authors": ["@eifinger"], "category": "integration", "description": "Custom Component for Homeassistant Providing Travel Time Information using openrouteservice.org", "domain": "open_route_service", "etag_repository": "W/\"fabae90f933623a81b4af9f2edf36891cad1a9d949da3b17aac438a499c7a5bf\"", "last_updated": "2022-08-26T13:04:31Z", "stargazers_count": 11, "topics": ["open-route-service", "python3"], "last_fetched": 1661585066.011334, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "213959778": {"repository_manifest": {"name": "Dahua VTO Integration"}, "full_name": "elad-bar/ha-dahuavto", "authors": ["@elad-bar"], "category": "integration", "description": "Dahua VTO Integration", "domain": "dahuavto", "etag_repository": "W/\"9fd1e7caa0eced00e8e9c2e4a7567465465b701706fc1f65624c0c526f507aaf\"", "last_updated": "2020-10-01T10:34:46Z", "stargazers_count": 6, "last_fetched": 1657362730.3138, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "169641362": {"repository_manifest": {"name": "BlueIris NVR", "homeassistant": "2021.12.0"}, "full_name": "elad-bar/ha-blueiris", "authors": ["@elad-bar"], "category": "integration", "description": "Integration with Blue Iris Video Security Software", "domain": "blueiris", "etag_repository": "W/\"0847409afd8f58d3ca4d6989bac920da6ea38c981991d272bf2983f47c8751fb\"", "last_updated": "2022-12-05T07:02:47Z", "stargazers_count": 133, "last_fetched": 1674377934.626068, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220482107": {"repository_manifest": {"name": "HP Printers Integration", "homeassistant": "2021.12.0"}, "full_name": "elad-bar/ha-hpprinter", "authors": ["@elad-bar"], "category": "integration", "description": "HP Printer Integration", "domain": "hpprinter", "etag_repository": "W/\"58af500ff768a087908320798d3acb0119180193a357e1ae9e0389de7eaaff0a\"", "last_updated": "2022-05-27T09:02:10Z", "stargazers_count": 65, "topics": ["hp", "hp-printer"], "last_fetched": 1671384951.94271, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "169467285": {"repository_manifest": {"name": "EdgeOS (Ubiquiti)", "homeassistant": "2022.11.0"}, "full_name": "elad-bar/ha-edgeos", "authors": ["@elad-bar"], "category": "integration", "description": "Integration with EdgeOS (Ubiquiti)", "domain": "edgeos", "etag_repository": "W/\"2a3c6f571cfbaebd410661c4a55c72b1dec359d5c3a825f9bba79504cda12d11\"", "last_updated": "2023-01-11T21:04:41Z", "stargazers_count": 105, "topics": ["edgeos"], "last_fetched": 1674377935.291172, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "177169766": {"repository_manifest": {"name": "Wattbox", "homeassistant": "2022.3.0"}, "full_name": "eseglem/hass-wattbox", "authors": ["@eseglem"], "category": "integration", "description": "Home Assistant WattBox Component", "domain": "wattbox", "etag_repository": "W/\"9c5e404e4f7304b33cb5e13bc1b3d103391b5ab4753a206d7b9712961e332512\"", "last_updated": "2022-03-16T04:21:01Z", "stargazers_count": 6, "topics": ["battery", "ups", "wattbox"], "last_fetched": 1653229706.327842, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255073429": {"repository_manifest": {"name": "LG Hombot Vacuum Cleaner", "homeassistant": "0.108.0"}, "full_name": "ericpignet/home-assistant-lg_hombot", "authors": ["@ericpignet"], "category": "integration", "description": "LG Hombot/Roboking Component for Home Assistant.", "domain": "lg_hombot", "etag_repository": "W/\"9c517a708acff433d95e32438eef0b50a7a477a129b7a101a7bebf974da103bc\"", "last_updated": "2021-06-21T01:02:21Z", "stargazers_count": 6, "topics": ["hombot", "home-assistant-component", "roboking"], "last_fetched": 1672948107.169238, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "213950645": {"repository_manifest": {"name": "ElkoEP Lara", "render_readme": true}, "full_name": "exKAjFASH/media_player.elkoep_lara", "category": "integration", "description": "Support for interface with an ElkoEP Lara devices", "domain": "elkoep_lara", "etag_repository": "W/\"54500ef736fc18bbed9c87e01922208f09e663038315b485e5b48a9a59fa3f40\"", "last_updated": "2022-02-09T10:37:17Z", "last_fetched": 1644420415.763067, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262140617": {"repository_manifest": {"name": "Read Your Meter", "country": "IL", "homeassistant": "0.106.0"}, "full_name": "eyalcha/read_your_meter", "authors": ["@eyalcha"], "category": "integration", "description": "Home Assistant sensor to read water meter", "domain": "read_your_meter", "etag_repository": "W/\"f8309ec282d02c7857d0ae5600becc4feb99ba571181479fe3f47b98dde92239\"", "last_updated": "2022-07-25T19:36:44Z", "stargazers_count": 30, "last_fetched": 1671384961.086642, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261291147": {"repository_manifest": {"name": "Thermal", "homeassistant": "0.106.0"}, "full_name": "eyalcha/thermal", "authors": ["@eyalcha"], "category": "integration", "description": "Thermal camera for Home Assistant", "domain": "thermal", "etag_repository": "W/\"1a71e545dcaf267416ca4e6c91893b1f0034e3e3b747d390642cb4ab8ec2bde3\"", "last_updated": "2021-06-24T00:05:39Z", "stargazers_count": 27, "topics": ["camera"], "last_fetched": 1671384961.680098, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "290436986": {"repository_manifest": {"name": "\u5f69\u4e91\u5929\u6c14", "render_readme": true, "homeassistant": "0.99.9", "country": ["CN"]}, "full_name": "fineemb/Colorfulclouds-weather", "authors": ["@fineemb"], "category": "integration", "description": "\u7528\u4e8eHASS\u7684\u5f69\u4e91\u5929\u6c14\u7ec4\u4ef6", "domain": "colorfulclouds", "etag_repository": "W/\"67a75585bbe89dc04e00af9820837332d17447e3ba715e2a97637ebd89e3067a\"", "last_updated": "2023-01-19T14:48:19Z", "stargazers_count": 78, "topics": ["weather"], "last_fetched": 1674377950.007278, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237880993": {"repository_manifest": {"name": "Smartmi smart heater", "render_readme": true, "homeassistant": "0.99.9", "country": ["CN"]}, "full_name": "fineemb/Smartmi-smart-heater", "authors": ["@fineemb"], "category": "integration", "description": "\u667a\u7c73\u667a\u80fd\u7535\u6696\u5668", "domain": "miheater", "etag_repository": "W/\"96c7fdd5df4484da60fe0a56c520328b96661cc821ff04c993d1e48ddc8a05d6\"", "last_updated": "2022-12-09T10:31:21Z", "stargazers_count": 17, "last_fetched": 1671384965.078764, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "296320952": {"repository_manifest": {"name": "\u5c0f\u7c73\u4e91\u670d\u52a1", "render_readme": true, "homeassistant": "0.99.9", "country": ["CN"]}, "full_name": "fineemb/xiaomi-cloud", "authors": ["@fineemb"], "category": "integration", "description": "HASS\u7684\u5c0f\u7c73\u4e91\u670d\u52a1\u96c6\u6210", "domain": "xiaomi_cloud", "etag_repository": "W/\"c54417057f2c0ad7ac4324f02cd1916a75cf81b240f92198954c89db39847b03\"", "last_updated": "2022-05-16T04:02:11Z", "stargazers_count": 38, "topics": ["cloud", "xiaomi"], "last_fetched": 1674377950.373643, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229060565": {"repository_manifest": {"name": "Xiaomi Mijia Multifunctional MJYSH01YM", "render_readme": true, "homeassistant": "0.99.9"}, "full_name": "fineemb/Xiaomi-Smart-Multipurpose-Kettle", "authors": ["@fineemb"], "category": "integration", "description": "\u5c0f\u7c73\u517b\u751f\u58f6", "domain": "health_pot", "etag_repository": "W/\"d4c4dcf7c0fe2e2c7f460e23a2eb06f20c1f30303158c375f81d048e126c485d\"", "last_updated": "2022-06-02T18:40:56Z", "stargazers_count": 6, "last_fetched": 1661585078.754466, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "285560672": {"repository_manifest": {"name": "Deutscher Wetterdienst", "homeassistant": "2022.07.1"}, "full_name": "FL550/dwd_weather", "authors": ["@FL550"], "category": "integration", "description": "Deutscher Wetterdienst integration for Home-Assistant", "domain": "dwd_weather", "etag_repository": "W/\"1393ebe5a7cf5b0ef3400a7b2f8c996597e43d792db11ab5e41312998262d9fc\"", "last_updated": "2022-09-04T07:31:23Z", "stargazers_count": 89, "topics": ["deutscher-wetterdienst", "dwd", "dwd-weather", "weather", "weather-entity", "weather-forecast"], "last_fetched": 1674377952.293277, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220685552": {"repository_manifest": {"name": "Popular Times", "render_readme": true}, "full_name": "freakshock88/hass-populartimes", "authors": ["@freakshock88"], "category": "integration", "description": "Custom component for Home Assistant which generates a sensor to show popularity for a google maps place.", "domain": "populartimes", "etag_repository": "W/\"cfa068a2d98165d5eedaa54e16627acf89be6a8b660691d6547e33200deef344\"", "last_updated": "2022-12-30T10:42:30Z", "stargazers_count": 24, "topics": ["google-maps", "google-places-api"], "last_fetched": 1672948121.885233, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "226707533": {"repository_manifest": {"name": "ltss"}, "full_name": "freol35241/ltss", "authors": ["@freol35241"], "category": "integration", "description": "Long time state storage (LTSS) custom component for Home Assistant using Timescale DB", "domain": "ltss", "etag_repository": "W/\"b069ff28988f2957dc83144eced25a57fcc2007d00c4a165b4e399ddba967ec7\"", "last_updated": "2022-10-29T19:40:57Z", "stargazers_count": 50, "topics": ["database", "ltss", "state-storage", "storage", "timescaledb"], "last_fetched": 1671384971.67358, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "217507414": {"repository_manifest": {"name": "Yeelight ven fan", "render_readme": true, "homeassistant": "0.99.9"}, "full_name": "fineemb/Yeelink-ven-fan", "authors": ["@fineemb"], "category": "integration", "description": "\u63a5\u5165Hass\u7684\u51c9\u9738\u7ec4\u4ef6", "domain": "yeelink", "etag_repository": "W/\"2e22df2c7b85840f756efda59951c74a141372a7e3d8effdb55b7982ea6efc3f\"", "last_updated": "2022-12-17T13:07:49Z", "stargazers_count": 5, "last_fetched": 1671384967.128486, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264655935": {"repository_manifest": {"name": "Entities Calendar", "homeassistant": "2022.5.0"}, "full_name": "gadgetchnnel/entities_calendar", "authors": ["@gadgetchnnel"], "category": "integration", "description": "A custom component for Home Assistant to allow regular entities to be used as a calendar", "domain": "entities_calendar", "etag_repository": "W/\"ace74c7bb1ea73528193ef6f23aa0a2b78935610269ff822548d59ddf70a19fe\"", "last_updated": "2022-10-07T07:40:44Z", "stargazers_count": 15, "topics": ["calendar", "entities-calendar"], "last_fetched": 1672948126.579176, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183212377": {"repository_manifest": {"name": "Spotcast", "homeassistant": "2022.3.0"}, "full_name": "fondberg/spotcast", "authors": ["@fondberg"], "category": "integration", "description": "Home assistant custom component to start Spotify playback on an idle chromecast device as well as control spotify connect devices", "domain": "spotcast", "etag_repository": "W/\"e6845bf889b34b685164a29c02f6c8411bbcf30869bd25da5b540adf1d45a824\"", "last_updated": "2023-01-21T14:28:40Z", "stargazers_count": 480, "last_fetched": 1674377953.282845, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "263757123": {"repository_manifest": {"name": "NWS Alerts", "homeassistant": "0.95.4"}, "full_name": "finity69x2/nws_alerts", "authors": ["@finity69x2"], "category": "integration", "description": "An updated version of the nws_alerts custom integration for Home Assistant", "domain": "nws_alerts", "etag_repository": "W/\"7889f7e6d4b548016e82de1554bc434ac776cf4c68ba70a691d6b6c6684359fc\"", "last_updated": "2022-07-10T07:23:49Z", "stargazers_count": 34, "topics": ["alerts", "assistant", "home", "weather"], "last_fetched": 1665325532.197725, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261311061": {"repository_manifest": {"name": "Ecowitt Weather Station", "render_readme": true}, "full_name": "garbled1/homeassistant_ecowitt", "authors": ["@garbled1"], "category": "integration", "description": "Ecowitt Weather Station integration for homeassistant", "domain": "ecowitt", "etag_repository": "W/\"eb71187b07a452ddc7f9edc0741b372270494f23caff487cf64207cb2f55f48f\"", "last_updated": "2022-07-25T19:55:17Z", "stargazers_count": 121, "topics": ["ecowitt"], "last_fetched": 1674377960.991703, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229755760": {"repository_manifest": {"name": "Balboa Spa Client", "render_readme": true}, "full_name": "garbled1/balboa_homeassistan", "authors": ["@garbled1"], "category": "integration", "description": "Balboa spa integration for home-assistant", "domain": "balboa", "etag_repository": "W/\"6ce0fa04c4600ebadf6c043cd8add90a08e869b8a7fc497141d05c0bcefff866\"", "last_updated": "2022-07-20T20:37:26Z", "stargazers_count": 21, "topics": ["balboa"], "last_fetched": 1665325541.646723, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222292912": {"repository_manifest": {"name": "iCloud3 Device Tracker", "zip_release": true, "render_readme": true, "filename": "icloud3.zip"}, "full_name": "gcobb321/icloud3", "authors": ["@gcobb321"], "category": "integration", "description": "iCloud3 - An advanced device_tracker custom_component for iPhones, iPads, etc. It monitors zone & location updates triggered by the HA iOS App and supports Apple 2fa verification.", "domain": "icloud3", "downloads": 5658, "etag_repository": "W/\"876b726fe899bb5948ad7256c9d323d92bf639d96476177832cd3e2f06d8b12f\"", "last_updated": "2022-05-05T18:25:55Z", "stargazers_count": 328, "topics": ["device-tracker", "ha-ios", "icloud", "icloud-account", "tracking", "zone", "zones"], "last_fetched": 1674377961.258339, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201599575": {"repository_manifest": {"name": "Emby Latest Media"}, "full_name": "gcorgnet/sensor.emby_upcoming_media", "authors": ["@gcorgnet"], "category": "integration", "description": "Home Assistant component to feed Upcoming Media Card with the latest releases on an Emby instance.", "domain": "emby_upcoming_media", "etag_repository": "W/\"e76882fffaff342d90e90f870a38cf92548f8b258e653ec3a8b1b88b663abd64\"", "last_updated": "2022-06-23T21:18:24Z", "stargazers_count": 15, "last_fetched": 1671384978.637187, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264490983": {"repository_manifest": {"name": "Slack User", "render_readme": true}, "full_name": "GeorgeSG/ha-slack-user", "authors": ["@GeorgeSG"], "category": "integration", "description": "Slack User sensor for Home Assistant", "domain": "slack_user", "etag_repository": "W/\"d4859db4ec41331100f6e10fae32bb0db77a1f1fb37b7c6052a2f055093c17ea\"", "last_updated": "2022-12-01T14:00:43Z", "stargazers_count": 19, "topics": ["home-assistant-component"], "last_fetched": 1671384979.831192, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199306003": {"repository_manifest": {"name": "Buienalarm", "render_readme": true}, "full_name": "gieljnssns/buienalarm-sensor-homeassistant", "authors": ["@gieljnssns"], "category": "integration", "description": "Buienalarm custom_component for Home-Assistant", "domain": "buienalarm", "etag_repository": "W/\"3262d9cd5017010ff7b9ebeda4424c4ff5bd3af4d806bd9c686c9a7a9c986be4\"", "last_updated": "2021-12-04T09:48:55Z", "stargazers_count": 26, "last_fetched": 1674377967.145273, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199306511": {"repository_manifest": {"name": "Kostal Piko", "render_readme": true}, "full_name": "gieljnssns/kostalpiko-sensor-homeassistant", "authors": ["@gieljnssns"], "category": "integration", "description": "A custom component to get the readings of a Kostal Piko inverter", "domain": "kostal", "etag_repository": "W/\"646bdd2c6d18892d9f36c5a6123a47e4c045fc9ff0b91d2f518966ea7a869b43\"", "last_updated": "2021-06-16T14:25:39Z", "stargazers_count": 9, "last_fetched": 1648399950.157893, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261873234": {"repository_manifest": {"name": "Sector Alarm", "render_readme": true, "homeassistant": "2022.5.0"}, "full_name": "gjohansson-ST/sector", "authors": ["@gjohansson-ST"], "category": "integration", "description": "Integration to Sector Alarm for Home Assistant", "domain": "sector", "downloads": 4, "etag_repository": "W/\"ff162ce635e181accb9441774b5b5849cd24c8ea3b043f817dcc17961832a5d1\"", "last_updated": "2022-11-04T19:37:32Z", "stargazers_count": 23, "topics": ["alarm", "alarm-control", "alarm-control-panel", "lock", "sector", "sector-alarm", "temperature-sensor"], "last_fetched": 1671384984.955459, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265716369": {"repository_manifest": {"name": "Minerstat", "render_readme": "true"}, "full_name": "gilsonmandalogo/hacs-minerstat", "authors": ["@gilsonmandalogo"], "category": "integration", "description": "Minerstat mining hashrate.", "domain": "hacs-minerstat", "etag_repository": "W/\"8309b8b90190e6d3354cbc7fff52ba16a9dbce5c6b540dde401fb4fcce6811a3\"", "last_updated": "2022-01-11T22:19:20Z", "stargazers_count": 4, "topics": ["minerstat", "mining"], "last_fetched": 1674377967.459946, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207794683": {"repository_manifest": {"name": "GoogleGeocode-HASS", "render_readme": true}, "full_name": "gregoryduckworth/GoogleGeocode-HASS", "category": "integration", "description": "Google Location for HASS using the Google Geocode API", "domain": "google_geocode", "etag_repository": "W/\"bd7a7dc587d145c6bdf28c1aa3d7e148ea44f43525e0f9c5c396733f4e8ab88f\"", "last_updated": "2022-05-13T16:17:01Z", "stargazers_count": 12, "last_fetched": 1662801779.33825, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292197182": {"repository_manifest": {"name": "Yeelight bluetooth", "render_readme": true, "homeassistant": "2022.10.0"}, "full_name": "hcoohb/hass-yeelightbt", "authors": ["@hcoohb"], "category": "integration", "description": "Home assistant custom component for Yeelight bluetooth", "domain": "yeelight_bt", "etag_repository": "W/\"dfd705d0b8ce0680d9d578bdebd53482632a3981359ed2a597f06676b8bd1ec6\"", "last_updated": "2022-10-09T14:08:31Z", "stargazers_count": 41, "topics": ["bluetooth", "bluetooth-low-energy", "yeelight-lamp"], "last_fetched": 1674377980.3511, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "263075818": {"repository_manifest": {"name": "HA-meural"}, "full_name": "GuySie/ha-meural", "authors": ["@guysie"], "category": "integration", "description": "Integration for NETGEAR Meural Canvas digital art frame in Home Assistant ", "domain": "meural", "etag_repository": "W/\"1a2d2ac488f2c5a2a67a2648d4089b5a6ab790bbc6552fe850d3effa6263c3b2\"", "last_updated": "2022-11-29T22:00:02Z", "stargazers_count": 47, "topics": ["meural", "netgear"], "last_fetched": 1674377976.310054, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "143340728": {"repository_manifest": {"name": "ATAG One", "country": "NL"}, "full_name": "herikw/home-assistant-custom-components", "authors": ["@herikw"], "category": "integration", "description": "Atag One Custom components for Home-Assistant", "domain": "atagone", "etag_repository": "W/\"40faae506b2634feaf57f58406c49be8a36de17671eda4e7a8640dcf470b4a2d\"", "last_updated": "2022-01-03T11:05:53Z", "stargazers_count": 10, "topics": ["atag", "thermostat"], "last_fetched": 1671384999.455461, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264499592": {"repository_manifest": {"name": "Cryptoinfo", "render_readme": true, "homeassistant": "0.100.0"}, "full_name": "heyajohnny/cryptoinfo", "authors": ["@heyajohnny"], "category": "integration", "description": "Provides Home Assistant sensors for all cryptocurrencies supported by CoinGecko", "domain": "cryptoinfo", "etag_repository": "W/\"2ec72cd2d55825658a2bf62fed04a6cbb499226984a7991c563ddd2450f9551a\"", "last_updated": "2022-09-06T14:51:42Z", "stargazers_count": 37, "last_fetched": 1674377984.919635, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234983286": {"repository_manifest": {"name": "Govee BLE HCI monitor sensor integration"}, "full_name": "Home-Is-Where-You-Hang-Your-Hack/sensor.goveetemp_bt_hci", "authors": ["@thrilleratplay"], "category": "integration", "description": "Govee Temperature/Humidity BLE Home Assistant Component", "domain": "govee_ble_hci", "etag_repository": "W/\"09279c76f34f476d7054cbfecd56959cc2a6eea2955e5670ab9baba27a8c3ef0\"", "last_updated": "2023-01-07T20:46:55Z", "stargazers_count": 151, "topics": ["ble", "govee", "h5051", "h5072", "h5074", "h5075", "h5101", "h5102", "h5177", "h5179", "home-assistant-component"], "last_fetched": 1674377986.539101, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "243122556": {"repository_manifest": {"name": "tide", "country": ["NOR"], "homeassistant": "0.96.0", "render_readme": true}, "full_name": "Hellowlol/ha-tide", "authors": ["@hellowlol"], "category": "integration", "description": "Tide a sensor for HASS.", "domain": "tide", "etag_repository": "W/\"e442c19c4f63c021d0c225059894d369a25de8ed69f4a179beadf67bef56baa9\"", "last_updated": "2021-06-06T20:30:32Z", "stargazers_count": 4, "topics": ["norway", "tide"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164841067": {"repository_manifest": {}, "full_name": "isabellaalstrom/sensor.krisinformation", "authors": ["@isabellaalstrom"], "category": "integration", "description": "A custom component for Home Assistant to get messages from krisinformation.se", "domain": "krisinformation", "etag_repository": "W/\"34a5df5f384a75a08958ced863102a45287ac6763a49fcb2d349d05797d759ce\"", "last_updated": "2021-06-29T18:03:29Z", "stargazers_count": 27, "last_fetched": 1646496919.542524, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234118477": {"repository_manifest": {"name": "Afvalinfo", "render_readme": true, "country": ["NL"], "homeassistant": "0.100.0"}, "full_name": "heyajohnny/afvalinfo", "authors": ["@heyajohnny"], "category": "integration", "description": "Provides Home Assistant sensors for multiple Dutch waste collectors. The idea is to add more cities and features in the future.", "domain": "afvalinfo", "etag_repository": "W/\"81e661af13139df4bd98515ad9619b33192666fa4767ee1956784dda661ab22b\"", "last_updated": "2023-01-05T16:36:33Z", "stargazers_count": 70, "last_fetched": 1672948152.521533, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269316095": {"repository_manifest": {"name": "Overkiz (by Somfy) - Custom component", "homeassistant": "2022.11.0", "render_readme": true}, "full_name": "iMicknl/ha-tahoma", "authors": ["@philklei", "@imicknl", "@vlebourl", "@tetienne"], "category": "integration", "description": "Custom component for Home Assistant to interact with smart devices via Somfy TaHoma or other OverKiz based API's.", "domain": "tahoma", "etag_repository": "W/\"56b8c3dffa1fcf0eb3ee567b2d92650a620fa9b7366f21fd741d0e8ccb9a95e3\"", "last_updated": "2022-11-05T15:47:57Z", "stargazers_count": 137, "topics": ["cozytouch", "hi-kumo", "nexity", "overkiz", "rexel", "somfy", "tahoma"], "last_fetched": 1672948162.620247, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "242700009": {"repository_manifest": {"name": "Kostal Plenticore"}, "full_name": "ITTV-tools/homeassistant-kostalplenticore", "authors": ["@ITTV-Tools"], "category": "integration", "description": "Home Assistant Component for Kostal Plenticore ", "domain": "kostal_plenticore", "etag_repository": "W/\"97b9a8f05a7253d448635543bda688e9727c06f442e505dcb212f336d8b51a36\"", "last_updated": "2022-07-21T18:38:06Z", "stargazers_count": 15, "topics": ["component", "kostal", "plenticore"], "last_fetched": 1661585129.06173, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231989179": {"repository_manifest": {"name": "HASS Bardolph"}, "full_name": "JAAlperin/hass-bardolph", "authors": ["al-fontes-jr", "JAAlperin"], "category": "integration", "description": "HASS custom component to load and run Bardolph (simple scripting utility for LIFX light bulbs by Al Fontes, Jr.)", "domain": "bardolph", "etag_repository": "W/\"0dddd690016ab715fbacea4300fca7815251d1dfeb9b27e980f59c712097f465\"", "last_updated": "2021-05-08T22:23:44Z", "stargazers_count": 2, "topics": ["bardolph", "color-bulb", "lifx", "lifx-lan-protocol", "scripts", "services"], "last_fetched": 1665325583.006382, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183989659": {"repository_manifest": {"name": "NHL API"}, "full_name": "JayBlackedOut/hass-nhlapi", "authors": ["@jayblackedout"], "category": "integration", "description": "NHL Stats API Integration Into Home Assistant", "domain": "nhl_api", "etag_repository": "W/\"49c67d7c3f5899a00ba53da0e63b4821d1f2b8f692c361c99ba176dc8731ae27\"", "last_updated": "2023-01-16T00:53:12Z", "stargazers_count": 50, "last_fetched": 1674378009.869434, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235943258": {"repository_manifest": {"name": "Hubitat", "country": "US"}, "full_name": "jason0x43/hacs-hubitat", "authors": ["@jason0x43"], "category": "integration", "description": "A Hubitat integration for Home Assistant", "domain": "hubitat", "etag_repository": "W/\"a87a44ef2c4043d357d983b85c9ac1e3476e15bfdea104def895eaf2409b8598\"", "last_updated": "2023-01-17T03:33:46Z", "stargazers_count": 132, "topics": ["hubitat", "maker-api"], "last_fetched": 1674378003.220577, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "221855213": {"repository_manifest": {"name": "Auto Backup", "zip_release": true, "hide_default_branch": true, "filename": "auto_backup.zip", "homeassistant": "2022.4.0"}, "full_name": "jcwillox/hass-auto-backup", "authors": ["@jcwillox"], "category": "integration", "description": "\ud83d\uddc3\ufe0f Improved Backup Service for Home Assistant that can Automatically Remove Backups and Supports Generational Backup Schemes.", "domain": "auto_backup", "downloads": 14699, "etag_repository": "W/\"31c8c08b1fc2836d165d4c6f75049899a481085dd2f4c62b541db28c4a735160\"", "last_updated": "2022-11-19T06:15:14Z", "stargazers_count": 180, "topics": ["auto-purge", "backups", "generational-backups", "snapshots"], "last_fetched": 1674378009.849272, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "273333188": {"repository_manifest": {"name": "Daily Sensor", "render_readme": true}, "full_name": "jeroenterheerdt/HADailySensor", "authors": ["@jeroenterheerdt"], "category": "integration", "description": "Sensor for Home Assistant that gets reset at midnight", "domain": "daily", "etag_repository": "W/\"da9db66edcc540ab20901a8ab90d9a65c981ca213188dd9b25c3eb87561862e0\"", "last_updated": "2022-06-18T17:28:30Z", "stargazers_count": 27, "topics": ["aggregation", "average", "max", "maximum", "mean", "median", "min", "minimum", "standard-deviation", "statistics", "stdev", "sum", "var", "variance"], "last_fetched": 1674378009.775237, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "263179176": {"repository_manifest": {"name": "Smart Irrigation", "render_readme": true}, "full_name": "jeroenterheerdt/HAsmartirrigation", "authors": ["@jeroenterheerdt"], "category": "integration", "description": "Smart Irrigation custom component for Home Assistant", "domain": "smart_irrigation", "etag_repository": "W/\"dc82cfac79003aa001706ddc25025a1041116c9549f5fb94de856808e5739f9e\"", "last_updated": "2022-12-22T19:47:27Z", "stargazers_count": 194, "topics": ["crop", "evaporation", "evapotranspiration", "flow", "grass", "irrigation", "lawn", "openweathermap", "rain", "snow", "sprinkler", "sprinklers", "water", "watering"], "last_fetched": 1674378010.060489, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190982718": {"repository_manifest": {}, "full_name": "jihao/colorfulclouds-hass", "authors": ["@jihao"], "category": "integration", "description": "A hass component to integrate with colorfulclouds (\u5f69\u4e91\u5929\u6c14)", "domain": "colorfulclouds", "etag_repository": "W/\"315bdd4247ed5ecb442a95b9013ffd51d9c41f24457f82cc4134ca20b28dca51\"", "last_updated": "2019-06-20T12:38:40Z", "stargazers_count": 22, "last_fetched": 1665938894.91828, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187201747": {"repository_manifest": {}, "full_name": "jihao/rokid-webhook-hass", "category": "integration", "description": "rokid webhook component for Home Assistant (\u82e5\u742aHA\u7ec4\u4ef6)", "domain": "rokid_webhook", "etag_repository": "W/\"37fed0f05209bd7168b94e10f045c4dff6141be2e165fce8e1e831283a64c141\"", "last_updated": "2022-02-15T08:44:30Z", "stargazers_count": 12, "last_fetched": 1672948179.147206, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "198758494": {"repository_manifest": {}, "full_name": "jihao/traccar-cn-hass", "authors": ["@ludeeus", "adapt by @jihao"], "category": "integration", "description": "A hass component to integrate with traccar_cn which adapts Chinese map coordinates (\u4e2d\u6587\u5730\u56fe traccar.cn)", "domain": "traccar_cn", "etag_repository": "W/\"ddea732169197a591186816ebaa843b69fee22b5cde2ab0ff24d6b9423ff50da\"", "last_updated": "2020-08-28T09:51:37Z", "stargazers_count": 23, "last_fetched": 1674378014.605364, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "278596510": {"repository_manifest": {"name": "Leaf Spy", "hacs": "0.24.0", "homeassistant": "0.110.0"}, "full_name": "jesserockz/ha-leafspy", "authors": ["@jesserockz"], "category": "integration", "description": "A Home Assistant integration to receive live data sent from the LeafSpy app", "domain": "leafspy", "etag_repository": "W/\"a933cda428a93dbd60503d26fd4391d5305e4c98e3a9886cfc87e682128f716c\"", "last_updated": "2022-06-13T21:10:15Z", "stargazers_count": 12, "topics": ["electric-vehicles", "ev", "leaf", "leafspy", "nissan"], "last_fetched": 1671385029.960735, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223541049": {"repository_manifest": {"name": "SamsungTV Tizen"}, "full_name": "jaruba/ha-samsungtv-tizen", "authors": ["@jaruba"], "category": "integration", "description": "\ud83d\udcfa HomeAssistant - For Samsung TVs 2016+, Includes SmartThings API and Channel List Support", "domain": "samsungtv_tizen", "etag_repository": "W/\"9d26940917ea06471dd1b69008a06f08b901509924855a4f71084075cadb1d63\"", "last_updated": "2022-12-31T20:09:24Z", "stargazers_count": 247, "last_fetched": 1674378002.001596, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192664631": {"repository_manifest": {"name": "Bosch Indego Mower", "country": "SE", "homeassistant": "0.110.0"}, "full_name": "jm-73/Indego", "authors": ["@jm-73", "@eavanvalkenburg"], "category": "integration", "description": "Home Assistant Custom Component for Bosch Indego Lawn Mower", "domain": "indego", "etag_repository": "W/\"4549e1805d94e2fd12b91109d220656563952340ee553549018fa8c665567959\"", "last_updated": "2022-08-03T05:18:18Z", "stargazers_count": 45, "topics": ["bosch-mower", "indego", "iot"], "last_fetched": 1672948183.285354, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "297106424": {"repository_manifest": {"name": "Ebeco thermostats"}, "full_name": "joggs/home_assistant_ebeco", "authors": ["@joggs"], "category": "integration", "description": "Integration for Ebeco thermostats", "domain": "ebeco", "etag_repository": "W/\"58d63debbc9ba05ad22416eb264e5c117b76bbad701612f6e099c11fb27eb868\"", "last_updated": "2022-05-23T06:31:46Z", "stargazers_count": 17, "topics": ["ebeco"], "last_fetched": 1674378016.264778, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "239339530": {"repository_manifest": {"name": "RAD Hoekschewaard Afval Kalender", "render_readme": true, "country": ["NL"], "homeassistant": "0.100.0"}, "full_name": "Johnwulp/rad-afval", "authors": ["@johnwulp"], "category": "integration", "description": "Home Assisant sensor component for RAD Hoekschewaard Afval Kalender", "domain": "rad-afval", "etag_repository": "W/\"b58ca49af1c9bbb270c7bf65f0637ef76c8f2f9998a062a64c9c30d88292bce8\"", "last_updated": "2022-02-03T19:08:50Z", "stargazers_count": 3, "last_fetched": 1644064234.302889, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "147953507": {"repository_manifest": {}, "full_name": "jomwells/ambilights", "authors": ["@jomwells", "@hutchinsane"], "category": "integration", "description": "Custom Home Assistant (Light) Component for Ambilight LED's on Philips Android TV's", "domain": "philips_ambilight", "etag_repository": "W/\"c70bad29231ef39414017011a20e71f17cc55c8e85dd767401fd4c274e2da7f7\"", "last_updated": "2021-06-23T17:10:55Z", "stargazers_count": 46, "last_fetched": 1671385035.888371, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193746664": {"repository_manifest": {}, "full_name": "jomwells/ambilight-yeelight", "authors": ["@jomwells"], "category": "integration", "description": "A switch component which mimics the functionality of Ambilight+Hue for all Yeelight lights/bulbs", "domain": "philips_ambilight+yeelight", "etag_repository": "W/\"566a6047d406ab8115528f5dc9f1884f2f3234f42d4023be5b375c87359c9963\"", "last_updated": "2022-08-29T07:12:59Z", "stargazers_count": 22, "last_fetched": 1665325596.041634, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235659413": {"repository_manifest": {"name": "Eloverblik", "render_readme": true}, "full_name": "JonasPed/homeassistant-eloverblik", "authors": ["@JonasPed"], "category": "integration", "description": "Home Assistant Custom Component showing data from eloverblik.dk", "domain": "eloverblik", "etag_repository": "W/\"3c0a228b703a0eeb3e6345d2bffbff2e124ce5594f0b0f78259d7c925ce7fc3f\"", "last_updated": "2023-01-21T18:43:25Z", "stargazers_count": 121, "last_fetched": 1674378021.298094, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "170309600": {"repository_manifest": {"name": "Atrea", "homeassistant": "2022.4.0"}, "full_name": "JurajNyiri/HomeAssistant-Atrea", "authors": ["@JurajNyiri"], "category": "integration", "description": "Custom component allowing control of Atrea ventilation units", "domain": "atrea", "etag_repository": "W/\"77b2c2085b843bd6a59f304fec9c55a44af5c3646cfcab2c1fcf8701536a9327\"", "last_updated": "2023-01-21T12:42:13Z", "stargazers_count": 17, "last_fetched": 1674378028.059307, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "175020245": {"repository_manifest": {}, "full_name": "JurajNyiri/HomeAssistant-Tavos", "authors": ["@JurajNyiri"], "category": "integration", "description": "Sensor which gathers water outage information from Tavos (Slovakia) website", "domain": "tavos_water_outage", "etag_repository": "W/\"d8605131ae85f0af2197fafda02b34bbccf6d65165a664efd3cee2ba93ef40ad\"", "last_updated": "2022-04-11T21:18:48Z", "last_fetched": 1653229778.256979, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199291345": {"repository_manifest": {}, "full_name": "JurajNyiri/HomeAssistant-qBitTorrentAlternativeSpeed", "authors": ["@JurajNyiri"], "category": "integration", "description": "Adds ability to switch alternative speed in qBittorrent through Home Assistant.", "domain": "qbittorrent_alternative_speed", "etag_repository": "W/\"4795b62a11a52e7419a7fe2befe44f31e11916aacb3664503da426e91b0dcdf9\"", "last_updated": "2022-07-07T10:39:14Z", "stargazers_count": 9, "last_fetched": 1674378028.464758, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197058358": {"repository_manifest": {}, "full_name": "jxlarrea/ha-emfitqs", "authors": ["@jxlarrea"], "category": "integration", "description": "Emfit QS Sleep Tracker Component for Home Assistant", "domain": "emfitqs", "etag_repository": "W/\"e5081c7a9d771492b47b88dc53a05d9b12941f1b9b569e2855c68643bfb2f0db\"", "last_updated": "2022-03-06T21:31:42Z", "stargazers_count": 16, "topics": ["emfit", "emfitqs", "presence", "presence-detection", "sleep-tracker"], "last_fetched": 1672948196.965277, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262803775": {"repository_manifest": {"name": "Carbon Intensity UK", "hacs": "0.24.0", "homeassistant": "0.108.0"}, "full_name": "jscruz/sensor.carbon_intensity_uk", "authors": ["@jscruz"], "category": "integration", "description": "Carbon Intensity UK Sensor for Home Assistant", "domain": "carbon_intensity_uk", "etag_repository": "W/\"6c5191d2394551bfcf65b040fe615e10b20a279db93d49a2c8b26a7d75de565c\"", "last_updated": "2022-07-07T21:57:10Z", "stargazers_count": 3, "topics": ["carbon", "custom-integration", "energy", "sensor-platform"], "last_fetched": 1665325601.240256, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "300358676": {"repository_manifest": {"name": "Tapo: Cameras Control", "homeassistant": "2022.9.0"}, "full_name": "JurajNyiri/HomeAssistant-Tapo-Control", "authors": ["@JurajNyiri"], "category": "integration", "description": "Control for Tapo cameras as a Home Assistant component", "domain": "tapo_control", "etag_repository": "W/\"d8fb90ee9d514b58b2af43013fdd2557f837f8be6c9a7d615daca0c6d5dbd871\"", "last_updated": "2023-01-10T20:33:15Z", "stargazers_count": 440, "topics": ["camera", "cameras", "homeassistant-custom-component", "ptz", "tapo"], "last_fetched": 1674378028.761598, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "159025199": {"repository_manifest": {}, "full_name": "kalanda/homeassistant-aemet-sensor", "authors": ["@kalanda"], "category": "integration", "description": "AEMET integration for Home Assistant", "domain": "aemet", "etag_repository": "W/\"fadb38683ce3ecc01589c5d2020eedd21f4968ce4e66cdde20e10b061799407b\"", "last_updated": "2022-06-03T06:00:18Z", "stargazers_count": 21, "topics": ["aemet"], "last_fetched": 1656859245.796327, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233079250": {"repository_manifest": {"name": "darksky_m", "render_readme": "true", "country": ["NO"]}, "full_name": "kodi1/darksky_m", "authors": ["@kodi1"], "category": "integration", "description": "darksky - clouds cover and alerts", "domain": "darksky_m", "etag_repository": "W/\"979b79eb7e2ca373dbe717ddf44f354e54a1bca149b6e2598b19724d3920f522\"", "last_updated": "2021-03-28T10:12:47Z", "topics": ["darksky"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232077394": {"repository_manifest": {"name": "Chargeamps", "render_readme": true}, "full_name": "kirei/hass-chargeamps", "authors": ["@kirei"], "category": "integration", "description": "Home Assistant Component for Chargeamps", "domain": "chargeamps", "etag_repository": "W/\"157ef9d347929daff3d1498c137242a5d4e33061893c69c56f47fde31153a09b\"", "last_updated": "2023-01-06T13:18:59Z", "stargazers_count": 19, "topics": ["chargeamps"], "last_fetched": 1674378037.094843, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233089370": {"repository_manifest": {"name": "esp_wd", "render_readme": "true", "country": ["NO"]}, "full_name": "kodi1/esp_wd", "authors": ["@kodi1"], "category": "integration", "description": "easyesp status sensor", "domain": "esp_wd", "etag_repository": "W/\"95c73fa6fe77000726de3d3cf48a0c7d0b6442c69e5de9ac10a64a03f16d0d16\"", "last_updated": "2022-02-04T08:26:05Z", "stargazers_count": 2, "topics": ["esp-easy"], "last_fetched": 1644064235.560689, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246939713": {"repository_manifest": {"name": "Wasteplan TRV", "country": "NO", "render_readme": true}, "full_name": "jonkristian/wasteplan_trv", "authors": ["@jonkristian"], "category": "integration", "description": "Home Assistant component for Trondheim renholdsverk bin pickups.", "domain": "wasteplan_trv", "etag_repository": "W/\"3fc8260007f9bed03ebf6a408600a21cc428eb55092bf5b094ab08dc405e33fa\"", "last_updated": "2021-12-28T10:27:19Z", "stargazers_count": 9, "topics": ["trondheim", "trv", "waste-management"], "last_fetched": 1672948189.549759, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233090507": {"repository_manifest": {"name": "meteoalarm", "render_readme": "true", "country": ["NO"]}, "full_name": "kodi1/meteoalarm", "authors": ["@kodi1"], "category": "integration", "description": "meteoalarm sensor", "domain": "meteoalarm_m", "etag_repository": "W/\"f7bd890310bba52d387e4bc8d3051641eac8cef6d5d5a2c5a1d92ea179eb3b13\"", "last_updated": "2021-12-31T18:00:45Z", "stargazers_count": 5, "topics": ["meteoalarm"], "last_fetched": 1644420421.405046, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233092112": {"repository_manifest": {"name": "songpal_m", "render_readme": "true", "country": ["NO"]}, "full_name": "kodi1/songpal_m", "authors": ["@kodi1"], "category": "integration", "description": "songpal - volume down workaround", "domain": "songpal_m", "etag_repository": "W/\"5697baf1ecfa09475d24f7feb213631918e92a5f8c045e53519d98e996a67987\"", "last_updated": "2021-03-28T10:15:20Z", "stargazers_count": 1, "topics": ["songpal"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233092629": {"repository_manifest": {"name": "tvh_rec", "country": ["NO"]}, "full_name": "kodi1/tvh_rec", "authors": ["@kodi1"], "category": "integration", "description": "tvheadend recorder sensor - lovelace upcoming media card", "domain": "tvh_rec", "etag_repository": "W/\"2f0d5e0300690312d983f815bf045cc0a6e1105a403b1cb3b5adcced493195ea\"", "last_updated": "2022-01-09T10:38:49Z", "stargazers_count": 3, "topics": ["recordings", "tvheadend"], "last_fetched": 1641895617.996288, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286554328": {"repository_manifest": {"name": "Kaco", "render_readme": true}, "full_name": "KoljaWindeler/kaco", "authors": ["@KoljaWindeler"], "category": "integration", "description": "custom integration for kaco solar inverter", "domain": "kaco", "etag_repository": "W/\"ae18795193c733586433cb2f1018da081a8910df4e9c27c9a6ae320552e2ba1e\"", "last_updated": "2022-03-01T16:24:59Z", "stargazers_count": 5, "topics": ["inverter", "solar-energy"], "last_fetched": 1674378042.837393, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246410785": {"repository_manifest": {"name": "ICS", "render_readme": true}, "full_name": "KoljaWindeler/ics", "authors": ["@KoljaWindeler"], "category": "integration", "description": "Integration that displays the next event of an ics link (support reoccuring events)", "domain": "ics", "etag_repository": "W/\"622b87283ecd96ee2ab0a3bf4ea1fae0c1a402e35eba51d9205c2eb9a2a9b9e9\"", "last_updated": "2022-02-10T18:31:39Z", "stargazers_count": 48, "topics": ["appointments", "filtering", "ics", "reoccuring-events"], "last_fetched": 1672948207.978886, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "242635439": {"repository_manifest": {"name": "Disk Space", "render_readme": true}, "full_name": "kuchel77/diskspace", "authors": ["@kuchel77"], "category": "integration", "description": "Disk space for a path. For use with Home Assistant", "domain": "diskspace", "etag_repository": "W/\"10d58fff3a42848a1fe93b91e731b8c13ba48fd1e678a11881e3a24ca2cda335\"", "last_updated": "2021-04-18T05:13:59Z", "stargazers_count": 9, "topics": ["assistant", "disk", "home", "space"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "132661981": {"repository_manifest": {"name": "Elasticsearch integration", "render_readme": true, "homeassistant": "2022.4"}, "full_name": "legrego/homeassistant-elasticsearch", "authors": ["@legrego"], "category": "integration", "description": "Publish Home-Assistant events to Elasticsearch", "domain": "elasticsearch", "etag_repository": "W/\"256e06a778366c6f6e673af44d8f0bf9ce46687a2f4db94d86dff322271f2bad\"", "last_updated": "2022-12-02T01:58:51Z", "stargazers_count": 103, "topics": ["elasticsearch"], "last_fetched": 1674378056.858819, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "230151505": {"repository_manifest": {"name": "Dijnet integration", "country": "HU", "render_readme": true, "zip_release": true, "filename": "homeassistant-dijnet.zip"}, "full_name": "laszlojakab/homeassistant-dijnet", "authors": ["@laszlojakab"], "category": "integration", "description": "Dijnet integration for Home Assistant", "domain": "dijnet", "downloads": 135, "etag_repository": "W/\"5bed3e5ba945080ced93129ce11be3af101e50438bedc2d76b5966284d3aab66\"", "last_updated": "2023-01-03T20:18:28Z", "stargazers_count": 10, "topics": ["dijnet"], "last_fetched": 1674378054.461379, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "258852884": {"repository_manifest": {"name": "Helios EasyControls Modbus TCP/IP integration", "render_readme": true, "zip_release": true, "filename": "homeassistant-easycontrols.zip"}, "full_name": "laszlojakab/homeassistant-easycontrols", "authors": ["@laszlojakab"], "category": "integration", "description": "Helios EasyControls Modbus TCP/IP integration for Home Assistant", "domain": "easycontrols", "downloads": 91, "etag_repository": "W/\"a3abad391a7b54b0624a06398a347a644a76a49ea284e75e9e9721149cfcff6f\"", "last_updated": "2023-01-03T20:54:41Z", "stargazers_count": 12, "topics": ["easycontrols", "eazyctrl", "modbus"], "last_fetched": 1674378054.771157, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279680951": {"repository_manifest": {"name": "Jablotron 100", "country": ["CS", "DA", "DE", "EN", "IT", "NB", "NL", "SK"], "homeassistant": "2023.1.0", "render_readme": true}, "full_name": "kukulich/home-assistant-jablotron100", "authors": ["@kukulich"], "category": "integration", "description": "Home Assistant custom component for JABLOTRON 100+ alarm system", "domain": "jablotron100", "etag_repository": "W/\"7c1f4405715c234361d0d1693873b4dea66424a1e3d0002b47f6e4e63d487354\"", "last_updated": "2023-01-05T11:56:10Z", "stargazers_count": 46, "topics": ["alarm", "jablotron"], "last_fetched": 1672948217.640566, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "254253124": {"repository_manifest": {"name": "Noonlight - Alarm Monitoring", "render_readme": true, "country": "US", "homeassistant": "0.96"}, "full_name": "konnected-io/noonlight-hass", "authors": ["@heythisisnate", "@snicker"], "category": "integration", "description": "HomeAssistant integration for Noonlight", "domain": "noonlight", "etag_repository": "W/\"2da4e192cc4df727083ade483f80b77517e5efc1dc5aa3e0dfe752c82818c497\"", "last_updated": "2022-10-16T17:36:02Z", "stargazers_count": 22, "topics": ["alarm", "monitoring", "noonlight", "security"], "last_fetched": 1674378044.301179, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183222061": {"repository_manifest": {"name": "Local Luftdaten Sensor", "render_readme": true}, "full_name": "lichtteil/local_luftdaten", "authors": ["@lichtteil"], "category": "integration", "description": "Custom component for Home Assistant that integrates your (own) local Luftdaten sensor (air quality/particle sensor) without using the cloud.", "domain": "local_luftdaten", "etag_repository": "W/\"c7e8f205c7c14a8a012f95ce904b87f3125a6f76edcb6f19d536b138e5c56b36\"", "last_updated": "2023-01-15T18:41:45Z", "stargazers_count": 35, "topics": ["air-quality"], "last_fetched": 1674378060.121211, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "204192861": {"repository_manifest": {"name": "Average Sensor", "hacs": "1.6.0", "homeassistant": "2022.7.0"}, "full_name": "Limych/ha-average", "authors": ["@Limych"], "category": "integration", "description": "Average Sensor for Home Assistant", "domain": "average", "downloads": 180, "etag_repository": "W/\"cbe41c8466abb937693c61a30608356b3b9a61054da5d53453c344badc4a338d\"", "last_updated": "2022-12-05T01:38:45Z", "stargazers_count": 221, "topics": ["average", "home-assistant-component"], "last_fetched": 1674378060.839502, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199313405": {"repository_manifest": {"name": "Beward Integration", "hacs": "1.6.0", "homeassistant": "2022.7.0"}, "full_name": "Limych/ha-beward", "authors": ["@Limych"], "category": "integration", "description": "Home Assistant custom component for Beward security Cameras and Doorbells", "domain": "beward", "downloads": 8, "etag_repository": "W/\"e76610a9879fd0ec224238b50188f74bf0ad4b2f587e32be0aad0731fcbecb18\"", "last_updated": "2023-01-11T11:12:21Z", "stargazers_count": 19, "topics": ["beward", "camera", "doorbell", "dvr", "security", "surveillance"], "last_fetched": 1674378062.217379, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "210194956": {"repository_manifest": {"name": "Car Wash", "hacs": "1.6.0", "homeassistant": "2022.6.0"}, "full_name": "Limych/ha-car_wash", "authors": ["@limych"], "category": "integration", "description": "Car Wash Binary Sensor for Home Assistant", "domain": "car_wash", "downloads": 8, "etag_repository": "W/\"0fc34dac7b1fca88de0b1174482819d3ef89764c5a46f8eb25f559ab82157f0f\"", "last_updated": "2023-01-11T21:12:46Z", "stargazers_count": 69, "topics": ["binary-sensor", "car", "car-wash", "wash", "weather-forecast"], "last_fetched": 1674378061.55189, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "206868881": {"repository_manifest": {"name": "Gismeteo", "hacs": "1.6.0", "homeassistant": "2022.7.0"}, "full_name": "Limych/ha-gismeteo", "authors": ["@limych"], "category": "integration", "description": "Gismeteo Weather Provider for Home Assistant", "domain": "gismeteo", "downloads": 42, "etag_repository": "W/\"ae1cd0ebf980deebd91870a95c7b0b2e96369e784252272c763680a745618ea3\"", "last_updated": "2022-12-09T22:02:21Z", "stargazers_count": 88, "topics": ["forecast", "gismeteo", "gismeteo-weather", "sensors", "weather-provider"], "last_fetched": 1672948230.270996, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228063780": {"repository_manifest": {"name": "Indoor Air Quality UK Index", "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "Limych/ha-iaquk", "authors": ["@Limych"], "category": "integration", "description": "Indoor Air Quality Sensor Component for Home Assistant", "domain": "iaquk", "downloads": 13, "etag_repository": "W/\"72a49969b70c8783a68c9b3686a9caa21e521ed67b0e3446511ded8fef0cb7f5\"", "last_updated": "2022-10-11T15:13:40Z", "stargazers_count": 60, "topics": ["air-quality", "indoor"], "last_fetched": 1666451404.84759, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197950768": {"repository_manifest": {}, "full_name": "ljmerza/ha-our-groceries", "category": "integration", "description": "Our Groceries Integration for Home Assistant", "domain": "ourgroceries", "etag_repository": "W/\"56621ba7f67b67d68e6e4fab13f331ee36770f68a0590bf517f1c17ad06a27a6\"", "last_updated": "2022-12-14T14:54:49Z", "stargazers_count": 30, "last_fetched": 1674378068.398956, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "219363790": {"repository_manifest": {"name": "TV4 Play", "country": ["SE"]}, "full_name": "lindell/home-assistant-tv4-play", "category": "integration", "description": "Play videos from the Swedish channel 4", "domain": "tv4_play", "etag_repository": "W/\"4d2a0ba1e4576c1f6b398d0c3b8ea62be8ad929ccc7678f4be41f72f9b3729b6\"", "last_updated": "2022-11-17T13:46:26Z", "stargazers_count": 18, "topics": ["tv4", "tv4play"], "last_fetched": 1674378067.145604, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256709811": {"repository_manifest": {"name": "JQ-300/200/100 Indoor Air Quality Meter", "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "Limych/ha-jq300", "authors": ["@Limych"], "category": "integration", "description": "JQ-300 Indoor Air Quality Meter Home Assistant Integration", "domain": "jq300", "downloads": 16, "etag_repository": "W/\"0671a4a537b732ae10187e4e8f5194f06edfddaae2f8f6140766812ad307ac7b\"", "last_updated": "2022-06-28T15:11:58Z", "stargazers_count": 42, "topics": ["air-quality", "air-quality-measurements", "air-quality-sensor", "home-assistant-component"], "last_fetched": 1656859274.862031, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200035037": {"repository_manifest": {"name": "Discord Game", "homeassistant": "2022.03.0b0"}, "full_name": "LordBoos/discord_game", "category": "integration", "description": "Home Assistant custom component to get online and game status of Discord users", "domain": "discord_game", "etag_repository": "W/\"57ae54bde2768de33de792b0803a1b84a73e6230d3fc9816c606ba42db73afc3\"", "last_updated": "2022-10-02T22:38:34Z", "stargazers_count": 37, "last_fetched": 1671385090.134191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "242335771": {"repository_manifest": {"name": "SVT Play", "country": ["SE"]}, "full_name": "lindell/home-assistant-svt-play", "category": "integration", "description": "Play SVT Play videos and channels via home assistant", "domain": "svt_play", "etag_repository": "W/\"1ed839fbcbc8d9d96e6e94a428f4378b2ffc5d7ea7f7f7fbeafce82830b562b7\"", "last_updated": "2022-05-24T17:33:40Z", "stargazers_count": 19, "topics": ["svt", "svtplay", "sweden", "tv", "video"], "last_fetched": 1672948232.466523, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183064800": {"repository_manifest": {"name": "Email Sensor", "render_readme": true}, "full_name": "ljmerza/ha-email-sensor", "authors": ["@ljmerza"], "category": "integration", "description": "Email Sensor for collecting tracking numbers from over 30 providers.", "domain": "email", "etag_repository": "W/\"1455bf2078a96d1da8b47f5c9c841121f2feffb5d95109ce14caabe993b8cbf0\"", "last_updated": "2022-12-14T17:39:15Z", "stargazers_count": 67, "last_fetched": 1672948234.951535, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246657442": {"repository_manifest": {"name": "Current Cost"}, "full_name": "lolouk44/CurrentCost_HA_CC", "authors": ["@lolouk44"], "category": "integration", "description": "CurrentCost Meter Reading Custom Component for Home Assistant ", "domain": "currentcost", "etag_repository": "W/\"17aaaa90b2e1850aa066444bd9523aa4a64836ff20c782e88eabe4c43ea62a5e\"", "last_updated": "2023-01-04T20:15:24Z", "stargazers_count": 16, "topics": ["cc128", "current-cost", "currentcost", "envi", "envir"], "last_fetched": 1674378069.933757, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "243841075": {"repository_manifest": {"name": "CS:GO game state", "homeassistant": "0.100"}, "full_name": "lociii/homeassistant-csgo", "authors": ["@lociii"], "category": "integration", "description": "CS:GO gamestate reporting to Home Assistant", "domain": "csgo_gamestate", "etag_repository": "W/\"2447519104fced2261a4b9bc0e2aad86b379b0562067e1298e2b7dada57462ef\"", "last_updated": "2022-03-02T16:54:48Z", "stargazers_count": 16, "last_fetched": 1665938946.349919, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262203345": {"repository_manifest": {"name": "Midea Smart Aircon", "homeassistant": "0.110.2"}, "full_name": "mac-zhou/midea-ac-py", "authors": ["@mac-zhou"], "category": "integration", "description": "Home Assistant Custom Integration for Midea Group(Hualing, Senville, Klimaire, AirCon, Century, Pridiom, Thermocore, Comfee, Toshiba, Carrier, Goodman, Friedrich, Samsung, Kenmore, Trane, Lennox, LG and much more) Air Conditioners via LAN.", "domain": "midea_ac", "etag_repository": "W/\"b805f00682b8078e1a8fe3800e38b65893d2ad8631140c363602a2b28ca74c52\"", "last_updated": "2023-01-20T23:23:00Z", "stargazers_count": 430, "last_fetched": 1674378073.504506, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "254347436": {"repository_manifest": {"name": "Waste Collection Schedule"}, "full_name": "mampfes/hacs_waste_collection_schedule", "authors": ["@mampfes"], "category": "integration", "description": "Home Assistant integration framework for (garbage collection) schedules", "domain": "waste_collection_schedule", "etag_repository": "W/\"307b8f92922fc85d04918e7ae9eb4534a7a320a2c252393ca0ee8523629144a6\"", "last_updated": "2023-01-21T07:43:39Z", "stargazers_count": 330, "topics": ["abfall", "abfallnavi", "abfallplus", "garbage", "garbage-collection", "jumomind", "muell", "muellabfuhr", "muellsammlung", "mymuell", "regioit", "waste", "waste-collection"], "last_fetched": 1674378076.412754, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195883127": {"repository_manifest": {}, "full_name": "Martinvdm/garbage-nissewaard-homeassistant", "authors": ["@Martinvdm", "@vloris"], "category": "integration", "description": "Garbage collection Nissewaard for Home Assistant", "domain": "nissewaard", "etag_repository": "W/\"180f3b53d867b79be731b38ae9e95547c3f90ab9338f9af25526591e478608bc\"", "last_updated": "2021-04-11T12:18:11Z", "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197578489": {"repository_manifest": {}, "full_name": "mlowijs/HomeAssistant-TeslaCustomComponent", "authors": ["@mlowijs", "@robhofmann"], "category": "integration", "description": null, "domain": "tesla_cc", "etag_repository": "W/\"c1ea2978f62e2b1223a56230bb3578a5459da1bbfb109d0ccd207412e4f4f4fa\"", "last_updated": "2020-06-13T08:59:32Z", "stargazers_count": 7, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "295627573": {"repository_manifest": {"name": "Fortnite Stats", "hacs": "0.24.0", "homeassistant": "0.110.0", "render_readme": true}, "full_name": "michaellunzer/Home-Assistant-Custom-Component-Fortnite", "authors": ["@michaellunzer", "@clyra"], "category": "integration", "description": "This is a Home-Assistant custom component that pulls Fortnite stats using the python API library from the site fortnitetracker.com", "domain": "fortnite", "etag_repository": "W/\"a3fc18b2c93c1997a6e9c8455f7101b7557c957c51d53c97c9aa54c1ce2e2e0b\"", "last_updated": "2021-11-03T06:00:38Z", "stargazers_count": 4, "topics": ["fortnite", "fortnite-api", "fortnite-stats"], "last_fetched": 1641470259.763951, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291317330": {"repository_manifest": {"name": "Electric Vehicle Charge Control", "country": "SK", "homeassistant": "2021.12.0"}, "full_name": "mletenay/home-assistant-ev-charge-control", "authors": ["@mletenay"], "category": "integration", "description": "Home Assistant custom component for Electric Vehicle Charge Control devices by Phoenix Contact ", "domain": "phoenix_contact", "etag_repository": "W/\"7c8fe87feef859e6b33c453066f9cde308e519ad4d365d285e467a8764b14ceb\"", "last_updated": "2022-06-05T05:45:42Z", "topics": ["charging-stations", "electric-vehicles", "evse"], "last_fetched": 1674378090.915503, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203244705": {"repository_manifest": {"name": "OpenMensa Sensor"}, "full_name": "Mofeywalker/openmensa-hass-component", "category": "integration", "description": "A platform sensor which tells you which meals are served in your canteen.", "domain": "openmensa", "etag_repository": "W/\"8a61940cd695986ad5ae7778c789bc87929382ce7117389c7e530d45a299cf9d\"", "last_updated": "2021-09-04T08:04:28Z", "stargazers_count": 2, "last_fetched": 1653229830.351472, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "289251122": {"repository_manifest": {"name": "GoodWe Inverter (experimental)", "country": "SK", "homeassistant": "2022.7.0"}, "full_name": "mletenay/home-assistant-goodwe-inverter", "authors": ["@mletenay"], "category": "integration", "description": "Experimental version of Home Assistant integration for Goodwe solar inverters", "domain": "goodwe", "etag_repository": "W/\"69faa2eb85a9b130402dcfc9ed3d4f70a469f465e4b82f54a5b82af6ab6d1229\"", "last_updated": "2022-12-27T11:56:26Z", "stargazers_count": 89, "topics": ["goodwe", "pv-systems"], "last_fetched": 1674378091.303098, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "239366330": {"repository_manifest": {"name": "SenseME", "homeassistant": "2021.3.0"}, "full_name": "mikelawrence/senseme-hacs", "authors": ["@mikelawrence"], "category": "integration", "description": "Haiku with SenseME fan integration for Home Assistant", "domain": "senseme", "etag_repository": "W/\"04b9d5856388f5c2d00fe95f7ad30d4783eafe128b0f8b7b4b5f94d17fbc4eaa\"", "last_updated": "2021-12-28T02:15:41Z", "stargazers_count": 22, "topics": ["bigassfans", "fan", "haiku", "senseme"], "last_fetched": 1674378090.345204, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "272094506": {"repository_manifest": {"name": "Blitzortung.org Lightning Detector", "homeassistant": "2022.10.0"}, "full_name": "mrk-its/homeassistant-blitzortung", "authors": ["@mrk-its"], "category": "integration", "description": "Custom Component for fetching lightning data from blitzortung.org", "domain": "blitzortung", "etag_repository": "W/\"64f17820a33b5afe37aa4739663eaf4528c41cbb92b7b1a7565484f90850f856\"", "last_updated": "2023-01-15T20:48:13Z", "stargazers_count": 96, "topics": ["blitzortung", "lightning-network"], "last_fetched": 1674378097.52893, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "253842395": {"repository_manifest": {"name": "Jaguar Landrover InControl", "homeassistant": "0.115.0"}, "full_name": "msp1974/homeassistant-jlrincontrol", "authors": ["@msp1974"], "category": "integration", "description": "An integration for JLR InControl to Home Assistant", "domain": "jlrincontrol", "etag_repository": "W/\"e53bf770a70b9a6d3db051e0205ee7921558c35d56ecc2394d2ea751d361961f\"", "last_updated": "2023-01-12T08:57:57Z", "stargazers_count": 35, "topics": ["i-pace", "jaguar", "jlr", "landrover", "rrs", "vehicle", "wirelesscar"], "last_fetched": 1674378099.529511, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255662264": {"repository_manifest": {"name": "Landroid Cloud", "homeassistant": "2022.7.0", "zip_release": true, "filename": "landroid_cloud.zip"}, "full_name": "MTrab/landroid_cloud", "authors": ["@MTrab"], "category": "integration", "description": "Landroid Cloud component for Home Assistant", "domain": "landroid_cloud", "downloads": 3367, "etag_repository": "W/\"e19b337674d7a05cc6beef6721b287ddf787133766cfa2c3c7ad57955839f859\"", "last_updated": "2023-01-12T12:06:32Z", "stargazers_count": 118, "topics": ["homeassistant-custom-component", "kress", "landroid", "landxcape", "mower-robot", "worx"], "last_fetched": 1674378102.895951, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269588712": {"repository_manifest": {"name": "Philips Hue Play HDMI Sync Box", "render_readme": true, "homeassistant": "2022.10.0"}, "full_name": "mvdwetering/huesyncbox", "authors": ["@mvdwetering"], "category": "integration", "description": "Home Assistant integration for the Philips Hue Play HDMI Sync Box", "domain": "huesyncbox", "downloads": 28, "etag_repository": "W/\"d31113063b5a34b0ae52187edd89bc72d2428ade1ddfced4ee5e82d92e07f320\"", "last_updated": "2022-10-16T16:47:35Z", "stargazers_count": 69, "topics": ["hue-entertainment", "huesync", "philips-hue"], "last_fetched": 1674378105.853154, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192604318": {"repository_manifest": {"name": "iPhone Device Tracker", "homeassistant": "0.94.0", "zip_release": true, "filename": "iphonedetect.zip"}, "full_name": "mudape/iphonedetect", "authors": ["@mudape"], "category": "integration", "description": "A custom component for Home Assistant to detect iPhones connected to local LAN, even if the phone is in deep sleep.", "domain": "iphonedetect", "downloads": 11689, "etag_repository": "W/\"719c85fcdd4ef673324d97c1b8852fd77eaaad713abf61b4622b8775ce4edba6\"", "last_updated": "2022-06-15T17:47:40Z", "stargazers_count": 231, "topics": ["iphonedetect"], "last_fetched": 1674378103.461745, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "278930028": {"repository_manifest": {"name": "Linkplay-based speakers and devices", "homeassistant": "2022.3.0"}, "full_name": "nagyrobi/home-assistant-custom-components-linkplay", "authors": ["@nicjo814", "@limych", "@nagyrobi"], "category": "integration", "description": "LinkPlay based media devices integration for Home Assistant. Supports multiroom, Media Browser, and snapshot and restore functionality for TTS. Compatible with Mini Media Player card.", "domain": "linkplay", "etag_repository": "W/\"1e228fad5abcf0ce682e9fe965ca18c1be048a84977312d73ca8add82d49b96c\"", "last_updated": "2022-12-06T05:22:44Z", "stargazers_count": 98, "topics": ["arylic", "cvte", "harman-kardon", "linkplay", "speaker", "tts"], "last_fetched": 1674378109.059318, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286186485": {"repository_manifest": {"name": "Scheduler component", "render_readme": true}, "full_name": "nielsfaber/scheduler-component", "authors": ["@nielsfaber"], "category": "integration", "description": "Custom component for HA that enables the creation of scheduler entities", "domain": "scheduler", "downloads": 67, "etag_repository": "W/\"9e2d12e9f3b7a28aa12dd1d77b2bcd774e1e3481e3d095c2b518a56938389686\"", "last_updated": "2022-12-15T18:50:24Z", "stargazers_count": 373, "topics": ["scheduler"], "last_fetched": 1674378116.055972, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "153870340": {"repository_manifest": {"name": "Harmony Hub Climate Controller", "homeassistant": "0.96.0", "render_readme": true}, "full_name": "nickneos/HA_harmony_climate_component", "category": "integration", "description": "\u2744 Use a Harmony Hub to control an IR controlled climate device", "domain": "harmony_ac", "etag_repository": "W/\"c6ad01150371ed12cb822e5ba4ced5830134ed652d6dcbc44143455ee56757df\"", "last_updated": "2021-03-12T13:27:19Z", "stargazers_count": 23, "topics": ["air-conditioner", "climate", "harmony", "hvac"], "last_fetched": 1671385132.298254, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "154417419": {"repository_manifest": {}, "full_name": "nstrelow/ha_philips_android_tv", "category": "integration", "description": "Home Assistant custom component for the newer (2016+) Philips Android TVs", "domain": "philips_android_tv", "etag_repository": "W/\"2ad5df3bddb059dd4bad923b643954d1c30c47dc5ca14390c43834c7e28b0c0e\"", "last_updated": "2021-07-22T15:04:24Z", "stargazers_count": 104, "topics": ["philips-tv", "tv"], "last_fetched": 1674378116.887947, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "144888844": {"repository_manifest": {}, "full_name": "Paul-dH/Home-Assisant-Sensor-OvApi", "category": "integration", "description": null, "domain": "ovapi", "etag_repository": "W/\"16a70c1011a7970b621ccd3480be5d41c780494e0f1130e92b1c9836809a3ae0\"", "last_updated": "2022-02-13T09:05:36Z", "stargazers_count": 16, "last_fetched": 1671385140.02804, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "140907992": {"repository_manifest": {"name": "Goldair WiFi climate devices", "render_readme": true, "hide_default_branch": true, "country": ["NZ", "AU"], "homeassistant": "0.96.0", "zip_release": true, "filename": "homeassistant-goldair-climate.zip"}, "full_name": "nicole-ashley/homeassistant-goldair-climate", "authors": ["@nikrolls"], "category": "integration", "description": "Home Assistant integration for Goldair WiFi heaters, dehumidifiers and fans", "domain": "goldair_climate", "downloads": 900, "etag_repository": "W/\"0f9d262e39f8f50c18e535435bd2a15403bde6084f93979ec74b0e004574b0d3\"", "last_updated": "2022-05-17T04:15:51Z", "stargazers_count": 17, "topics": ["dehumidifier", "fan", "goldair", "heater", "wifi"], "last_fetched": 1674378115.522444, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250022973": {"repository_manifest": {"name": "SmartThinQ LGE Sensors", "homeassistant": "2022.11.0"}, "full_name": "ollo69/ha-smartthinq-sensors", "authors": ["@ollo69"], "category": "integration", "description": "HomeAssistant custom integration for SmartThinQ LG devices configurable with Lovelace User Interface.", "domain": "smartthinq_sensors", "etag_repository": "W/\"1b62e5d48b8044894cb12cfc2ca80ea7c62ae5872cdb6274714d1b9f9270e2be\"", "last_updated": "2023-01-16T20:54:26Z", "stargazers_count": 623, "topics": ["ac", "air-purifier", "climate", "dehumidifier", "dishwasher", "dryer", "fan", "lg", "lg-devices", "lge", "oven", "range", "refrigerator", "sensors", "smartthinq", "thinq", "washer"], "last_fetched": 1674378120.60755, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "247070270": {"repository_manifest": {"name": "SamsungTV Smart", "homeassistant": "2022.11.0"}, "full_name": "ollo69/ha-samsungtv-smart", "authors": ["@ollo69"], "category": "integration", "description": "\ud83d\udcfa Home Assistant SamsungTV Smart Component with simplified SmartThings API Support configurable from User Interface.", "domain": "samsungtv_smart", "etag_repository": "W/\"beab8371f4951d82bf297f5c325d1f75d2a86ea66f98d210e309cb64ddf7e4d2\"", "last_updated": "2023-01-06T19:29:52Z", "stargazers_count": 250, "topics": ["samsung", "samsung-smart-tv", "samsung-tv", "smartthings"], "last_fetched": 1674378120.421823, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237102126": {"repository_manifest": {"name": "Warsaw ZTM Information", "country": "PL", "homeassistant": "0.100.0"}, "full_name": "peetereczek/ztm", "authors": ["@kabturek", "@peetereczek"], "category": "integration", "description": "Home Assistant (hass.io) custom component for Warsaw public transport", "domain": "ztm", "etag_repository": "W/\"bdb98d6369e66f4023ffd0246ef167088b9a5d1ea79324d72a2bac550c924eea\"", "last_updated": "2022-02-02T11:15:20Z", "stargazers_count": 6, "last_fetched": 1665325695.052061, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256733675": {"repository_manifest": {"name": "Cover Time Based RF (script/entity)", "homeassistant": "2021.4"}, "full_name": "nagyrobi/home-assistant-custom-components-cover-rf-time-based", "authors": ["@davidramosweb", "@nagyrobi", "@Alfiegerner"], "category": "integration", "description": "Time-based cover with customizable scripts or entity to trigger opening, stopping and closing. Position is calculated based on the fraction of time spent by the cover traveling up or down. State can be updated with information based on external sensors.", "domain": "cover_rf_time_based", "etag_repository": "W/\"2b0748c2c68fa1d79e8051a87657e74bb606ba35291d6e273a998ce4261edab1\"", "last_updated": "2022-09-28T07:43:22Z", "stargazers_count": 56, "topics": ["433", "433mhz", "cover", "rf", "roller-shutters", "script", "service", "shutter", "trigger"], "last_fetched": 1672948277.423725, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259270792": {"repository_manifest": {}, "full_name": "peternijssen/home-assistant-jumbo", "authors": ["@peternijssen"], "category": "integration", "description": ":convenience_store: Integrate Jumbo.com in Home Assistant", "domain": "jumbo", "etag_repository": "W/\"91ca1fecb2d400602705bfb1817fd0cdebe4723b69830365aaeaa741ee1ce322\"", "last_updated": "2021-03-29T18:10:16Z", "stargazers_count": 7, "topics": ["jumbo", "supermarket"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196057008": {"repository_manifest": {"name": "Attributes extractor", "homeassistant": "0.103.0"}, "full_name": "pilotak/homeassistant-attributes", "authors": ["@pilotak"], "category": "integration", "description": "Breaks out specified attribute from other entities to a sensor", "domain": "attributes", "etag_repository": "W/\"86cd68bb530b1ff1270fb4e7f9c86ad100eecce29603a6623d4579a9ca21e92a\"", "last_updated": "2021-03-13T13:11:19Z", "stargazers_count": 72, "topics": ["attributes", "breakout"], "last_fetched": 1674378132.067166, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236123258": {"repository_manifest": {"name": "Camect Integration", "country": "US", "homeassistant": "0.99.9", "render_readme": true}, "full_name": "pfunkmallone/HACS-camect-integration", "authors": ["@camect"], "category": "integration", "description": "A HACS integration for the Camect smart home surveillance system", "domain": "camect", "etag_repository": "W/\"6c0b283ea7b213df79202645868a9a62747f6bd4a4167f356a0d5bfcd6cfd83d\"", "last_updated": "2022-08-09T23:38:00Z", "stargazers_count": 4, "topics": ["camect"], "last_fetched": 1665325700.295935, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196055705": {"repository_manifest": {"name": "Clientraw weather parser", "homeassistant": "2022.11"}, "full_name": "pilotak/homeassistant-clientraw", "authors": ["@pilotak"], "category": "integration", "description": "Clientraw weather parser (clientraw.txt) for HomeAssistant", "domain": "clientraw", "etag_repository": "W/\"ff87827c7c7ec75dbed1095798c60991bf2fbb05a78aba83447389954af07435\"", "last_updated": "2022-12-16T14:16:46Z", "stargazers_count": 12, "topics": ["clientraw", "davis", "weather"], "last_fetched": 1674378132.650917, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199549304": {"repository_manifest": {"name": "Google Keep", "render_readme": true, "zip_release": true, "filename": "google_keep.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Google-Keep", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses gkeepapi library to download a list of notes from https://keep.google.com/.", "domain": "google_keep", "downloads": 2837, "etag_repository": "W/\"04eac004f4b1ec45ce25f31f2dc760908c298c058e677eb500d1beabdf119926\"", "last_updated": "2022-08-15T02:29:51Z", "stargazers_count": 53, "topics": ["notes"], "last_fetched": 1672948303.264369, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193371469": {"repository_manifest": {"name": "Antistorm sensor", "country": ["PL"], "render_readme": true, "zip_release": true, "filename": "antistorm.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Antistorm", "authors": ["PiotrMachowski"], "category": "integration", "description": "This sensor uses official API to get storm warnings from https://antistorm.eu.", "domain": "antistorm", "downloads": 245, "etag_repository": "W/\"37c0fa21b5175c5a754b43f274442e681ad366adbbecec198ac4e1533f253a8d\"", "last_updated": "2022-08-15T02:30:20Z", "stargazers_count": 11, "topics": ["weather"], "last_fetched": 1662801921.627541, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193371652": {"repository_manifest": {"name": "Looko2 sensor", "country": ["PL"], "render_readme": true, "zip_release": true, "filename": "looko2.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Looko2", "authors": ["PiotrMachowski"], "category": "integration", "description": "This sensor uses official API to get air quality data from https://looko2.com.", "domain": "looko2", "etag_repository": "W/\"97e4a5d297b03104d88c016843750ffd124377c4f08b65934c2aec25bd393e9d\"", "last_updated": "2022-01-23T17:08:49Z", "stargazers_count": 5, "topics": ["air-quality", "weather"], "last_fetched": 1643571244.090062, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207881337": {"repository_manifest": {"name": "Anniversaries", "zip_release": true, "filename": "anniversaries.zip", "homeassistant": "0.109.0"}, "full_name": "pinkywafer/Anniversaries", "authors": ["@pinkywafer"], "category": "integration", "description": "Anniversary Countdown Sensor for Home Assistant", "domain": "anniversaries", "downloads": 6078, "etag_repository": "W/\"2dfeb4f2b6a716cdc0c0b1bb204d0bef8ab7251d8d7526a24df2a0c5c2a703c3\"", "last_updated": "2022-11-03T17:01:40Z", "stargazers_count": 120, "topics": ["anniversaries"], "last_fetched": 1674378133.74223, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193588464": {"repository_manifest": {"name": "Rozk\u0142adzik sensor", "country": "PL", "render_readme": true, "zip_release": true, "filename": "rozkladzik.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Rozkladzik", "authors": ["PiotrMachowski"], "category": "integration", "description": "This sensor uses unofficial API to get data from https://www.rozkladzik.pl and provide information about departures for chosen stop.", "domain": "rozkladzik", "downloads": 188, "etag_repository": "W/\"6871972b6a5b11c6db96bbf6e3380713120f7ae86b39b5d95f85def9253e3fe0\"", "last_updated": "2022-08-15T02:29:55Z", "stargazers_count": 8, "topics": ["public-transport"], "last_fetched": 1672948305.702591, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193588612": {"repository_manifest": {"name": "iMPK sensor", "country": ["PL"], "render_readme": true, "zip_release": true, "filename": "impk.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-iMPK", "authors": ["PiotrMachowski"], "category": "integration", "description": "This sensor uses unofficial API retrieved by decompilation of iMPK application to provide a list of MPK Wroc\u0142aw news available in original app.", "domain": "impk", "etag_repository": "W/\"6f671f7da1df66ed13d3ab2c486ab1e83ee36aa4ed3b1603beaf37e34ded2d10\"", "last_updated": "2022-01-23T16:43:48Z", "stargazers_count": 13, "topics": ["public-transport", "wroclaw"], "last_fetched": 1644420427.223118, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224073673": {"repository_manifest": {"name": "Calendarific", "zip_release": true, "filename": "calendarific.zip", "homeassistant": "2021.12.0"}, "full_name": "pinkywafer/Calendarific", "authors": ["@pinkywafer"], "category": "integration", "description": "Calendarific holiday sensor for Home Assistant ", "domain": "calendarific", "downloads": 930, "etag_repository": "W/\"69cc2129f22d4cd479b16e4ed6c6183a701c2ed5bed4acd2693c255d1b8c7abc\"", "last_updated": "2022-10-23T00:30:34Z", "stargazers_count": 13, "topics": ["api-client", "calendarific", "holidays"], "last_fetched": 1671385151.329032, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193371566": {"repository_manifest": {"name": "Burze.dzis.net sensor", "country": ["EU", "PL"], "render_readme": true, "zip_release": true, "filename": "antistorm.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Burze.dzis.net", "authors": ["PiotrMachowski"], "category": "integration", "description": "This sensor uses official API to get weather warnings for Poland and storm warnings for Europe from https://burze.dzis.net.", "domain": "burze_dzis_net", "downloads": 1396, "etag_repository": "W/\"d904f3d84cee952ec5888e0a553f85b89af4a9e48a45f0b2f1db9adb6c4253bb\"", "last_updated": "2022-08-15T02:29:40Z", "stargazers_count": 30, "topics": ["weather"], "last_fetched": 1665325705.326835, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193371922": {"repository_manifest": {"name": "Tauron AMIplus", "render_readme": true, "zip_release": true, "filename": "tauron_amiplus.zip", "country": "PL"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Tauron-AMIplus", "authors": ["PiotrMachowski"], "category": "integration", "description": "This sensor uses unofficial API to get energy usage and generation data from https://elicznik.tauron-dystrybucja.pl.", "domain": "tauron_amiplus", "downloads": 23, "etag_repository": "W/\"22fed145371f703f02fd077028afec4b1ad0334819e585a31224c1c94ed31e3e\"", "last_updated": "2023-01-22T02:36:51Z", "stargazers_count": 70, "topics": ["energy-monitor"], "last_fetched": 1674378139.041571, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "271398374": {"repository_manifest": {"name": "Saver", "render_readme": true, "zip_release": true, "filename": "saver.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Saver", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This custom component allows you to save current state of any entity and use its data later to restore it.", "domain": "saver", "downloads": 1263, "etag_repository": "W/\"ff7abdf803c069a03bf3bd3789a7038e1a46ac537f0afb4fba5cd24bbaa57041\"", "last_updated": "2022-12-23T22:20:39Z", "stargazers_count": 42, "topics": ["automation", "helper", "save", "script", "variable"], "last_fetched": 1672948305.830371, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "166045890": {"repository_manifest": {}, "full_name": "pippyn/Home-Assistant-Sensor-Afvalbeheer", "authors": ["@pippyn"], "category": "integration", "description": "Provides Home Assistant sensors for multiple Dutch and Belgium waste collectors", "domain": "afvalbeheer", "etag_repository": "W/\"9d50da1f5d1f12a3be6ad8ebc39053f8c3f5c9d60edf7fa2d94d511a963afca2\"", "last_updated": "2022-12-22T14:15:27Z", "stargazers_count": 182, "topics": ["belgium", "dutch", "hassio-integration", "waste-collectors"], "last_fetched": 1674378139.856448, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209996125": {"repository_manifest": {"name": "Remote PicoTTS", "render_readme": true, "homeassistant": "0.36"}, "full_name": "Poeschl/Remote-PicoTTS", "category": "integration", "description": "A custom component for Home Assistant which integrates my picoTTS Addon on HASS.io,", "domain": "picotts_remote", "etag_repository": "W/\"b0d07712cdffb60d2b8c5311d24e3e5133e65b82010f86ec8280752362b3e8d4\"", "last_updated": "2022-06-03T14:25:15Z", "stargazers_count": 11, "topics": ["component", "picotts-addon", "remote-picotts"], "last_fetched": 1674378142.287357, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "281956859": {"repository_manifest": {"name": "D-Link HNAP", "homeassistant": "0.109.0", "render_readme": true}, "full_name": "postlund/dlink_hnap", "authors": ["@postlund"], "category": "integration", "description": "Experimental integration to Home Assistant supporting D-Link devices", "domain": "dlink_hnap", "etag_repository": "W/\"2de4c56a65b5128d451b29dcce7d5530a9b78ed688f40819ae026e8b857c76d1\"", "last_updated": "2022-05-28T09:18:28Z", "stargazers_count": 28, "topics": ["custom-integration", "dlink"], "last_fetched": 1671385162.404136, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "238568340": {"repository_manifest": {"name": "Freebox Player"}, "full_name": "Pouzor/freebox_player", "authors": ["@Pouzor"], "category": "integration", "description": "Custom Component for Home Assistant, enable to remote Freebox Player", "domain": "freebox_player", "etag_repository": "W/\"77abe1e7724ace4ccd4e02e3849018e2445adc5f2d141145e366a6396383a068\"", "last_updated": "2021-05-12T23:52:40Z", "stargazers_count": 14, "topics": ["freebox"], "last_fetched": 1662801928.584552, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "219035415": {"repository_manifest": {"name": "GeoRide integration", "render_readme": true, "country": ["FR"], "homeassistant": "2022.2.0"}, "full_name": "ptimatth/GeorideHA", "authors": ["ptimatth"], "category": "integration", "description": "GeoRide integration for Home Assistant", "domain": "georide", "etag_repository": "W/\"85ae249516aaa02feb0b2a3bb9b771d2bce34db29485acc6633e0ed43bfdc509\"", "last_updated": "2022-04-06T15:56:13Z", "stargazers_count": 13, "last_fetched": 1666451474.130059, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "289550686": {"repository_manifest": {"name": "Zoom", "render_readme": true, "homeassistant": "2021.5.0b0", "zip_release": true, "filename": "zoom.zip"}, "full_name": "raman325/ha-zoom-automation", "authors": ["@raman325"], "category": "integration", "description": "Custom Home Assistant component for Zoom. Tracks when you are connected to a Zoom call by default but may allow you to track more.", "domain": "zoom", "downloads": 1026, "etag_repository": "W/\"a9804a0084d1c756fe8ee3df3159bd7ebc3c302e6025bf3d2185e4e8f6e74767\"", "last_updated": "2022-12-13T06:27:24Z", "stargazers_count": 57, "topics": ["automation", "ha", "webhook-event", "zoom"], "last_fetched": 1671385168.527619, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197983504": {"repository_manifest": {}, "full_name": "rdehuyss/homeassistant-custom_components-denkovi", "authors": ["@rdehuyss"], "category": "integration", "description": "Support for Denkovi IOT Relay modules in HomeAssistant", "domain": "denkovi", "etag_repository": "W/\"90d830139f4f549c3b1b20e60a5ef2b25a34277c70b1e0e818881f39dcad838e\"", "last_updated": "2021-07-24T21:00:35Z", "stargazers_count": 5, "topics": ["denkovi"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260264517": {"repository_manifest": {"name": "ClimaCell Weather Provider"}, "full_name": "r-renato/ha-climacell-weather", "authors": ["@r-renato"], "category": "integration", "description": "Climacell weather provider integration is a custom component for Home Assistant. The climacell platform uses the Climacell API as a source for meteorological data for your location.", "domain": "climacell", "etag_repository": "W/\"431780eea6b9180dd98893e80eaa2cfe552ca050ff42e228c92c6eecdac927d1\"", "last_updated": "2022-11-13T18:45:09Z", "stargazers_count": 46, "topics": ["climacell", "weather"], "last_fetched": 1674378146.160343, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "268118148": {"repository_manifest": {"name": "Gardena Smart System", "render_readme": true, "homeassistant": "2021.7.0"}, "full_name": "py-smart-gardena/hass-gardena-smart-system", "authors": ["@py-smart-gardena"], "category": "integration", "description": "Home Assistant custom component integration for Gardena Smart System", "domain": "gardena_smart_system", "etag_repository": "W/\"9dbb90d450ca4fd5df66608b100044154e595f6c3a9de3b9f9c8c7955566278c\"", "last_updated": "2023-01-20T22:43:01Z", "stargazers_count": 121, "topics": ["gardena", "gardena-api", "gardena-smart-system"], "last_fetched": 1674378145.409807, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "225305915": {"repository_manifest": {"name": "BAR garbage collection"}, "full_name": "remco770/garbage-bar-homeassistant", "authors": ["@Martinvdm", "@vloris", "@remco770"], "category": "integration", "description": "Garbage collection BAR for Home Assistant", "domain": "bar_afvalbeheer", "etag_repository": "W/\"d90e45ade1074fa9cec84edbb2634bb498153696566dcf68d03515dda4c501e2\"", "last_updated": "2021-08-24T17:27:18Z", "stargazers_count": 2, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257634153": {"repository_manifest": {"name": "FXMarketAPI Integration"}, "full_name": "rob196/home-assistant-fxmarketapi", "authors": ["@rob196"], "category": "integration", "description": "This is a custom component to integrate into FXMarketAPI (https://fxmarketapi.com) to get the live mid-rates in Home Assistant.", "domain": "fxmarketapi", "etag_repository": "W/\"65a77eae76da8e3ec1dcefd7da4667b745b8f2054e31685c6d5c623a865ad05e\"", "last_updated": "2021-06-01T16:32:25Z", "stargazers_count": 2, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255380953": {"repository_manifest": {"name": "YouLess LS110", "country": ["NL"], "render_readme": true}, "full_name": "rkoebrugge/hacs-youless-component", "authors": ["@rkoebrugge", "@reharmsen", "@pdwonline", "@jongsoftdev"], "category": "integration", "description": "Custom Youless LS110 component for Home-Assistant ", "domain": "youless", "etag_repository": "W/\"a4836852f4e92850fd7c1955a7df5e348d8da34c2b94f403f4767abf166da6f3\"", "last_updated": "2020-06-19T08:52:21Z", "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "140618233": {"repository_manifest": {}, "full_name": "RobHofmann/HomeAssistant-GreeClimateComponent", "authors": ["@robhofmann"], "category": "integration", "description": "Custom Gree climate component written in Python3 for Home Assistant. Controls AC's supporting the Gree protocol.", "domain": "gree", "etag_repository": "W/\"fbe1cddbb7e2cb9219f91ad130e9c4beec0afb8807b0a13be8e722a760d725a5\"", "last_updated": "2022-07-14T07:39:33Z", "stargazers_count": 182, "last_fetched": 1674378156.420137, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "241427839": {"repository_manifest": {"name": "Omnik Inverter Solar Sensor (No Cloud)", "country": "NL", "homeassistant": "2021.9.0"}, "full_name": "robbinjanssen/home-assistant-omnik-inverter", "authors": ["@robbinjanssen"], "category": "integration", "description": "Read the current, daily and total Wh from your Omnik Inverter via local network (no cloud!)", "domain": "omnik_inverter", "etag_repository": "W/\"ba3d6c394001716540793c5c437845b6b714834c126227db17aa4b28c971620b\"", "last_updated": "2022-12-21T07:09:59Z", "stargazers_count": 42, "topics": ["python3"], "last_fetched": 1674378154.066397, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196605143": {"repository_manifest": {}, "full_name": "RobHofmann/HomeAssistant-PhilipsAndroid2014", "authors": ["@SirGilbot", "@robhofmann"], "category": "integration", "description": "Custom component for Philips TV's running Android which are built between 2014 and 2016. Written in Python3 for Home Assistant.", "domain": "philips_2014", "etag_repository": "W/\"bb01bb37bd6f133f107b3072b2e2d468c7992d8fa96d83e7680c196acd5434f5\"", "last_updated": "2021-05-09T12:39:18Z", "stargazers_count": 2, "last_fetched": 1674378156.640773, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "213551635": {"repository_manifest": {}, "full_name": "roberodin/ha-samsungtv-custom", "authors": ["@roberodin"], "category": "integration", "description": "\ud83d\udcfa HomeAssistant - SamsungTV Custom Component", "domain": "samsungtv_custom", "etag_repository": "W/\"ffc1d81318ca92866d166ebb2655db62c9beed90cdfeb1b8fcd43bed43c7b545\"", "last_updated": "2022-05-27T21:07:23Z", "stargazers_count": 104, "last_fetched": 1672948322.394293, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197116235": {"repository_manifest": {}, "full_name": "robmarkcole/HASS-Deepstack-face", "authors": ["@robmarkcole"], "category": "integration", "description": "Home Assistant custom component for using Deepstack face recognition", "domain": "deepstack_face", "etag_repository": "W/\"4eb01cbfe5eb64e930e61c8456e5e6b8b4a1f150b190d063d3d66bd01b1d7c5d\"", "last_updated": "2022-07-05T04:16:46Z", "stargazers_count": 198, "topics": ["computer-vision", "deep-learning"], "last_fetched": 1674378158.508986, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "165791238": {"repository_manifest": {}, "full_name": "robmarkcole/HASS-Deepstack-object", "authors": ["@robmarkcole"], "category": "integration", "description": "Home Assistant custom component for using Deepstack object detection", "domain": "deepstack_object", "etag_repository": "W/\"cd0187b23187bd17b10f6118e7b0a068275b28ad457a855382ff75e9f06227da\"", "last_updated": "2022-11-22T07:55:17Z", "stargazers_count": 399, "topics": ["object-detection"], "last_fetched": 1674378158.771287, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "117426840": {"repository_manifest": {"name": "Volkswagen We Connect", "homeassistant": "2021.12.0b1", "hide_default_branch": true, "zip_release": true, "filename": "volkswagencarnet.zip"}, "full_name": "robinostlund/homeassistant-volkswagencarnet", "authors": ["@robinostlund"], "category": "integration", "description": "Volkswagen Carnet Component for home assistant", "domain": "volkswagencarnet", "downloads": 1671, "etag_repository": "W/\"e4dadc3f23290e75e50efdbb63319f7960cf5a5e2a3bc956f46677ad71ecc694\"", "last_updated": "2023-01-19T13:24:29Z", "stargazers_count": 195, "topics": ["volkswagen-carnet"], "last_fetched": 1674378157.978831, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "135166048": {"repository_manifest": {}, "full_name": "robmarkcole/HASS-Machinebox-Classificationbox", "authors": ["@robmarkcole"], "category": "integration", "description": "Home-Assistant image classification using Machinebox.io", "domain": "classificationbox", "etag_repository": "W/\"a1bee02fdcc93ee63376fd0c9dde29ade536519058c106a08aa0fe1a7f381b00\"", "last_updated": "2022-07-05T04:19:34Z", "stargazers_count": 20, "topics": ["computer-vision", "deep-neural-networks", "machinebox"], "last_fetched": 1672948326.45234, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "160022220": {"repository_manifest": {"name": "Amazon Rekognition"}, "full_name": "robmarkcole/HASS-amazon-rekognition", "authors": ["@robmarkcole"], "category": "integration", "description": "Home Assistant Object detection with Amazon Rekognition", "domain": "amazon_rekognition", "etag_repository": "W/\"5b11a3620abe2901b1cf2ea203db81263a60bc918bf4ec9185440f84287a4e25\"", "last_updated": "2022-11-22T07:55:06Z", "stargazers_count": 80, "topics": ["rekognition"], "last_fetched": 1671385179.308649, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "149443194": {"repository_manifest": {"name": "ADT Pulse", "render_readme": true}, "full_name": "rsnodgrass/hass-adtpulse", "authors": ["@rsnodgrass"], "category": "integration", "description": "ADT Pulse sensor for Home Assistant", "domain": "adtpulse", "etag_repository": "W/\"cea5ae38357b2d44dafe885d0d2a516588c524f0ce5efba97ad5dbe20ab552d2\"", "last_updated": "2022-10-21T06:04:19Z", "stargazers_count": 11, "topics": ["adt-pulse"], "last_fetched": 1671274873.946695, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "535062704": {"repository_manifest": {}, "full_name": "rsnodgrass/hass-integrations", "authors": ["@rsnodgrass"], "category": "integration", "description": "Home Assistant Integrations", "domain": "groupme", "etag_repository": "W/\"bc043cc53f302ba46ff42e5cde5198020502ce0381c4bdfe6767e64416b0c0bf\"", "last_updated": "2022-09-10T17:01:05Z", "last_fetched": 1662898337.513799, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200989730": {"repository_manifest": {"name": "Flo by Moen Smart Water Monitor", "render_readme": true}, "full_name": "rsnodgrass/hass-flo-water", "authors": ["@rsnodgrass", "@snicker", "@DubhAd"], "category": "integration", "description": "Flo Water Control for Home Assistant", "domain": "flo", "etag_repository": "W/\"638207616a96f054ce03b25b9f84cd76cff42e1ac22e98fd369a3a01714e934b\"", "last_updated": "2022-06-03T04:21:58Z", "last_fetched": 1662898337.778253, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200927325": {"repository_manifest": {"name": "Pool Math (Trouble Free Pool)", "render_readme": true}, "full_name": "rsnodgrass/hass-poolmath", "authors": ["@rsnodgrass"], "category": "integration", "description": "Pool Math for Home Assistant", "domain": "poolmath", "etag_repository": "W/\"b700a9e7fa474dd4b3c322ea76fed5a3041d5e89b7aafb2d8e24ee045da500b8\"", "last_updated": "2022-11-07T07:29:36Z", "stargazers_count": 20, "topics": ["pool", "swimming-pool"], "last_fetched": 1671385191.150923, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "205416078": {"repository_manifest": {"name": "SensorPush", "render_readme": true}, "full_name": "rsnodgrass/hass-sensorpush", "authors": ["@rsnodgrass"], "category": "integration", "description": "SensorPush integration for Home Assistant", "domain": "sensorpush", "etag_repository": "W/\"2584236dcbb95ef0053efd1a8aafe8b98af6e31d682bb5840ee2f0cfcfccdfa3\"", "last_updated": "2022-11-16T07:33:19Z", "stargazers_count": 28, "topics": ["iot"], "last_fetched": 1672948337.969496, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "153006394": {"repository_manifest": {}, "full_name": "rt400/School-Vacation", "authors": ["@yuval_mejahez"], "category": "integration", "description": null, "domain": "school_holidays", "etag_repository": "W/\"761168588dc85a18d3bad92eb0fb6163007233852875e5d3b5aebdfa1d02d465\"", "last_updated": "2022-09-01T08:15:23Z", "stargazers_count": 7, "last_fetched": 1665325736.912476, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235385658": {"repository_manifest": {"name": "Xantech/Dayton Audio/Sonance Multi-Zone Amp", "render_readme": true}, "full_name": "rsnodgrass/hass-xantech", "authors": ["@rsnodgrass"], "category": "integration", "description": "Xantech Multi-Zone Matrix Audio for Home Assistant", "domain": "xantech", "etag_repository": "W/\"2bea01ea2aa1a261fd21e13ef6792565d2d56f5558ede7faa32a38f46b3920d3\"", "last_updated": "2022-12-30T18:09:32Z", "stargazers_count": 13, "topics": ["audiophile", "xantech"], "last_fetched": 1674378171.548193, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235915302": {"repository_manifest": {"name": "Marta / Breeze Card", "render_readme": true}, "full_name": "ryanmac8/Home-Assistant-Marta", "category": "integration", "description": "Custom Home Assistant sensor for the Marta/Breeze Card.", "domain": "marta", "etag_repository": "W/\"7e7733dbff3ae7edb0a289bcf2a929a0390275653771322f47137b3c5e636a4c\"", "last_updated": "2021-05-13T14:56:54Z", "stargazers_count": 2, "topics": ["breeze-card", "marta"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279861920": {"repository_manifest": {"name": "Reverso TTS / tts", "render_readme": true}, "full_name": "rt400/ReversoTTS-HA", "authors": ["@yuval_mejahez"], "category": "integration", "description": "ReversoTTS component for HomeAssistant", "domain": "reversotts", "etag_repository": "W/\"fee054f6eeabaab1d7d6ebda7a057fd352d2de9fde5e1052250cd796a5da05e4\"", "last_updated": "2021-05-23T17:14:46Z", "stargazers_count": 34, "topics": ["reversotts", "tts"], "last_fetched": 1672948340.3939, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222845480": {"repository_manifest": {"name": "Nexia Climate Integration", "render_readme": true}, "full_name": "ryannazaretian/hacs-nexia-climate-integration", "authors": ["ryannazaretian"], "category": "integration", "description": "Nexia climate integration for Trane and American Standard thermostats", "domain": "nexia", "etag_repository": "W/\"65a8beb66e249d4f0ced4bf4394bf86ca0ce70b02417a57742ea617a4e4fba01\"", "last_updated": "2020-04-17T15:57:11Z", "stargazers_count": 11, "topics": ["american-standard", "nexia", "nexia-thermostat", "trane"], "last_fetched": 1662801945.653616, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224743334": {"repository_manifest": {"name": "Hunter Douglas and Luxaflex PowerView Cover"}, "full_name": "safepay/cover.hd_powerview", "authors": ["@safepay"], "category": "integration", "description": "Control Hunter Douglas / Luxaflex PowerView Window Shades in Home Assistant", "domain": "hd_powerview", "etag_repository": "W/\"3ff35957be953107455111fc71be11c4ed035346e27b23c39ec70d6a5e2c8e7c\"", "last_updated": "2021-08-19T04:28:48Z", "stargazers_count": 5, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194971711": {"repository_manifest": {}, "full_name": "safepay/sensor.willyweather", "authors": ["@safepay"], "category": "integration", "description": "A WillyWeather Australian Bureau of Meteorology (BoM) integration for Home Assistant", "domain": "willyweather", "etag_repository": "W/\"0be5c4bd22be1ce08e2455250634d76cbb8f7f5c5ee634b3f9bc1c212f2baa1e\"", "last_updated": "2022-08-12T23:15:46Z", "stargazers_count": 9, "last_fetched": 1672948346.812918, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195308808": {"repository_manifest": {}, "full_name": "safepay/sensor.fronius", "authors": ["@safepay"], "category": "integration", "description": "A Fronius Sensor for Home Assistant", "domain": "fronius_inverter", "etag_repository": "W/\"9af96ee55462379808811e82cc04ddccbd9484e9f3f04d0cc55797f0efa4413b\"", "last_updated": "2022-05-17T06:41:25Z", "stargazers_count": 67, "last_fetched": 1674378177.684366, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228579545": {"repository_manifest": {"name": "Orbit BHyve", "homeassistant": "2021.12.4", "render_readme": true}, "full_name": "sebr/bhyve-home-assistant", "authors": ["@sebr"], "category": "integration", "description": "Orbit BHyve custom component for Home Assistant", "domain": "bhyve", "etag_repository": "W/\"eacd849df09c73bdc1266369db5e68467e690ce94d0a336741616976bd0ef456\"", "last_updated": "2023-01-11T03:39:47Z", "stargazers_count": 180, "topics": ["bhyve", "home-assistant-component", "irrigation", "orbit", "orbit-bhyve"], "last_fetched": 1674378182.111015, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "248046910": {"repository_manifest": {"name": "SamsungTV Encrypted", "homeassistant": "2021.8.0"}, "full_name": "sermayoral/ha-samsungtv-encrypted", "authors": ["@sermayoral"], "category": "integration", "description": "Samsung TV Encrypted Models (H & J Series) custom component for Home Assistant", "domain": "samsungtv_encrypted", "etag_repository": "W/\"06f08b8124ba3908cd7c66cb51e999e6b1fbf69179d4602d36637c5202e0d610\"", "last_updated": "2021-12-06T23:49:09Z", "stargazers_count": 33, "topics": ["iot", "samsungtv"], "last_fetched": 1643571247.934823, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220678749": {"repository_manifest": {"name": "cfr sensor", "country": ["IT"]}, "full_name": "shogunxam/Home-Assistant-custom-components-cfr-toscana", "authors": ["@shogunxam"], "category": "integration", "description": "HA Integration for Centro Funzionale Regione Toscana", "domain": "cfr", "etag_repository": "W/\"16e57ed0455bcd34b0470a33c04dbc39845434640258faf0c3df6860063631b1\"", "last_updated": "2022-04-08T06:37:57Z", "stargazers_count": 2, "last_fetched": 1649613935.651754, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231840220": {"repository_manifest": {"name": "MoneyDashboard", "render_readme": true, "country": ["GB"], "homeassistant": "0.99.0"}, "full_name": "shutupflanders/sensor.moneydashboard", "category": "integration", "description": "MoneyDashboard Net Balance sensor for HomeAssistant", "domain": "moneydashboard", "etag_repository": "W/\"a1e751f74e95447677b4ee8a4e38868a01e08829173987e3efaa6c711f497ae9\"", "last_updated": "2020-02-20T10:04:03Z", "stargazers_count": 1, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246417951": {"repository_manifest": {"name": "Whatpulse Sensor", "render_readme": true}, "full_name": "SLG/home-assistant-whatpulse", "authors": ["@SLG"], "category": "integration", "description": "This component retrieves the statistics from Whatpulse", "domain": "whatpulse", "etag_repository": "W/\"dca837f1834a3b20ee94902485acbcaa793a075994123c3d2dc9a726d3fadc5b\"", "last_updated": "2021-06-03T17:59:28Z", "stargazers_count": 1, "topics": ["whatpulse"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261849832": {"repository_manifest": {"name": "Garo Wallbox"}, "full_name": "sockless-coding/garo_wallbox", "authors": ["sockless-coding"], "category": "integration", "description": "Garo wallbox - Home Assistant Component ", "domain": "garo_wallbox", "etag_repository": "W/\"7ecb2ef9de8f5c17e4452d7403d4fc5baa80148a4470bf8f9c2961c87314c2f3\"", "last_updated": "2022-06-03T13:44:13Z", "stargazers_count": 15, "last_fetched": 1665939053.474505, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199332790": {"repository_manifest": {"name": "Variable", "render_readme": true, "homeassistant": "2021.5.1"}, "full_name": "snarky-snark/home-assistant-variables", "authors": ["@snarky-snark"], "category": "integration", "description": "A custom Home Assistant component for declaring and setting generic variable entities dynamically.", "domain": "var", "etag_repository": "W/\"e5deb962b56259d840b913c2c266af2752db0f2b6e5d58a2604f98efd14a096c\"", "last_updated": "2022-07-28T16:45:58Z", "stargazers_count": 198, "last_fetched": 1674378193.635127, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260410453": {"repository_manifest": {"name": "Panasonic Comfort Cloud"}, "full_name": "sockless-coding/panasonic_cc", "authors": ["sockless-coding"], "category": "integration", "description": "Panasonic Comfort Cloud - Home Assistant Component", "domain": "panasonic_cc", "etag_repository": "W/\"c53662c1a5fa1c9fad176b86807f96e829ce365241ee185048b024de4a1aa20a\"", "last_updated": "2022-10-09T14:24:34Z", "stargazers_count": 57, "last_fetched": 1674378197.488055, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "210966517": {"repository_manifest": {"name": "Zwift Sensors", "homeassistant": "2021.12"}, "full_name": "snicker/zwift_hass", "authors": ["snicker"], "category": "integration", "description": "Zwift Sensor Integration for HomeAssistant", "domain": "zwift", "etag_repository": "W/\"1230d73e8acd6deac745f53f4d27cd26191d3f0ca2c70ddd84506d20dcf913a1\"", "last_updated": "2022-02-21T21:41:05Z", "stargazers_count": 31, "last_fetched": 1672948363.785373, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209955487": {"repository_manifest": {"name": "BMR", "render_readme": true, "country": ["CZ"], "homeassistant": "0.110.0"}, "full_name": "slesinger/HomeAssistant-BMR", "authors": ["@slesinger"], "category": "integration", "description": "Control BMR heating regulation system from Home Assistant", "domain": "bmr_hc64", "etag_repository": "W/\"838cdc644918386a9d5672f5de788233d4d981f43c0827023201535ef8f332d5\"", "last_updated": "2021-05-25T19:26:44Z", "stargazers_count": 2, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "267433712": {"repository_manifest": {"name": "PRE Distribuce CZ", "country": "CZ", "homeassistant": "2022.5.6"}, "full_name": "slesinger/HomeAssistant-PREdistribuce", "authors": ["@slesinger"], "category": "integration", "description": "Home Assistant integration to display info about energy plan", "domain": "predistribuce", "etag_repository": "W/\"23333b8b05e5ee592f455b7be57d596325e0a888f4aed290a35a1f4257e065e4\"", "last_updated": "2023-01-11T20:47:40Z", "stargazers_count": 6, "topics": ["energy", "power"], "last_fetched": 1674378193.456885, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "177978011": {"repository_manifest": {"name": "ShellyForHass (Shelly integration)", "hide_default_branch": true, "zip_release": true, "filename": "shelly4hass.zip", "homeassistant": "0.104.0"}, "full_name": "StyraHem/ShellyForHASS", "authors": ["@hakana", "@StyraHem"], "category": "integration", "description": "Shelly smart home platform for Home Assistant", "domain": "shelly", "downloads": 14725, "etag_repository": "W/\"61207a1675c93cbefe280ab94b66e405ff7969df7edbee18d2f7bb0c2c8ca74d\"", "last_updated": "2023-01-07T13:23:07Z", "stargazers_count": 571, "last_fetched": 1674378199.894358, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292616002": {"repository_manifest": {"name": "Seedboxes.cc"}, "full_name": "swartjean/ha-seedboxes-cc", "authors": ["@swartjean"], "category": "integration", "description": "Home Assistant - Seedboxes.cc Integration", "domain": "seedboxes_cc", "etag_repository": "W/\"10c73b84969288f1764356fa0811ce3bbf468c80848ac9c549399ec6d4e61dc6\"", "last_updated": "2021-04-05T10:15:21Z", "stargazers_count": 1, "topics": ["monitoring", "seedbox", "torrents"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "289579468": {"repository_manifest": {"name": "Eskom Loadshedding Interface"}, "full_name": "swartjean/ha-eskom-loadshedding", "authors": ["@swartjean"], "category": "integration", "description": "Fetches loadshedding data from Eskom", "domain": "eskom_loadshedding", "etag_repository": "W/\"3ee4b51b681396203f82b91e8b497e62aaffce37a219253053d4a7a57ec2f01e\"", "last_updated": "2022-11-27T12:13:05Z", "stargazers_count": 46, "topics": ["eskom", "eskomsepush", "esp", "loadshedding", "south-africa"], "last_fetched": 1674378200.005159, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "181743867": {"repository_manifest": {"name": "Brematic", "homeassistant": "2021.10.0", "render_readme": true}, "full_name": "tefinger/hass-brematic", "authors": ["@tefinger"], "category": "integration", "description": "Custom component for Home Assistant to support Brematic devices", "domain": "brematic", "etag_repository": "W/\"1378915c7199dbc136469b7d59838c93d160d8ab83a5e2c8f2f59c7801368576\"", "last_updated": "2022-03-30T09:51:05Z", "stargazers_count": 9, "topics": ["433mhz", "brematic", "brennenstuhl", "gateway", "intertechno"], "last_fetched": 1672948380.37202, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265059207": {"repository_manifest": {"name": "ThermIQ MQTT", "hacs": "0.24.0", "homeassistant": "2022.01", "render_readme": true}, "full_name": "ThermIQ/thermiq_mqtt-ha", "authors": ["@ThermIQ"], "category": "integration", "description": "Home Assistant integration of ThermIQ-MQTT, providing control and logging of Thermia heatpumps ", "domain": "thermiq_mqtt", "etag_repository": "W/\"62591c657e8761eb406d54a8677981a17758572c41f6f0866bb538c8dc8402ca\"", "last_updated": "2022-12-13T21:17:03Z", "stargazers_count": 17, "topics": ["bergvarme", "danfoss", "dhp", "diplomat", "g2", "g3", "ha", "heatpump", "optimum", "thermal-pump", "thermia", "thermiq", "thermiq-mqtt", "varmepump"], "last_fetched": 1672948385.069416, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "121891488": {"repository_manifest": {"name": "Lennox iComfort WiFi Thermostat Integration", "homeassistant": "2021.4.0"}, "full_name": "thevoltagesource/LennoxiComfort", "authors": ["@thevoltagesource"], "category": "integration", "description": "Home Assistant custom component for controlling Lennox iComfort WiFi and AirEase Comfort Sync thermostats.", "domain": "myicomfort", "etag_repository": "W/\"5e2ed5a065ce013c06302ac539cee319ac915bd698ae69bbb64cedb42de75cb0\"", "last_updated": "2022-12-01T04:51:58Z", "stargazers_count": 22, "topics": ["icomfort", "lennox", "thermostat"], "last_fetched": 1671385235.502013, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194140521": {"repository_manifest": {"name": "browser_mod", "homeassistant": "2022.8.0"}, "full_name": "thomasloven/hass-browser_mod", "category": "integration", "description": "\ud83d\udd39 A Home Assistant integration to turn your browser into a controllable entity and media player", "domain": "browser_mod", "etag_repository": "W/\"a54649f904bb8cf1a558da71e7d4376ca667078b69d3ae27762fa69321d1a404\"", "last_updated": "2023-01-03T22:32:48Z", "stargazers_count": 879, "last_fetched": 1674378215.500017, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202220932": {"repository_manifest": {}, "full_name": "thomasloven/hass-favicon", "category": "integration", "description": "\ud83d\udd39 Change the favicon of your Home Assistant instance", "domain": "favicon", "etag_repository": "W/\"92e836989e7f53d8cc0d111d904044670c0300f41533a2e30dfd2cfc2887cc8e\"", "last_updated": "2022-11-11T01:08:24Z", "stargazers_count": 73, "last_fetched": 1674378215.206039, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200897141": {"repository_manifest": {"name": "lovelace_gen", "homeassistant": "2021.4.0"}, "full_name": "thomasloven/hass-lovelace_gen", "category": "integration", "description": "\ud83d\udd39 Improve the lovelace yaml parser for Home Assistant", "domain": "lovelace_gen", "etag_repository": "W/\"96468ce35a20c8a8bc5ddebcb079d9d3511e5f977a073ae374ee04bcc997d139\"", "last_updated": "2022-10-20T21:24:20Z", "stargazers_count": 151, "last_fetched": 1674378216.620884, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164155243": {"repository_manifest": {"render_readme": true, "homeassistant": "2021.9.3"}, "full_name": "TimSoethout/goodwe-sems-home-assistant", "authors": ["@TimSoethout"], "category": "integration", "description": "Sensor for Home Assistant pulling data from the GoodWe SEMS API for solar panel production metrics.", "domain": "sems", "etag_repository": "W/\"ae5f241fa449d9d396dd9369249de0aad2f0bf8ee676f1ad28492dfc96e1c956\"", "last_updated": "2022-10-10T08:07:05Z", "stargazers_count": 61, "topics": ["goodwe-sems", "pv", "sems-portal"], "last_fetched": 1674378221.779622, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "251020820": {"repository_manifest": {"name": "Nespresso Ble coffee machine"}, "full_name": "tikismoke/home-assistant-nespressoble", "authors": ["@Tikismoke"], "category": "integration", "description": "NESPRESSO ble Home Assistant custom componenets and also a 2MQTT script", "domain": "nespresso", "etag_repository": "W/\"c920cfb9578e58a973b4b83dda4ffee218f8a2ac4e749e679d57a5acede56186\"", "last_updated": "2022-08-21T12:37:54Z", "stargazers_count": 34, "topics": ["nespresso", "nespresso-ble"], "last_fetched": 1672948390.798028, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261496794": {"repository_manifest": {"name": "Plcbus integration"}, "full_name": "tikismoke/home-assistant-plcbus", "authors": ["@Tikismoke"], "category": "integration", "description": "a plcbus custom somponents for HomeAssistant", "domain": "plcbus", "etag_repository": "W/\"5757e946da2e064557f6dead2faf4db80b0137bae4e8dc539cd3bb112b0ff401\"", "last_updated": "2023-01-02T22:17:56Z", "stargazers_count": 2, "topics": ["plcbus"], "last_fetched": 1674378221.438284, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195620540": {"repository_manifest": {"name": "Growatt solar panels"}, "full_name": "timvancann/homeassistant-growatt", "authors": ["@timvancann"], "category": "integration", "description": null, "domain": "growatt", "etag_repository": "W/\"37683903517563208c89da2af8f9abb43ae219c829276bf60b2a35f4a8281e6b\"", "last_updated": "2022-08-16T08:05:16Z", "stargazers_count": 3, "last_fetched": 1661585331.699397, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207794499": {"repository_manifest": {"name": "BER Status Sensor", "country": "DE"}, "full_name": "tmechen/ber_status", "category": "integration", "description": "A BER Status Sensor", "domain": "ber_status", "etag_repository": "W/\"e13e0a34595367216e913966337385e523d7a62297608ac1e10cc654f4e564f5\"", "last_updated": "2020-10-31T13:57:32Z", "stargazers_count": 6, "last_fetched": 1671385243.567155, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200399989": {"repository_manifest": {"name": "Clean up snapshots service", "render_readme": true}, "full_name": "tmonck/clean_up_snapshots", "category": "integration", "description": "Service to clean up your home assistant snapshots, so you don't manually have to.", "domain": "clean_up_snapshots_service", "etag_repository": "W/\"83259d585ef21bb49a120d257621f8f3e2aaad800beb398e922ed87c49c8a444\"", "last_updated": "2022-04-17T20:11:53Z", "stargazers_count": 14, "last_fetched": 1672948394.091209, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "225248441": {"repository_manifest": {"name": "Mikrotik Router", "homeassistant": "2022.8.0", "zip_release": true, "filename": "mikrotik_router.zip"}, "full_name": "tomaae/homeassistant-mikrotik_router", "authors": ["@tomaae"], "category": "integration", "description": "Mikrotik router integration for Home Assistant", "domain": "mikrotik_router", "downloads": 5662, "etag_repository": "W/\"cc02055846453965ac2812714f6de90bc5ffb724df793bb9d7b08e1a3ed436f1\"", "last_updated": "2023-01-20T08:36:44Z", "stargazers_count": 173, "topics": ["mikrotik"], "last_fetched": 1674378225.561984, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257275420": {"repository_manifest": {"name": "OpenMediaVault", "homeassistant": "2022.2.0", "zip_release": true, "filename": "openmediavault.zip"}, "full_name": "tomaae/homeassistant-openmediavault", "authors": ["@tomaae"], "category": "integration", "description": "OpenMediaVault integration for Home Assistant", "domain": "openmediavault", "downloads": 4368, "etag_repository": "W/\"afcfea3b3bf1b8f988a6d03077c67f56cb947d76086c7ece65309bc9bbe321fc\"", "last_updated": "2022-10-18T16:15:37Z", "stargazers_count": 58, "topics": ["omv", "openmediavault"], "last_fetched": 1674378226.611918, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "277201070": {"repository_manifest": {"name": "AmsHan", "homeassistant": "2022.8.0b0", "render_readme": true}, "full_name": "toreamun/amshan-homeassistant", "authors": ["@toreamun"], "category": "integration", "description": "Home Assistant integrasjon for str\u00f8mm\u00e5lere (AMS/HAN/P1). Integrasjonen st\u00f8ter b\u00e5de streaming (serieport/TCP-IP) og MQTT (Tibber Pulse, energyintelligence.se etc)", "domain": "amshan", "downloads": 73, "etag_repository": "W/\"ec509598878cb984d95e263d1890ad7b0e97fd6e954869dcd7d3cf54eab46bc7\"", "last_updated": "2022-10-12T19:28:00Z", "stargazers_count": 111, "topics": ["aidon", "ams", "han", "kaifa", "kamstrup", "mbus", "meterbus", "mqtt", "p1", "smart-meter", "tibberpulse"], "last_fetched": 1674378229.204725, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299875200": {"repository_manifest": {"name": "Victor Smart-Kill", "homeassistant": "2022.7.0", "render_readme": true}, "full_name": "toreamun/victorsmartkill-homeassistant", "authors": ["@toreamun"], "category": "integration", "description": "Home Assistant integration for Victor Smart-Kill WI-FI electronic mouse and rat traps from VictorPest.com.", "domain": "victorsmartkill", "etag_repository": "W/\"775175de4c3727fd56587aee0545247474605e07c8e4206f224df2054c818e57\"", "last_updated": "2022-07-10T20:40:33Z", "stargazers_count": 13, "topics": ["mouse", "rat", "trap", "victor"], "last_fetched": 1657789177.609846, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "298816063": {"repository_manifest": {"name": "Trackimo Device Tracker", "country": ["AU"], "homeassistant": "2021.7.1"}, "full_name": "troykelly/hacs-trackimo", "authors": ["@troykelly"], "category": "integration", "description": "Trackimo Integration for HACS Home Assistant", "domain": "trackimo", "etag_repository": "W/\"bbd77b479cbdb53f5de50b91a429d526c0ad3f4c4963fe70486a61e8d6e6b8de\"", "last_updated": "2021-07-12T05:44:23Z", "stargazers_count": 1, "topics": ["geolocation", "trackimo"], "last_fetched": 1648400076.481128, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220313935": {"repository_manifest": {"name": "hass-AMS", "country": ["NO", "SE"], "render_readme": true}, "full_name": "turbokongen/hass-AMS", "authors": ["@turbokongen"], "category": "integration", "description": "Custom component reading AMS through MBus adapter into HomeAssistant", "domain": "ams", "etag_repository": "W/\"77b43ac2b811e7c2cc8b55034c6a6f96fffb8f5fbb69df8a676f765e102b08c4\"", "last_updated": "2023-01-21T10:33:51Z", "stargazers_count": 35, "topics": ["mbus-adapter", "meter", "sensors"], "last_fetched": 1674378234.894755, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "240459262": {"repository_manifest": {"name": "Abfall API (Jumomind)", "country": "DE", "homeassistant": "0.104.3", "render_readme": true}, "full_name": "tuxuser/abfallapi_jumomind_ha", "authors": ["@tuxuser"], "category": "integration", "description": "Abfall API (Jumomind) custom component for home assistant - Get an alert when garbage collection is due", "domain": "abfallapi_jumomind", "etag_repository": "W/\"fa47a3eeb5736313c34262cdbc6b4cba3f844351793d0f9b922028a1317eaa10\"", "last_updated": "2021-12-22T09:57:43Z", "stargazers_count": 3, "topics": ["abfall", "collection", "deutschland", "garbage", "germany", "jumomind", "muell", "waste"], "last_fetched": 1666451557.071938, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "272337216": {"repository_manifest": {"name": "Pandora Car Alarm System", "country": ["RU", "BY"], "render_readme": true}, "full_name": "turbulator/pandora-cas", "authors": ["@turbulator"], "category": "integration", "description": "Home Assistant custom component for Pandora Car Alarm System", "domain": "pandora_cas", "etag_repository": "W/\"794c76360d8c3ab2ddb9e3aa878f57a532cc7e67de00194cca0718795a9b9dc8\"", "last_updated": "2023-01-07T21:35:56Z", "stargazers_count": 38, "topics": ["pandora"], "last_fetched": 1674378235.136777, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237628853": {"repository_manifest": {"name": "Abfall API (RegioIT)", "country": "DE", "homeassistant": "0.104.3", "render_readme": true}, "full_name": "tuxuser/abfallapi_regioit_ha", "authors": ["@tuxuser"], "category": "integration", "description": "Abfall API (RegioIT) custom component for home assistant - Get an alert when garbage collection is due", "domain": "abfallapi_regioit", "etag_repository": "W/\"967837ffbe5f73faaa9d58d7e1be5f919a04799ce536fd3c2b42e319a00374f4\"", "last_updated": "2022-07-07T19:18:48Z", "stargazers_count": 11, "topics": ["collection", "component", "garbage", "muell", "muellabfuhr", "regioit", "waste"], "last_fetched": 1661585345.593755, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "167885769": {"repository_manifest": {"name": "Arlo Camera Support", "homeassistant": "0.110.0"}, "full_name": "twrecked/hass-aarlo", "authors": ["@twrecked"], "category": "integration", "description": "Asynchronous Arlo Component for Home Assistant", "domain": "aarlo", "etag_repository": "W/\"df9fc30db5b6848fc127dcec8456649d52fa4f0af06643da140c7ce09c8dc819\"", "last_updated": "2023-01-02T10:10:47Z", "stargazers_count": 290, "topics": ["arlo", "netgear"], "last_fetched": 1674378238.228989, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "204700563": {"repository_manifest": {"name": "Momentary Switch Component"}, "full_name": "twrecked/hass-momentary", "authors": ["@sherrell"], "category": "integration", "description": "Momentary Switch Component for Home Assistant", "domain": "momentary", "etag_repository": "W/\"26e5bd455e4ab51d540d77f7cf9773076039d202893018897b95d40056b8f921\"", "last_updated": "2023-01-21T01:53:05Z", "stargazers_count": 32, "last_fetched": 1674378238.497957, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245267534": {"repository_manifest": {"name": "Virtual Components"}, "full_name": "twrecked/hass-virtual", "authors": ["@twrecked"], "category": "integration", "description": "Virtual Components for Home Assistant", "domain": "virtual", "etag_repository": "W/\"900e771fafa0c581e85cab9ebd1d98e637aee775f15714ef09ff21b3f3ae9f42\"", "last_updated": "2023-01-12T03:34:50Z", "stargazers_count": 78, "topics": ["virtual"], "last_fetched": 1674378239.095502, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "76125161": {"repository_manifest": {"name": "iCal Sensor", "homeassistant": "2022.5.0"}, "full_name": "tybritten/ical-sensor-homeassistant", "authors": ["@tybritten"], "category": "integration", "description": "an iCal Sensor for Home Assistant", "domain": "ical", "etag_repository": "W/\"366e0cb4acd7aeb3edf31ea24492a53af254c2592434c9256906f8361c21fc74\"", "last_updated": "2022-09-01T07:00:54Z", "stargazers_count": 70, "topics": ["ical"], "last_fetched": 1674378239.570028, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "272140589": {"repository_manifest": {"name": "Monitor Docker"}, "full_name": "ualex73/monitor_docker", "authors": ["@ualex73"], "category": "integration", "description": "Monitor Docker containers from Home Assistant", "domain": "monitor_docker", "etag_repository": "W/\"2db2ea07ae6b4c8a80152a8c347dc3e2b1afffdc76efcaba7816771c0f385b57\"", "last_updated": "2022-10-19T08:12:25Z", "stargazers_count": 183, "topics": ["docker"], "last_fetched": 1674378240.784573, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "247566230": {"repository_manifest": {"name": "Next Rocket Launch", "country": ["FR"], "render_readme": true}, "full_name": "Verbalinsurection/next_rocket_launch", "authors": ["@Verbalinsurection"], "category": "integration", "description": "The Next Rocket Launch sensor platform allows you to monitor the next rocket launch from Teamup.", "domain": "next_rocket_launch", "etag_repository": "W/\"58a33571d336a51bbae5db254759143ee8ba9576cc75430e6e208cb3abf186d5\"", "last_updated": "2022-03-20T18:50:51Z", "stargazers_count": 9, "topics": ["rocket"], "last_fetched": 1648400077.824373, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "120696364": {"repository_manifest": {"name": "OpenSprinkler integration for Home Assistant", "homeassistant": "2021.12.0", "render_readme": true}, "full_name": "vinteo/hass-opensprinkler", "authors": ["@vinteo"], "category": "integration", "description": "OpenSprinkler Integration for Home Assistant", "domain": "opensprinkler", "etag_repository": "W/\"c46cb818eb19e6fbee7982883cbf458d6294f5260f506eeb00581b1177ae74e0\"", "last_updated": "2023-01-03T21:14:48Z", "stargazers_count": 144, "topics": ["opensprinkler"], "last_fetched": 1674378247.420493, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265916869": {"repository_manifest": {"name": "Melnor Raincloud", "render_readme": true, "homeassistant": "2021.4.0", "zip_release": true, "filename": "raincloud.zip"}, "full_name": "vanstinator/hass-raincloud", "authors": ["@vanstinator"], "category": "integration", "description": "Melnor Raincloud Home Assistant Integration", "domain": "raincloud", "etag_repository": "W/\"58000ab27cbb2d837de1137176b14c71cd411269a7a3d5e07a5dab900c8e3bc9\"", "last_updated": "2022-01-22T15:56:33Z", "stargazers_count": 6, "topics": ["assistant", "home", "irrigation", "melnor", "raincloud", "sprinkler"], "last_fetched": 1643571251.745845, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "258012818": {"repository_manifest": {"name": "simpleicons", "render_readme": true, "homeassistant": "2021.11.0", "zip_release": true, "filename": "hass-simpleicons.zip"}, "full_name": "vigonotion/hass-simpleicons", "category": "integration", "description": "Use Simple Icons in Home Assistant", "domain": "simpleicons", "downloads": 3873, "etag_repository": "W/\"aa930a3f043542ab2a18f4e49ccb95bce6f35442539e53093bfc7aae8ba1cb3c\"", "last_updated": "2022-10-08T17:58:57Z", "stargazers_count": 89, "topics": ["simple-icons"], "last_fetched": 1674378246.76939, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234875951": {"repository_manifest": {"name": "Securitas Home", "render_readme": "true", "country": ["SE"], "homeassistant": "0.110.1"}, "full_name": "vlumikero/home-assistant-securitas", "authors": ["@nwiborg", "@vlumikero"], "category": "integration", "description": "A Home Assistant custom component for Securitas Home Alarm, for alarms bought in Sweden before 2018-12-01", "domain": "securitas", "etag_repository": "W/\"7ce1181bf8b4beca79ea1b8c42b8ee5dc34cb8bbec839e30907600b74cd442f5\"", "last_updated": "2021-07-24T17:58:21Z", "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190418598": {"repository_manifest": {}, "full_name": "walthowd/ha-automower", "authors": ["@walthowd"], "category": "integration", "description": "Automower Custom Component for Home Assistant", "domain": "automower", "etag_repository": "W/\"1e8a5bc14a7edc8d7f70a6e85d9a00544ceb5ac7132fa4fbda24c8380254e68e\"", "last_updated": "2022-06-01T16:55:36Z", "stargazers_count": 39, "last_fetched": 1656859433.012974, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235316264": {"repository_manifest": {"name": "Meteo Swiss", "render_readme": true, "country": "CH"}, "full_name": "websylv/homeassistant-meteoswiss", "authors": ["websylv"], "category": "integration", "description": ":sun_behind_rain_cloud: :switzerland: Meteo Swiss Integration for Home Assisant", "domain": "meteo-swiss", "etag_repository": "W/\"b2ae848af7d1aaad42849638786553ceaf7e5af396208d97419b151f4310fed4\"", "last_updated": "2023-01-20T07:00:45Z", "stargazers_count": 54, "last_fetched": 1674378251.837058, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299967654": {"repository_manifest": {"name": "HiFiBerry", "render_readme": "true"}, "full_name": "willholdoway/hifiberry", "authors": ["@willholdoway"], "category": "integration", "description": "This is a custom component to allow control of HifiberryOS devices in Home Assistant using the audiocontrol2 REST API.", "domain": "hifiberry", "etag_repository": "W/\"17cfe87201a7719cdde0845a44e9a799382002ae975b557293f37bd2e808669b\"", "last_updated": "2022-06-03T04:16:33Z", "stargazers_count": 29, "topics": ["hifiberry", "internet-of-things", "iot"], "last_fetched": 1671385279.1862, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "127251446": {"repository_manifest": {"name": "Afvalwijzer", "render_readme": true, "country": "NL", "homeassistant": "0.118.0"}, "full_name": "xirixiz/homeassistant-afvalwijzer", "authors": ["@xirixiz"], "category": "integration", "description": "Provides sensors for some Dutch waste collectors", "domain": "afvalwijzer", "etag_repository": "W/\"3c3b556f4fadae9f04d3437aabe0063f463a8a7d07f268644be515b18f10aeef\"", "last_updated": "2023-01-07T09:40:00Z", "stargazers_count": 120, "topics": ["afvalwijzer", "trash"], "last_fetched": 1674378261.435479, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261031401": {"repository_manifest": {"name": "couchpotato", "render_readme": true, "country": "FR"}, "full_name": "youdroid/home-assistant-couchpotato", "authors": ["@youdroid"], "category": "integration", "description": "\ud83c\udfa5 CouchPotato component to feed Upcoming Media Card.", "domain": "couchpotato", "etag_repository": "W/\"7b09052eb6325f2b6d7bf9ba766e31dde1bd1c4d03dfa12412b4a15807d1a152\"", "last_updated": "2022-04-24T19:49:30Z", "stargazers_count": 5, "topics": ["couchpotato"], "last_fetched": 1653229966.531008, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262645913": {"repository_manifest": {"name": "gitea", "render_readme": true, "country": "FR"}, "full_name": "youdroid/home-assistant-gitea", "authors": ["@youdroid"], "category": "integration", "description": "\ud83c\udf75 Gitea component to follow your repositories", "domain": "gitea", "etag_repository": "W/\"188f9173574300eb33469104b90ba9cf2a93e6873b701e499b1713b33d3ed4a3\"", "last_updated": "2022-04-24T20:15:46Z", "stargazers_count": 7, "topics": ["gitea", "homeassistant-custom-component", "pyhton"], "last_fetched": 1661585348.681597, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261614146": {"repository_manifest": {"name": "SickChill", "render_readme": true, "country": "FR"}, "full_name": "youdroid/home-assistant-sickchill", "authors": ["@youdroid"], "category": "integration", "description": "\ud83c\udfa5 SickChill component to feed Upcoming Media Card.", "domain": "sickchill", "etag_repository": "W/\"577fd63d9480a6cc8b83c569e03d6f535e11cc988edf8c7fcbb3599c4be35ef6\"", "last_updated": "2022-04-24T19:37:24Z", "stargazers_count": 3, "topics": ["sickchill"], "last_fetched": 1653229967.59433, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202987887": {"repository_manifest": {"name": "Node-RED Companion", "homeassistant": "2021.12.0"}, "full_name": "zachowj/hass-node-red", "authors": ["@zachowj"], "category": "integration", "description": "Companion Component for node-red-contrib-home-assistant-websocket to help integrate Node-RED with Home Assistant Core", "domain": "nodered", "etag_repository": "W/\"6af59732866cd38cddc28b6ad1241ee1f95f34739fbfc650a73726f6854fa200\"", "last_updated": "2023-01-20T06:36:12Z", "stargazers_count": 316, "topics": ["node-red"], "last_fetched": 1674378265.818768, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231083679": {"repository_manifest": {"name": "Dark Teal"}, "full_name": "aFFekopp/dark_teal", "category": "theme", "description": "\ud83d\udc35 Dark Theme based on clear-theme-dark by @naofireblade", "domain": "", "etag_repository": "W/\"0be321398a2f3e4e05ba61fe93eb7f39be40e10d94f2a9383b1baf8399b2a0ff\"", "last_updated": "2022-03-15T09:06:42Z", "stargazers_count": 16, "topics": ["dark-theme", "home-assistant-theme"], "last_fetched": 1674378439.269807, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233715171": {"repository_manifest": {"name": "Darkish Theme"}, "full_name": "78wesley/Home-Assistant-Darkish-Theme", "category": "theme", "description": "Darkish-Theme for Home Assistant", "domain": "", "etag_repository": "W/\"9f62e2b29fc5bf0aa30930dcae958c0c363fa7dfec6a3c6e4590ce312436712a\"", "last_updated": "2021-12-14T20:45:38Z", "stargazers_count": 5, "last_fetched": 1674378439.135168, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "253311340": {"repository_manifest": {"name": "3Ative Blue Theme", "render_readme": true}, "full_name": "3ative/3ative-blue-theme", "category": "theme", "description": "\ud83d\ude0e My Theme 'Blue' - with semi-transparent Cards", "domain": "", "etag_repository": "W/\"fb5d0e066363687e20f3bc7d79cd3231f584e1cf5976d9ea23d9d135cf7df1b4\"", "last_updated": "2022-11-03T13:57:09Z", "stargazers_count": 3, "topics": ["3ative", "blue", "theme-ui"], "last_fetched": 1671387209.184172, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233445397": {"repository_manifest": {"name": "Sundown Theme"}, "full_name": "am80l/sundown", "category": "theme", "description": "Custom theme for home assistant", "domain": "", "etag_repository": "W/\"098b03c44b3aa8e79d3d8e3f71ce251cc0250bb1d79625c7bf80fe4343c8111b\"", "last_updated": "2020-07-29T01:28:19Z", "stargazers_count": 3, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "230974064": {"repository_manifest": {"name": "Oxford Blue", "render_readme": true}, "full_name": "arsaboo/oxford_blue_theme", "category": "theme", "description": "Oxford blue theme for Home Assistant", "domain": "", "etag_repository": "W/\"a0be5e6ca8ee565f589ae32d7a347d8f764049d5f404d784a53d78bb2fcda723\"", "last_updated": "2020-02-27T00:08:56Z", "stargazers_count": 5, "last_fetched": 1671387209.669472, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "162468030": {"repository_manifest": {"name": "Dark Theme Pack for Home Assistant", "render_readme": true, "filename": "dark_themes.yaml"}, "full_name": "awolkers/home-assistant-themes", "category": "theme", "description": "A collection of modern, clean but colorfull dark themes for the Home Assistant UI. Comes in six different colors (Blue / Green / Orange / Pink / Turqoise / Yellow).", "domain": "", "etag_repository": "W/\"2f35ee3fcfb17bd9510b36505d5cc14d503e5705ac25fcacd755c4097110d565\"", "last_updated": "2022-11-04T12:54:46Z", "stargazers_count": 10, "topics": ["dark-mode", "dark-theme", "home-assistant-theme", "lovelace-theme"], "last_fetched": 1671387209.756544, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222422187": {"repository_manifest": {"name": "iOS Dark Mode Theme", "render_readme": true}, "full_name": "basnijholt/lovelace-ios-dark-mode-theme", "category": "theme", "description": "\ud83c\udfe0\ud83e\udd16 Theme by @basnijholt based on iOS Dark Mode for Lovelace Home Assistant ", "domain": "", "etag_repository": "W/\"a5093a123e1a38787f70f9584cd561aa4f62a34ff5f0ce2fb5b1a0851d2a3dd3\"", "last_updated": "2022-11-03T15:53:32Z", "stargazers_count": 399, "topics": ["dark-mode", "darkmode", "ios"], "last_fetched": 1674378445.308824, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255366214": {"repository_manifest": {"name": "Vintage", "render_readme": true, "filename": "themes/vintage.yaml"}, "full_name": "Banditen01/vintage_theme", "category": "theme", "description": "\ud83c\udf99\ufe0f Vintage theme original colours & style designed by @surendrananup HACS adapted by @Banditen01", "domain": "", "etag_repository": "W/\"543a3ffb3d712bbbb04fcadaef283b8c18456c0fd55db41229c67b225434c512\"", "last_updated": "2021-05-20T16:21:54Z", "stargazers_count": 4, "topics": ["unofficial"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234750356": {"repository_manifest": {"name": "iOS Light Mode Theme", "render_readme": true}, "full_name": "basnijholt/lovelace-ios-light-mode-theme", "category": "theme", "description": "\ud83c\udfe0\ud83e\udd16 Theme based on iOS Light Mode for Lovelace Home Assistant ", "domain": "", "etag_repository": "W/\"b8dc7e2c79a2fe4264191319302a01928c62b61902c3e9d28d682358239d74ff\"", "last_updated": "2020-01-20T19:48:02Z", "stargazers_count": 9, "topics": ["ios", "light-mode", "lightmode"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236318024": {"repository_manifest": {"name": "iOS Themes - Dark Mode and Light Mode", "hacs": "0.21.2", "filename": "ios-themes.yaml", "render_readme": true}, "full_name": "basnijholt/lovelace-ios-themes", "category": "theme", "description": "\u2764\ufe0f\ud83d\udcf1\ud83c\udfe0\ud83e\udd16 Themes inspired by iOS Dark \u2b1b\ufe0f and Light \u25fb\ufe0f Mode for Lovelace Home Assistant with different backgrounds by @basnijholt", "domain": "", "etag_repository": "W/\"eea5ba34d33471d0d2911c9e4acdf6ab313ad7ac56511a4ba7d5b6b4a2538290\"", "last_updated": "2022-11-20T20:05:49Z", "stargazers_count": 392, "last_fetched": 1674378445.52428, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202203063": {"repository_manifest": {}, "full_name": "bbbenji/synthwave-hass", "category": "theme", "description": "Synthwave inspired theme for Home Assistant", "domain": "", "etag_repository": "W/\"d5c47dd8cd041b3a36295f71574388d8466763710277895c681eb58d053fa2ae\"", "last_updated": "2022-06-13T03:57:15Z", "stargazers_count": 139, "topics": ["css", "home-assistant-theme", "javascript", "synthwave"], "last_fetched": 1672947754.343082, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261924981": {"repository_manifest": {"name": "Swart Ninja Dark Theme"}, "full_name": "DickSwart/swart_ninja_dark_theme", "category": "theme", "description": "\ud83c\udfa8 Green, dark mode theme for Home Assistant, Enjoy.\ud83e\udd18\ud83c\udffb", "domain": "", "etag_repository": "W/\"eb077a53784395a775526bc4ae999c1932247f00765f0978dd56b1ca22d66208\"", "last_updated": "2022-03-04T09:56:36Z", "stargazers_count": 4, "topics": ["dark-theme"], "last_fetched": 1665325341.430801, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235436539": {"repository_manifest": {"name": "Noctis Grey", "render_readme": true}, "full_name": "chaptergy/noctis-grey", "category": "theme", "description": "Dark Grey Theme for Home Assistant", "domain": "", "etag_repository": "W/\"e5329e623df61fccb828c2aaa31f74a1e4fb5646fdc7ffe0025a7ae54c6935f4\"", "last_updated": "2022-12-04T22:46:19Z", "stargazers_count": 8, "last_fetched": 1672947754.587424, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "227988032": {"repository_manifest": {"name": "sweet pink", "render_readme": true}, "full_name": "estiens/sweet_pink_hass_theme", "category": "theme", "description": "Theme for home assistant that makes use of pinks and purples and maybe some teal", "domain": "", "etag_repository": "W/\"a2cbdea27b8a8022cdcdb768a678e523899cf9947532265e1e0cc98197b47922\"", "last_updated": "2022-05-14T18:31:48Z", "stargazers_count": 4, "topics": ["cyberpunk", "lovelace-theme"], "last_fetched": 1661584738.247566, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309056232": {"repository_manifest": {"name": "GitHub Dark Theme", "render_readme": true}, "full_name": "einschmidt/github_dark_theme", "category": "theme", "description": "A Home Assistant theme inspired on Github.", "domain": "", "etag_repository": "W/\"e66d35d0aae01c2c50ce62073d8bb44eb36c129b5a68e60b36676a32c6052418\"", "last_updated": "2022-05-05T13:16:32Z", "stargazers_count": 3, "topics": ["assistant-theme"], "last_fetched": 1671387210.553077, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309053262": {"repository_manifest": {"name": "GitHub Light Theme", "render_readme": true}, "full_name": "einschmidt/github_light_theme", "category": "theme", "description": "A Home Assistant theme inspired on Github.", "domain": "", "etag_repository": "W/\"7bf7401cacda55c60c0e677ad6d0ba4b33c2da1c658ecf20a54c332e16d6656c\"", "last_updated": "2020-12-16T13:49:52Z", "stargazers_count": 4, "topics": ["assistant-theme"], "last_fetched": 1653230136.594421, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234581410": {"repository_manifest": {"name": "UX Goodie Theme", "render_readme": true}, "full_name": "fi-sch/ux_goodie_theme", "category": "theme", "description": "\ud83c\udfa8 Theme for Home Assistant inspired by iOS Dark Mode \ud83c\udf16", "domain": "", "etag_repository": "W/\"033982798dbe49b7b94ca3a8ecf8749c57761c87509787b5ba3862005cab6a39\"", "last_updated": "2022-05-27T21:05:56Z", "stargazers_count": 10, "topics": ["dark", "ios", "lovelace-theme", "mode", "ux"], "last_fetched": 1671387210.689271, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236277163": {"repository_manifest": {"name": "Reeder Dark Theme", "render_readme": true}, "full_name": "hekm77/reeder_dark_theme", "category": "theme", "description": "Reeder Dark Theme for Home Assistant", "domain": "", "etag_repository": "W/\"b863ac11495372b42be0410bd7cdca6127bce324c84f69ac5b9bf300141308b9\"", "last_updated": "2020-09-18T07:41:54Z", "stargazers_count": 5, "last_fetched": 1671387210.764414, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209891408": {"repository_manifest": {"name": "Amoled Theme"}, "full_name": "home-assistant-community-themes/amoled", "category": "theme", "description": "Amoled theme for Home Assistant", "domain": "", "etag_repository": "W/\"bc67620505c3769b5d874eca8b1f877ef349fda89d59382fffd9d4d4809e1927\"", "last_updated": "2023-01-11T02:04:55Z", "stargazers_count": 27, "last_fetched": 1674378452.097234, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235984421": {"repository_manifest": {"name": "Blackened Theme"}, "full_name": "home-assistant-community-themes/blackened", "category": "theme", "description": "Blackened theme for Home Assistant", "domain": "", "etag_repository": "W/\"ac258807b74fe8e7954f87cb74b84da5733c5fd49fa8c929ca1f0eb0dc1e0121\"", "last_updated": "2023-01-11T11:02:45Z", "stargazers_count": 8, "last_fetched": 1674378453.689694, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "225969186": {"repository_manifest": {"name": "Aqua Fiesta Theme"}, "full_name": "home-assistant-community-themes/aqua-fiesta", "category": "theme", "description": "Aqua Fiesta theme for Home Assistant", "domain": "", "etag_repository": "W/\"ae0ce88783842e5b68a744500a019146c3df8e12cdd39e5e044081fea62a6ae1\"", "last_updated": "2021-11-29T15:12:10Z", "stargazers_count": 3, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216173358": {"repository_manifest": {"name": "Christmas Theme"}, "full_name": "home-assistant-community-themes/christmas", "category": "theme", "description": "Christmas theme for Home Assistant", "domain": "", "etag_repository": "W/\"ec277043909de125a9edb53b2aa275dbae8659c44dd9096cb3b2b84be980e32c\"", "last_updated": "2021-11-30T07:12:40Z", "stargazers_count": 1, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215075805": {"repository_manifest": {"name": "Blue Night Theme"}, "full_name": "home-assistant-community-themes/blue-night", "category": "theme", "description": "Blue Night theme for Home Assistant", "domain": "", "etag_repository": "W/\"231895175f78a062c344362106bdbbf0526e61f6b9bfda160e9c7280f90edd94\"", "last_updated": "2022-01-07T08:46:23Z", "stargazers_count": 8, "last_fetched": 1649613449.512147, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220641275": {"repository_manifest": {"name": "Dark Orange Theme"}, "full_name": "home-assistant-community-themes/dark-orange", "category": "theme", "description": "Dark Orange theme for Home Assistant", "domain": "", "etag_repository": "W/\"28aea7f0e2c4a98d03e90a41cbe007351dac8a76fa684a82d040979a656fbec6\"", "last_updated": "2023-01-10T19:42:13Z", "stargazers_count": 10, "last_fetched": 1674378456.10483, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214979604": {"repository_manifest": {"name": "Dark Mint Theme"}, "full_name": "home-assistant-community-themes/dark-mint", "category": "theme", "description": "Another Dark theme for Home Assistant", "domain": "", "etag_repository": "W/\"888a892185175ca4c128a4bb6c257e1197b3f7e7e7dbd0cede53a279445edd46\"", "last_updated": "2022-09-12T21:21:28Z", "stargazers_count": 4, "last_fetched": 1665325349.241761, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215075899": {"repository_manifest": {"name": "Grey Night Theme"}, "full_name": "home-assistant-community-themes/grey-night", "category": "theme", "description": "Grey Night theme for Home Assistant", "domain": "", "etag_repository": "W/\"6841c1f3cafe9020476e1d9c711b88a723fd0d68ce45f458808f93c8af77cac5\"", "last_updated": "2021-11-25T07:20:29Z", "stargazers_count": 4, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "217374413": {"repository_manifest": {"name": "Halloween Theme"}, "full_name": "home-assistant-community-themes/halloween", "category": "theme", "description": "Halloween theme for Home Assistant", "domain": "", "etag_repository": "W/\"8fda60a56805bc35eed2453f586735bf9187cba3b24ffe5994caad46ec3e633e\"", "last_updated": "2021-11-30T07:13:12Z", "stargazers_count": 2, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235057110": {"repository_manifest": {"name": "Material Dark Red Theme"}, "full_name": "home-assistant-community-themes/material-dark-red", "category": "theme", "description": "Material Dark Red theme for Home Assistant", "domain": "", "etag_repository": "W/\"fc278ce4816ee42c77950af8979f5e3f71ec2657d0c105fb5ea1eaa9d767002a\"", "last_updated": "2022-09-12T23:10:57Z", "stargazers_count": 3, "last_fetched": 1665325352.005644, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216183299": {"repository_manifest": {"name": "Material Dark Pink Theme"}, "full_name": "home-assistant-community-themes/material-dark-pink", "category": "theme", "description": "Material Dark Pink theme for Home Assistant", "domain": "", "etag_repository": "W/\"41d24bd82b5e25ef2cec8ed92896d0a42849410a2bdb48f0b6c131007b5ed861\"", "last_updated": "2021-11-30T07:12:56Z", "stargazers_count": 3, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214664317": {"repository_manifest": {"name": "Midnight Theme"}, "full_name": "home-assistant-community-themes/midnight", "category": "theme", "description": "Midnight theme for Home Assistant", "domain": "", "etag_repository": "W/\"c222de46eadb510fb669df9a0917303ca4afc063d51bb270161fed6d342f30cf\"", "last_updated": "2022-09-19T11:10:37Z", "stargazers_count": 51, "last_fetched": 1665325352.278273, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216178553": {"repository_manifest": {"name": "Material Dark Green Theme"}, "full_name": "home-assistant-community-themes/material-dark-green", "category": "theme", "description": "Material Dark Green theme for Home Assistant", "domain": "", "etag_repository": "W/\"bad698fb82482d8a92c028765e0761f093093ad22718d67795c0529317bc9e93\"", "last_updated": "2022-01-07T08:46:43Z", "stargazers_count": 2, "last_fetched": 1643571216.769365, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223938651": {"repository_manifest": {"name": "Midnight Blue Theme"}, "full_name": "home-assistant-community-themes/midnight-blue", "category": "theme", "description": "Midnight Blue theme for Home Assistant", "domain": "", "etag_repository": "W/\"041078c5872ea5bc8cea48155619495942967b79d6012eca997bf7806e0434b4\"", "last_updated": "2022-09-12T22:22:47Z", "stargazers_count": 5, "last_fetched": 1665325352.818846, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "270638476": {"repository_manifest": {"name": "Nord Theme"}, "full_name": "home-assistant-community-themes/nord", "category": "theme", "description": "Nord theme for Home Assistant", "domain": "", "etag_repository": "W/\"c86a8f2dd58835efd240dc0ea051d5ac3a9fd3c245c2491d1c52070e184cebdf\"", "last_updated": "2022-09-12T13:08:06Z", "stargazers_count": 12, "last_fetched": 1665325358.945865, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216165131": {"repository_manifest": {"name": "Solarized Light Theme"}, "full_name": "home-assistant-community-themes/solarized-light", "category": "theme", "description": "Solarized Light theme for Home Assistant", "domain": "", "etag_repository": "W/\"169bbe0af93ad59124d09649e509d2919bbd8e6f55f15139954bbeb311dd0db6\"", "last_updated": "2021-11-29T07:57:21Z", "stargazers_count": 4, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255270395": {"repository_manifest": {"name": "Stell Blue with Colors Theme"}, "full_name": "home-assistant-community-themes/stell-blue-with-colors", "category": "theme", "description": "Stell Blue with Colors theme for Home Assistant", "domain": "", "etag_repository": "W/\"5077767a0aa28cc4a56403ca6b8d9e955516f26b40e5317d5f6d6f1cfb43bd9e\"", "last_updated": "2021-11-29T09:05:41Z", "stargazers_count": 2, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "230672465": {"repository_manifest": {"name": "Ugly Christmas Theme"}, "full_name": "houtknots/UglyChristmas-Theme", "category": "theme", "description": "Christmas theme for Home-Assistant", "domain": "", "etag_repository": "W/\"73d7508c5ee3f8de942d3365393ae40581ba808bcbfa5f7d1d12ce6b988c130d\"", "last_updated": "2021-12-30T13:46:19Z", "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234375294": {"repository_manifest": {"name": "Vaporwave Pink Theme", "render_readme": true}, "full_name": "home-assistant-community-themes/vaporwave-pink", "category": "theme", "description": "Vaporwave Pink Theme for Home Assistant", "domain": "", "etag_repository": "W/\"9bd2f3aa912f6b87f1caf0e83298b7dc25253f3346fe222ac487d394ccca07ef\"", "last_updated": "2022-06-17T14:41:05Z", "stargazers_count": 3, "topics": ["80s", "pink", "vaporwave"], "last_fetched": 1656859471.272238, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216181396": {"repository_manifest": {"name": "Teal Theme"}, "full_name": "home-assistant-community-themes/teal", "category": "theme", "description": "Teal theme for Home Assistant", "domain": "", "etag_repository": "W/\"8cbdbec442c85ef844f76d9a1ea9a18d28674d564255ce7d3323cd80d844995d\"", "last_updated": "2021-11-29T15:11:48Z", "stargazers_count": 1, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234491154": {"repository_manifest": {"name": "AMOLED Blue", "render_readme": true}, "full_name": "JuanMTech/amoled_blue", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A true black Home Assistant theme for devices with AMOLED displays", "domain": "", "etag_repository": "W/\"0b0abf6e62b57902dd2ac0d822cac81a60c986be9d24eb2589270d5257abf5af\"", "last_updated": "2022-06-19T17:44:42Z", "stargazers_count": 12, "last_fetched": 1671387211.840772, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "306914292": {"repository_manifest": {"name": "Transparent Blue", "render_readme": "true"}, "full_name": "JOHLC/transparentblue", "category": "theme", "description": "A transparent blue theme for Home Assistant", "domain": "", "etag_repository": "W/\"c12317a6a50a55008c9ac6ca222e660301d2384cde7c7c90b622ef4ce8a145b4\"", "last_updated": "2022-12-18T17:53:08Z", "stargazers_count": 24, "topics": ["homeassistant-addons", "transparent-blue-theme", "transparentblue", "yaml"], "last_fetched": 1671387211.873723, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234032927": {"repository_manifest": {"name": "Google Light Theme", "render_readme": true}, "full_name": "JuanMTech/google_light_theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the Google app light mode.", "domain": "", "etag_repository": "W/\"eb48c7c8d7b85ef67dee08d9ee8b09dc351eb9c1101e92e117a2943d3de7bea9\"", "last_updated": "2022-06-19T17:47:17Z", "stargazers_count": 56, "topics": ["assistant-theme"], "last_fetched": 1665325360.736346, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235862795": {"repository_manifest": {"name": "Green Dark mode", "render_readme": true}, "full_name": "JuanMTech/green_dark_mode", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A matte black theme with a green accent color", "domain": "", "etag_repository": "W/\"ec0f4c26d0eb1c7dfc7f3a33d0a70d84aea32ce0fd5bd50dfa7c28546983caba\"", "last_updated": "2020-07-29T22:52:55Z", "stargazers_count": 8, "last_fetched": 1641587843.275071, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235865145": {"repository_manifest": {"name": "Green Light mode", "render_readme": true}, "full_name": "JuanMTech/green_light_mode", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A light mode theme with a green accent color", "domain": "", "etag_repository": "W/\"0422d4984525067b48f1c765e84c814690080b9489717eb4d566e78bcebd6cf5\"", "last_updated": "2020-07-29T22:54:27Z", "stargazers_count": 2, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "284293899": {"repository_manifest": {"name": "iOS Dark Mode", "render_readme": true}, "full_name": "JuanMTech/ios_dark_mode_theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the iOS dark mode interface.", "domain": "", "etag_repository": "W/\"9e5810b8d777772c7d33822a043d8148f718739c242e2cf4e0a3f07cd2a891a2\"", "last_updated": "2023-01-12T22:58:52Z", "stargazers_count": 21, "topics": ["dark-mode", "dark-theme"], "last_fetched": 1674378468.828359, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "284294048": {"repository_manifest": {"name": "iOS Light Mode", "render_readme": true}, "full_name": "JuanMTech/ios_light_mode_theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the iOS light mode interface.", "domain": "", "etag_repository": "W/\"6d6e8a768755f52f257c1eb0d3e17bf91e582281dbe40617363df6eab962f83c\"", "last_updated": "2022-06-19T17:45:30Z", "stargazers_count": 16, "last_fetched": 1665325362.167649, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235867730": {"repository_manifest": {"name": "Orange Dark", "render_readme": true}, "full_name": "JuanMTech/orange_dark", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A matte black theme with an orange accent color", "domain": "", "etag_repository": "W/\"2ceced4f48c67cec92ce1068a8c3e482d5ae1db28899cc2131995ec7f8c594b8\"", "last_updated": "2020-07-29T22:55:59Z", "stargazers_count": 5, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235869023": {"repository_manifest": {"name": "Orange Light", "render_readme": true}, "full_name": "JuanMTech/orange_light", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A light mode theme with an orange accent color", "domain": "", "etag_repository": "W/\"654e166cd6ad22ad3037120a92633d0e6f40f1cefc8d82104bfc416b4e2c66cd\"", "last_updated": "2020-07-29T22:57:13Z", "stargazers_count": 2, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262748544": {"repository_manifest": {"name": "kibibit Theme"}, "full_name": "Kibibit/hass-kibibit-theme", "category": "theme", "description": "A milky glass theme for Home Assistant", "domain": "", "etag_repository": "W/\"174b177102200d28b37748ee4ff2e92caf4d0f7ba2ce3fed9aa4b98b09f96dcc\"", "last_updated": "2023-01-05T03:03:45Z", "stargazers_count": 138, "last_fetched": 1672947777.316102, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292621909": {"repository_manifest": {"name": "Windows 10 themes", "render_readme": true}, "full_name": "mikosoft83/hass-windows10-themes", "category": "theme", "description": "Home Assistant Windows 10 inspired themes", "domain": "", "etag_repository": "W/\"759f96d19c1c58fa43efa956db3dea4bf2cc26771772386748ceb820e1a1f911\"", "last_updated": "2022-11-23T21:32:59Z", "stargazers_count": 7, "topics": ["accent-color", "windows", "windows-10"], "last_fetched": 1671387212.639341, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "221287384": {"repository_manifest": {"name": "Clear Theme", "homeassistant": "0.102.0"}, "full_name": "naofireblade/clear-theme", "category": "theme", "description": "Clear Theme for Home Assistant", "domain": "", "etag_repository": "W/\"5aebf76221c28f0e2912ef0feca40b6a3316898818e606502232fbd8d70fbfa8\"", "last_updated": "2020-10-08T10:10:49Z", "stargazers_count": 21, "last_fetched": 1656859483.209788, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "249722008": {"repository_manifest": {"name": "Your Name.", "render_readme": true}, "full_name": "Nihvel/your_name", "category": "theme", "description": "Home Assistant theme - A dark, electric blue theme that reminds the movie Your Name. ", "domain": "", "etag_repository": "W/\"803d3a8130985704c9f82cde119465e054288d64cee6ec6ebed5dd14d19a5c05\"", "last_updated": "2022-04-29T23:58:08Z", "stargazers_count": 20, "last_fetched": 1674378479.139048, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "277068969": {"repository_manifest": {"name": "Caule Themes Pack 1 - by caule.studio", "filename": "caule-themes-pack-1.yaml"}, "full_name": "orickcorreia/caule-themes-pack-1", "category": "theme", "description": "10 modern colors | 4 categories of styles (Black Glass, Black, Dark, Light) | 40 themes in total | Animated icons for the weather forecast card | And a bonus automatic theme selector for your interface.", "domain": "", "etag_repository": "W/\"80ff0a608df7dff12d5093a09c3af5cc08ccaf1018e01bef3978f4e3ec059d42\"", "last_updated": "2022-12-23T14:24:08Z", "stargazers_count": 199, "topics": ["caule", "pack"], "last_fetched": 1674378479.241253, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "221288367": {"repository_manifest": {"name": "Clear Theme Dark", "homeassistant": "0.108.9"}, "full_name": "naofireblade/clear-theme-dark", "category": "theme", "description": "Dark variant of Clear Theme for Home Assistant", "domain": "", "etag_repository": "W/\"863a5fa7abe111f7db878a7f69b183df60561e8efd0b1fcb9689d559d2ab5914\"", "last_updated": "2020-10-08T10:10:57Z", "stargazers_count": 16, "last_fetched": 1665938539.169365, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223028160": {"repository_manifest": {"name": "Green Slate Theme"}, "full_name": "pbeckcom/green_slate_theme", "category": "theme", "description": "Green adaptation of this Home-Assistant theme: https://github.com/seangreen2/slate_theme", "domain": "", "etag_repository": "W/\"2ed1825986f40ee57d47a9e22773735d5e181ee2b31de0fcc498e9d3da1f18fe\"", "last_updated": "2019-11-20T22:22:55Z", "stargazers_count": 1, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197006509": {"repository_manifest": {}, "full_name": "seangreen2/slate_theme", "category": "theme", "description": "A Dark Theme for Home Assistant", "domain": "", "etag_repository": "W/\"0639c236b1a4f39abb4a9b18ca1e300b65497261530d08004a218045726cd630\"", "last_updated": "2022-09-03T00:36:04Z", "stargazers_count": 87, "last_fetched": 1672947786.561994, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "226567922": {"repository_manifest": {"name": "Red slate theme", "render_readme": "True"}, "full_name": "Poeschl/slate_red", "category": "theme", "description": "My red\"isch\" home assistant theme.", "domain": "", "etag_repository": "W/\"9613b0e9ffd2da9e1f94820627ff9179b17ada9417950c46d6799c6b74229739\"", "last_updated": "2022-01-06T14:43:48Z", "stargazers_count": 1, "topics": ["material-design", "red"], "last_fetched": 1641587851.19915, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "287840715": {"repository_manifest": {"name": "OZW Network Visualization Card", "content_in_root": true, "filename": "ozw-network-visualization-card.js", "homeassistant": "0.115.0", "render_readme": true}, "full_name": "abmantis/ozw-network-visualization-card", "category": "plugin", "description": "Lovelace custom card for visualizing the ZWave network with the OpenZWave (beta) integration.", "domain": "", "etag_repository": "W/\"6d7f1a9e7121a596f63b524f3a97539e88d1168e3caaf44305519d23b020ba47\"", "last_updated": "2022-06-05T22:24:45Z", "stargazers_count": 30, "topics": ["ozw", "zwave", "zwave2mqtt"], "last_fetched": 1656859492.857897, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "274111031": {"repository_manifest": {"name": "Animated Weather Card", "render_readme": true, "homeassistant": "0.109.0"}, "full_name": "wowgamr/animated-weather-card", "category": "theme", "description": "Animated icons for default Home Assistant weather card", "domain": "", "etag_repository": "W/\"8b16a3d8963982b51ab7ce2e4f6a8ade05e119a968ccf72e9b72f70c7f1e0bf4\"", "last_updated": "2022-06-05T21:09:01Z", "stargazers_count": 21, "topics": ["weather-card"], "last_fetched": 1661584771.685718, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200081161": {"repository_manifest": {}, "full_name": "amaximus/bkk-stop-card", "category": "plugin", "description": "Custom Lovelace card for Budapest Public Transportation custom component", "domain": "", "etag_repository": "W/\"b1566a1bda4c24a5b942057a6733b24fb88c1ab4370a1415020b0fb5b66f7dcf\"", "last_updated": "2021-12-01T19:32:24Z", "stargazers_count": 6, "topics": ["bkk", "budapest", "lovelace-custom-card", "transportation"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257102434": {"repository_manifest": {"name": "FKF Budapest Garbage Collection Card", "filename": "fkf-garbage-collection-card.js", "render_readme": "true"}, "full_name": "amaximus/fkf-garbage-collection-card", "category": "plugin", "description": "FKF Budapest Garbage Collection Card for Home Assistant/Lovelace", "domain": "", "downloads": 299, "etag_repository": "W/\"607adab9fa8ed0c8a36335471432301631dee2dc14b5a95ca72909ef759ec27f\"", "last_updated": "2022-09-16T08:09:59Z", "stargazers_count": 9, "topics": ["budapest", "lovelace-custom-card"], "last_fetched": 1674378272.874939, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207018200": {"repository_manifest": {"name": "Garbage Collection Card", "filename": "garbage-collection-card.js", "render_readme": "true"}, "full_name": "amaximus/garbage-collection-card", "category": "plugin", "description": "Custom Lovelace card for Garbage Collection custom component", "domain": "", "downloads": 3823, "etag_repository": "W/\"702ffbe88aa3397edad38f74f0c2d53c4e7c5266c4ecfb21069369f79268e085\"", "last_updated": "2023-01-09T19:55:27Z", "stargazers_count": 92, "topics": ["garbage-collection", "lovelace-custom-card", "ui-lovelace"], "last_fetched": 1674378273.950272, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207292725": {"repository_manifest": {"name": "Flexible Horseshoe Card for Lovelace", "content_in_root": true, "filename": "flex-horseshoe-card.js"}, "full_name": "AmoebeLabs/flex-horseshoe-card", "category": "plugin", "description": "Flexible Horseshoe card for Home Assistant Lovelace UI. A card with a flexible layout, a horseshoe-like donut graph, multiple entities or attributes, graphics and animations!", "domain": "", "etag_repository": "W/\"b30e9d9ab355b72867b9a62bf36d5185fb6e2bdcf41f110e72887fc811bcd40c\"", "last_updated": "2022-11-10T20:31:10Z", "stargazers_count": 145, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1672947798.033057, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214365813": {"repository_manifest": {"name": "StarLine Card", "homeassistant": "0.103.0"}, "full_name": "Anonym-tsk/lovelace-starline-card", "category": "plugin", "description": "StarLine lovelace card for Home Assistant", "domain": "", "etag_repository": "W/\"00800d5048cd27b939c7c11db8140ede8a73742be5fb0bbd0e569a05b50b7f83\"", "last_updated": "2022-10-11T15:30:23Z", "stargazers_count": 22, "last_fetched": 1665938552.320181, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "253019926": {"repository_manifest": {"name": "mini humidifier", "filename": "mini-humidifier-bundle.js"}, "full_name": "artem-sedykh/mini-humidifier", "category": "plugin", "description": "Minimalistic humidifier card for Home Assistant Lovelace UI", "domain": "", "downloads": 1717, "etag_repository": "W/\"c638d17faf45af1226be12285daf7e79358e3bb7472f2ee0b5a19b97a4fd5a57\"", "last_updated": "2023-01-08T21:08:21Z", "stargazers_count": 130, "topics": ["automation", "custom", "humidifier"], "last_fetched": 1674378279.269085, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "268163975": {"repository_manifest": {"name": "mini climate card", "filename": "mini-climate-card-bundle.js"}, "full_name": "artem-sedykh/mini-climate-card", "category": "plugin", "description": "Minimalistic climate card for Home Assistant Lovelace UI", "domain": "", "downloads": 4791, "etag_repository": "W/\"7d060000099b48aa217d18e9ed44a06be506347add3f2bd1cddab61305304597\"", "last_updated": "2023-01-09T09:11:58Z", "stargazers_count": 183, "topics": ["automation", "climate", "climate-entity", "custom", "hacktoberfest2021"], "last_fetched": 1674378278.100088, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201292040": {"repository_manifest": {"name": "Zigbee2mqtt Networkmap Card", "render_readme": true}, "full_name": "azuwis/zigbee2mqtt-networkmap", "category": "plugin", "description": "Home Assistant Custom Card to show Zigbee2mqtt network map", "downloads": 20684, "etag_repository": "W/\"229d419f92bc88636f13e4017654f6520f6fa114edc965e501c7df5ff0c0ad65\"", "last_updated": "2023-01-03T06:15:57Z", "stargazers_count": 148, "topics": ["zigbee2mqtt"], "last_fetched": 1674378279.262448, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "271886611": {"repository_manifest": {"name": "Plant Picture Card", "render_readme": true, "filename": "PlantPictureCard.js"}, "full_name": "badguy99/PlantPictureCard", "category": "plugin", "description": "Like a picture glance card, but for plant data", "domain": "", "etag_repository": "W/\"8b34f0af6240571b6d8d6f10d2c6ba5e49d1ec42b1a7628f115e94fa6f0187b4\"", "last_updated": "2022-07-07T21:55:54Z", "stargazers_count": 9, "topics": ["image", "lovelace-card", "plants"], "last_fetched": 1672947802.384707, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202546107": {"repository_manifest": {}, "full_name": "bbbenji/synthwave-hass-extras", "category": "plugin", "description": "Extras for the synthwave inspired theme for Home Assistant", "domain": "", "etag_repository": "W/\"26b24c2d96e0155425f319151d3e68b6ca8eb1226d83133dc38e68fac64d26ac\"", "last_updated": "2020-10-30T00:24:02Z", "stargazers_count": 14, "last_fetched": 1653229982.286477, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269474857": {"repository_manifest": {"name": "Tab Redirect Card", "render_readme": true}, "full_name": "ben8p/lovelace-tab-redirect-card", "category": "plugin", "description": "Custom lovelace card to use in\u00a0Home assistant allowing you to redirect a user to certain view based on entity states.", "domain": "", "etag_repository": "W/\"c7c944d2e1fcc7fcbc481c5b45f200dd57d7617d1c8307ccf83094eb3d206875\"", "last_updated": "2022-05-28T16:39:37Z", "stargazers_count": 11, "topics": ["lovelace-custom-card"], "last_fetched": 1671385303.336919, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "303857065": {"repository_manifest": {"name": "Battery Entity Row", "filename": "battery-entity-row.js", "render_readme": true}, "full_name": "benct/lovelace-battery-entity-row", "category": "plugin", "description": "Show battery states or attributes with dynamic icon on entity rows in Home Assistant's Lovelace UI", "domain": "", "downloads": 8816, "etag_repository": "W/\"3391f3ea6875610430790180dcd70918e5294b164949a05ea6986d24447fd068\"", "last_updated": "2021-03-12T15:50:43Z", "stargazers_count": 53, "topics": ["attribute", "battery", "card", "entity", "entity-rows", "state"], "last_fetched": 1662801472.336074, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "184658908": {"repository_manifest": {"name": "GitHub Entity Row", "filename": "github-entity-row.js", "render_readme": true}, "full_name": "benct/lovelace-github-entity-row", "category": "plugin", "description": "GitHub repository sensor data on entity rows in Home Assistant's Lovelace UI", "domain": "", "downloads": 254, "etag_repository": "W/\"d090bfa1a67b13ed8223b82d81f96f038f97b31cd678f18373f2a388318cd0f7\"", "last_updated": "2022-02-15T17:55:32Z", "stargazers_count": 21, "topics": ["card", "entity", "entity-rows", "github"], "last_fetched": 1661584786.513483, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "178921037": {"repository_manifest": {"name": "Multiple Entity Row", "filename": "multiple-entity-row.js", "render_readme": true}, "full_name": "benct/lovelace-multiple-entity-row", "category": "plugin", "description": "Show multiple entity states and attributes on entity rows in Home Assistant's Lovelace UI", "downloads": 36282, "etag_repository": "W/\"fa9186d34f1ec38e8e51eee72102764c564afd6f1a9a1f56da5d7fad36f4f257\"", "last_updated": "2023-01-07T10:36:50Z", "stargazers_count": 579, "topics": ["attribute", "card", "entity", "entity-attribute", "entity-rows", "format", "multiple", "state"], "last_fetched": 1674378285.913268, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180229356": {"repository_manifest": {"name": "Simple Vacuum Card", "filename": "xiaomi-vacuum-card.js", "render_readme": true}, "full_name": "benct/lovelace-xiaomi-vacuum-card", "category": "plugin", "description": "Simple card for various robot vacuums in Home Assistant's Lovelace UI", "downloads": 14550, "etag_repository": "W/\"9b084112b913ef37ba759bdce7bae5a5aa235f2af90a7f15179634bcd729ed8d\"", "last_updated": "2023-01-18T07:18:33Z", "stargazers_count": 229, "topics": ["card", "roborock", "robot-vacuums", "vacuum", "xiaomi", "xiaomi-vacuum"], "last_fetched": 1674378285.900122, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215327195": {"repository_manifest": {"name": "RGB Light Card", "content_in_root": true, "filename": "card.js", "render_readme": true}, "full_name": "bokub/rgb-light-card", "category": "plugin", "description": "\ud83d\udca1 A Lovelace custom card for RGB lights", "domain": "", "downloads": 18028, "etag_repository": "W/\"d7b844970913cd239b90917a5d49c47c605cb4acbc7fbdda31dabc14f27f47d9\"", "last_updated": "2023-01-10T12:40:54Z", "stargazers_count": 343, "topics": ["lovelace-custom-card", "rgb-lights"], "last_fetched": 1674378285.916279, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192732887": {"repository_manifest": {"homeassistant": "0.110.0"}, "full_name": "bramkragten/swipe-card", "category": "plugin", "description": "Card that allows you to swipe throught multiple cards for Home Assistant Lovelace", "domain": "", "etag_repository": "W/\"8b8d929a365b851b7308d05dd07abd8508fee7a2014829b7d453cc9efc4cfcaf\"", "last_updated": "2023-01-07T06:32:08Z", "stargazers_count": 139, "last_fetched": 1674378290.943201, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192732636": {"repository_manifest": {}, "full_name": "bramkragten/weather-card", "category": "plugin", "description": "Weather Card with animated icons for Home Assistant Lovelace", "domain": "", "etag_repository": "W/\"d32712cea61506b7327aa1493899378314f0e35d569702afce71e49af46c2927\"", "last_updated": "2022-12-25T21:38:16Z", "stargazers_count": 365, "last_fetched": 1674378290.747635, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194037195": {"repository_manifest": {}, "full_name": "Ceerbeerus/beerbolaget-card", "category": "plugin", "description": "A custom card for displaying information provided by Beerbolaget (https://github.com/Ceerbeerus/beerbolaget).", "domain": "", "etag_repository": "W/\"253d5767ad6f98a9b1cb1d5d022dcbb4dcaa83b8879c4e330a6717e1293085db\"", "last_updated": "2020-08-07T06:24:51Z", "stargazers_count": 3, "last_fetched": 1653229988.830222, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235449701": {"repository_manifest": {"name": "Lightalarm Card", "filename": "lightalarm-card.js"}, "full_name": "chaptergy/lightalarm-card", "category": "plugin", "description": "\u23f0 Lovelace Card to Control Light Alarm Properties", "domain": "", "etag_repository": "W/\"dfc57dcb6e35b59db4b45ade5a54bfb142852707039ff68d70d962c3427f46a5\"", "last_updated": "2022-07-24T08:17:14Z", "stargazers_count": 32, "last_fetched": 1671385309.560112, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "143850865": {"repository_manifest": {}, "full_name": "custom-cards/beer-card", "category": "plugin", "description": "This card give you a list of your wishlist items.", "domain": "", "etag_repository": "W/\"c2ae85f9c0a8bd15ca302a4ca67687069417558a56d85ba928c58c90d8e419ad\"", "last_updated": "2021-01-13T09:25:20Z", "stargazers_count": 3, "last_fetched": 1665325199.90018, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "163363577": {"repository_manifest": {"name": "Bar Card", "render_readme": true, "filename": "bar-card.js"}, "full_name": "custom-cards/bar-card", "category": "plugin", "description": "Customizable Animated Bar card for Home Assistant Lovelace", "downloads": 49488, "etag_repository": "W/\"50fccddbcaedb498c8ecc96b0496a6539a383c4bcce75ca17ad648a72bf2213f\"", "last_updated": "2022-12-09T19:05:51Z", "stargazers_count": 265, "last_fetched": 1674378291.315752, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245418": {"repository_manifest": {"name": "bignumber-card", "render_readme": true}, "full_name": "custom-cards/bignumber-card", "category": "plugin", "description": null, "domain": "", "etag_repository": "W/\"2100db114bec0d18c17fa1b9835fff417e7e2077922082688106a5eda8be64bb\"", "last_updated": "2022-01-31T15:47:59Z", "stargazers_count": 95, "last_fetched": 1674378292.394759, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146194325": {"repository_manifest": {"name": "button-card", "render_readme": true, "filename": "button-card.js"}, "full_name": "custom-cards/button-card", "category": "plugin", "description": "\u2747\ufe0f Lovelace button-card for home assistant", "downloads": 167859, "etag_repository": "W/\"08045e7321d22646b2868ca6d78be7e164a425e2af9e997fd8e09709afa42032\"", "last_updated": "2023-01-06T02:51:44Z", "stargazers_count": 1306, "last_fetched": 1674378292.411311, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164022050": {"repository_manifest": {}, "full_name": "custom-cards/check-button-card", "category": "plugin", "description": "Check Button Card is a button that tracks when it is last pressed, for the Home Assistant Lovelace front-end using MQTT auto discovery.", "domain": "", "downloads": 3862, "etag_repository": "W/\"d0fd9210e37d7a2c653c560765acf9eefcbc498553363fe81381ca1abe22da88\"", "last_updated": "2021-12-22T18:23:08Z", "stargazers_count": 98, "last_fetched": 1674378295.983347, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "142545838": {"repository_manifest": {"name": "Canvas Gauge Card", "render_readme": true, "filename": "canvas-gauge-card.js"}, "full_name": "custom-cards/canvas-gauge-card", "category": "plugin", "description": "The card makes it possible to use gauges from https://canvas-gauges.com/", "domain": "", "downloads": 11343, "etag_repository": "W/\"233861f51c004dc3e5d666f8734351f27d3621201ba01ce8334fe9997141abc3\"", "last_updated": "2021-05-09T14:02:19Z", "stargazers_count": 116, "last_fetched": 1674378292.127178, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "141952963": {"repository_manifest": {"name": "Circle Sensor Card", "homeassistant": "2020.12.0", "content_in_root": true, "filename": "circle-sensor-card.js"}, "full_name": "custom-cards/circle-sensor-card", "category": "plugin", "description": "A custom component for displaying sensor values as cards or elements", "domain": "", "etag_repository": "W/\"80c5c2e288e7e2f511489aaba9c4de960df3d1751d749ddf62741a850e6ca52a\"", "last_updated": "2022-06-02T04:10:16Z", "stargazers_count": 158, "last_fetched": 1674378296.235731, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180000010": {"repository_manifest": {}, "full_name": "custom-cards/cover-element", "category": "plugin", "description": null, "domain": "", "downloads": 2742, "etag_repository": "W/\"1db0bb16628190355c20a63e323741b534dfa63f8451dc221a5487e4bacd8f76\"", "last_updated": "2019-06-03T04:34:16Z", "stargazers_count": 16, "last_fetched": 1665325203.980369, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188686483": {"repository_manifest": {"name": "Decluttering Card", "render_readme": true, "filename": "decluttering-card.js"}, "full_name": "custom-cards/decluttering-card", "category": "plugin", "description": "\ud83e\uddf9 Declutter your lovelace configuration with the help of this card", "domain": "", "downloads": 13638, "etag_repository": "W/\"11b8bfaf9cac3ba44c8e3135b12108522cbe4bfc436d20f40e663226c53eca6c\"", "last_updated": "2022-12-03T11:03:09Z", "stargazers_count": 230, "last_fetched": 1674378297.282245, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "143762825": {"repository_manifest": {"name": "Dual gauge card", "filename": "dual-gauge-card.js", "content_in_root": true}, "full_name": "custom-cards/dual-gauge-card", "category": "plugin", "description": "Dual gauge custom card for Lovelace in Home Assistant", "domain": "", "etag_repository": "W/\"1be4ed93ce33a828bc21ca5491c3552683c11dfb90e31ac9b99ef2e8f511ce1c\"", "last_updated": "2022-11-01T08:48:35Z", "stargazers_count": 131, "last_fetched": 1674378297.229342, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245461": {"repository_manifest": {}, "full_name": "custom-cards/entity-attributes-card", "category": "plugin", "description": "Entity Attributes", "domain": "", "etag_repository": "W/\"f11bc799db491e79a77e96af27f46864ad4d3747927472fd74f48bb9242021b4\"", "last_updated": "2021-06-05T21:05:54Z", "stargazers_count": 56, "last_fetched": 1671385322.549786, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245495": {"repository_manifest": {"name": "gauge-card", "render_readme": true}, "full_name": "custom-cards/gauge-card", "category": "plugin", "description": null, "domain": "", "etag_repository": "W/\"60b09b9b8f2708528f490fe4daa471019bb8185cd5ac93fac5334140725d6ed0\"", "last_updated": "2022-05-01T20:12:53Z", "stargazers_count": 31, "last_fetched": 1674378298.351381, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245511": {"repository_manifest": {"name": "group-card", "render_readme": true}, "full_name": "custom-cards/group-card", "category": "plugin", "description": null, "domain": "", "etag_repository": "W/\"ac28b109b98371ef13abd777461ea8c116e68cb81d7b71b54bab4bd7aa9bafba\"", "last_updated": "2021-06-12T14:19:18Z", "stargazers_count": 22, "last_fetched": 1661584800.578098, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "179491130": {"repository_manifest": {}, "full_name": "custom-cards/group-element", "category": "plugin", "description": "A group element for picture-elements with dynamic toggle capability", "domain": "", "downloads": 988, "etag_repository": "W/\"915315136bb69884ea6af14eba3dae07f0fa0f93e54c6d1e14575eb6afc7cb3d\"", "last_updated": "2022-04-17T08:36:35Z", "stargazers_count": 55, "last_fetched": 1674378298.299039, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151318225": {"repository_manifest": {}, "full_name": "custom-cards/light-entity-row", "category": "plugin", "description": "Entity row for lights with sliders for adjusting different values based on features", "domain": "", "etag_repository": "W/\"aacae2fea6a946ca78648dff25ad5e8c3c733689cfa3252103a85d04f5a62efb\"", "last_updated": "2021-10-20T09:53:08Z", "stargazers_count": 49, "last_fetched": 1672947821.123549, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "156292058": {"repository_manifest": {"name": "Flex Table - Highly customizable, Data visualization", "content_in_root": true, "filename": "flex-table-card.js"}, "full_name": "custom-cards/flex-table-card", "category": "plugin", "description": "Highly Flexible Lovelace Card - arbitrary contents/columns/rows, regex matched, perfect to show appdaemon created content and anything breaking out of the entity_id + attributes concept", "etag_repository": "W/\"4d5e5edc07e929c6c2d2965449902746cebcf0f0c378e96e5704ca424e5bafca\"", "last_updated": "2022-09-20T10:33:08Z", "stargazers_count": 132, "topics": ["data-table", "data-visualization", "flexible-table", "high-configurability", "javascript", "single-file", "table-visualization"], "last_fetched": 1674378297.590647, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196132939": {"repository_manifest": {"homeassistant": "0.106.0", "name": "Nintendo Wishlist Card", "render_readme": true}, "full_name": "custom-cards/nintendo-wishlist-card", "category": "plugin", "description": "Displays a card showing Nintendo Switch games that are on sale from your wish list.", "domain": "", "etag_repository": "W/\"573ffaeed2e505c0ef114a6857a7ca636395ec02ed088860b5dc16abda705133\"", "last_updated": "2021-03-04T02:29:13Z", "stargazers_count": 10, "last_fetched": 1656859523.916957, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "165156754": {"repository_manifest": {}, "full_name": "custom-cards/pc-card", "category": "plugin", "description": "\ud83d\udcb5 Personal Capital Card", "domain": "", "etag_repository": "W/\"31c9d4d4d0a5ac723c5fb3d0d983c755fd064c9fe54e127ef6541b6187fd22b0\"", "last_updated": "2019-10-21T03:36:31Z", "stargazers_count": 5, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187247927": {"repository_manifest": {}, "full_name": "custom-cards/plan-coordinates", "category": "plugin", "description": null, "domain": "", "etag_repository": "W/\"fba7860497e7c045423ccbba53ed5f3db34eacf5214a5293431b03ff0c02d3ce\"", "last_updated": "2021-06-05T21:07:14Z", "stargazers_count": 28, "last_fetched": 1653230002.46218, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "159711605": {"repository_manifest": {"name": "Secondaryinfo Entity Row", "content_in_root": true, "filename": "secondaryinfo-entity-row.js", "render_readme": true, "homeassistant": "0.88"}, "full_name": "custom-cards/secondaryinfo-entity-row", "category": "plugin", "description": "Custom entity row for HomeAssistant, providing additional types of data to be displayed in the secondary info area of the Lovelace Entities card", "domain": "", "etag_repository": "W/\"d0e0149e953738a2fcdb1432f546ef105c6206a4be855d83c84681d26cce0a10\"", "last_updated": "2021-06-05T21:12:36Z", "stargazers_count": 151, "last_fetched": 1674378303.518403, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146335411": {"repository_manifest": {"name": "RMV Card", "content_in_root": true, "filename": "rmv-card.js"}, "full_name": "custom-cards/rmv-card", "category": "plugin", "description": "Custom card for the RMV component.", "domain": "", "etag_repository": "W/\"87b3ab8a9f6fb895d10d1d9a7d8847c725b545f49ae1dfd9fa2a3029ee6621cd\"", "last_updated": "2020-07-08T15:41:50Z", "stargazers_count": 15, "last_fetched": 1672947824.032593, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "173955605": {"repository_manifest": {"name": "Spotify Lovelace Card", "render_readme": true, "filename": "spotify-card.js"}, "full_name": "custom-cards/spotify-card", "category": "plugin", "description": "Spotify playlist card for Home Assistant card", "domain": "", "etag_repository": "W/\"3ccdc00914d172b9f5dbea09abfae2281264c089959c5198e2a4611440dc94f4\"", "last_updated": "2023-01-06T01:43:52Z", "stargazers_count": 288, "last_fetched": 1674378303.994312, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "248954055": {"repository_manifest": {"name": "Stack In Card", "render_readme": true, "filename": "stack-in-card.js"}, "full_name": "custom-cards/stack-in-card", "category": "plugin", "description": "\ud83d\udee0 group multiple cards into one card without the borders", "domain": "", "downloads": 33809, "etag_repository": "W/\"a6940824fbc5638d725e80e765949327f57f1f849f7e1fc338c54d03999e4e7e\"", "last_updated": "2023-01-06T02:41:50Z", "stargazers_count": 166, "last_fetched": 1674378304.586729, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "185304888": {"repository_manifest": {}, "full_name": "custom-cards/text-action-element", "category": "plugin", "description": null, "domain": "", "downloads": 93, "etag_repository": "W/\"940e5f72da0c749063c21232d281699d9bc1af9ee6834e806f1c0bbc67a1f4f1\"", "last_updated": "2022-05-06T19:58:02Z", "stargazers_count": 3, "last_fetched": 1653230007.470743, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "147764937": {"repository_manifest": {"name": "surveillance-card", "content_in_root": true, "render_readme": true}, "full_name": "custom-cards/surveillance-card", "category": "plugin", "description": "A custom component for displaying camera feeds in the style of a surveillance system.", "domain": "", "etag_repository": "W/\"7ac406c0d2ff806b44f5fe4d9ab2ec49f8afe0ad7056f8e819f6fb5e8f6ee351\"", "last_updated": "2022-10-19T15:40:19Z", "stargazers_count": 191, "topics": ["camera", "motion", "security"], "last_fetched": 1674378304.689936, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203294272": {"repository_manifest": {}, "full_name": "custom-cards/unused-card", "category": "plugin", "description": "All your unused entities in a list", "domain": "", "etag_repository": "W/\"deb8d14e6b5ab0b3b646a4076be857311ce477f2d4280e81130171bed954111f\"", "last_updated": "2023-01-04T07:38:35Z", "stargazers_count": 27, "last_fetched": 1674378307.125827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192835334": {"repository_manifest": {"name": "Lovelace Lock Card", "render_readme": true}, "full_name": "CyrisXD/love-lock-card", "category": "plugin", "description": "Home Assistant Lovelace card to lock entire cards behind passwords or prompts.", "domain": "", "etag_repository": "W/\"c3c892cbe131e7c0342c55ce1ba65fb2004110a47130edd57d661f21adbfd032\"", "last_updated": "2022-01-17T23:16:50Z", "stargazers_count": 104, "last_fetched": 1671385329.925195, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "254206234": {"repository_manifest": {"name": "PVPC Hourly Pricing Card", "render_readme": true}, "full_name": "danimart1991/pvpc-hourly-pricing-card", "category": "plugin", "description": "Home Assistant Lovelace custom card to use with Spain electricity hourly pricing (PVPC) integration", "domain": "", "downloads": 1887, "etag_repository": "W/\"a629171323a4b7e91d0ba8f6486342c131164dd605379d0426993719eba4563d\"", "last_updated": "2022-11-28T08:54:39Z", "stargazers_count": 57, "topics": ["esios", "graphics", "lovelace-card", "lovelace-custom-card", "pvpc", "ree"], "last_fetched": 1674378307.767291, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "296396632": {"repository_manifest": {"name": "Rejseplanen S-Tog Card", "country": "DK"}, "full_name": "DarkFox/rejseplanen-stog-card", "category": "plugin", "description": "Lovelace card for listing departures from Rejseplanen sensors, in the style of S-Tog departure boards.", "domain": "", "etag_repository": "W/\"e70eaabaa0a2ab39cfd20376b4e16a5f136fef66276d3d5f517330e9f145b0d1\"", "last_updated": "2023-01-06T14:35:56Z", "stargazers_count": 2, "topics": ["denmark", "lovelace-card", "rejseplanen", "rejseplanen-sensors"], "last_fetched": 1674378310.226645, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195497310": {"repository_manifest": {"name": "Custom Animated Weather Card", "content_in_root": true, "filename": "bom-weather-card.js", "country": ["IT", "FR", "DE", "NL", "PL", "HE", "RU", "DA", "UA", "EN"]}, "full_name": "DavidFW1960/bom-weather-card", "category": "plugin", "description": "Custom Animated Weather Card for any weather provider", "domain": "", "etag_repository": "W/\"0c590fb2e7b5505a3cdebd30e534914080554a2245de3be865cb80c2c01b53e6\"", "last_updated": "2022-12-11T01:56:35Z", "stargazers_count": 131, "topics": ["bom", "weather-forecast"], "last_fetched": 1674378311.026252, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "198066338": {"repository_manifest": {"name": "Rejseplanen Card", "country": "DK"}, "full_name": "DarkFox/rejseplanen-card", "category": "plugin", "description": "Lovelace card for listing departures from Rejseplanen sensors", "domain": "", "etag_repository": "W/\"4fd9d9ffe9972b884d66fed02b870f8ac4e6357d6b5eb8386590244997ed6bad\"", "last_updated": "2022-07-20T01:30:51Z", "stargazers_count": 5, "topics": ["denmark", "lovelace-card", "rejseplanen", "rejseplanen-card", "rejseplanen-sensors"], "last_fetched": 1666451586.189925, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "273007955": {"repository_manifest": {"name": "Power Usage Card with Regular Expressions", "content_in_root": true, "filename": "power-usage-card-regex.js", "render_readme": true}, "full_name": "DBa2016/power-usage-card-regex", "category": "plugin", "description": "Lovelace pie chart card that displays current energy usage", "domain": "", "etag_repository": "W/\"194ea82a8e02ed8639d583821b2ec65a0efd7a10032c540098de4f0602cc5f4f\"", "last_updated": "2021-06-24T17:07:11Z", "stargazers_count": 7, "topics": ["lovelace-custom-card", "power-usage"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231145540": {"repository_manifest": {"name": "NextBus Card", "render_readme": true, "filename": "nextbus-card.js"}, "full_name": "dcramer/lovelace-nextbus-card", "category": "plugin", "description": "A card giving richer public transit display using NextBus sensors.", "domain": "", "downloads": 270, "etag_repository": "W/\"d7489543badfd31ad6bf9178def497486f5b63dcb031da189dff3ef9faebf984\"", "last_updated": "2022-02-12T21:44:47Z", "stargazers_count": 7, "topics": ["lovelace-custom-card", "nextbus", "public-transit"], "last_fetched": 1657362454.966525, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269011342": {"repository_manifest": {"name": "Shutter Card", "filename": "hass-shutter-card.js", "render_readme": true, "homeassistant": "2021.11.0"}, "full_name": "Deejayfool/hass-shutter-card", "category": "plugin", "description": "Shutter card for Home Assistant Lovelace UI", "domain": "", "downloads": 15891, "etag_repository": "W/\"dbb91d997cf8fa94ac276a5d4b78956565eacc4b187e2df1dd3ed7da25012342\"", "last_updated": "2022-06-01T18:07:31Z", "stargazers_count": 176, "last_fetched": 1674378315.179058, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "274738925": {"repository_manifest": {"name": "Purifier Card", "render_readme": true, "filename": "purifier-card.js"}, "full_name": "denysdovhan/purifier-card", "category": "plugin", "description": "Air Purifier card for Home Assistant Lovelace UI", "domain": "", "downloads": 6273, "etag_repository": "W/\"a8c681e35d66efd7b94613d74987af2839a3ed3a0fddb0eee6cecb332536a646\"", "last_updated": "2023-01-19T07:30:53Z", "stargazers_count": 175, "topics": ["air-purifier", "purifier"], "last_fetched": 1674378315.5006, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193262086": {"repository_manifest": {}, "full_name": "dimagoltsman/content-card-remote-control", "category": "plugin", "description": "Home assistant remote control", "domain": "", "etag_repository": "W/\"5ce81fab4d3af28ab7b0beffa64e6811e13a62fb2a70a91d1a785b872aba9c6d\"", "last_updated": "2022-01-20T20:58:11Z", "stargazers_count": 4, "last_fetched": 1657789290.23533, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197929015": {"repository_manifest": {}, "full_name": "dmulcahey/zha-network-card", "category": "plugin", "description": "Custom Lovelace card that displays ZHA network and device information", "domain": "", "etag_repository": "W/\"da193ad2caf432a157f28b3c2fef45051d6157d28a17af964671029a01dec7e7\"", "last_updated": "2020-11-25T23:16:49Z", "stargazers_count": 75, "last_fetched": 1672947838.14413, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261291295": {"repository_manifest": {"name": "Vacuum Card", "render_readme": true, "filename": "vacuum-card.js"}, "full_name": "denysdovhan/vacuum-card", "category": "plugin", "description": "Vacuum cleaner card for Home Assistant Lovelace UI", "downloads": 31213, "etag_repository": "W/\"0c0cc9616486349e2f4ffacb47a8ce2cb039a71bd0c71f45bf39ea388694a883\"", "last_updated": "2023-01-08T10:16:57Z", "stargazers_count": 646, "topics": ["robot-vacuum", "vacuum"], "last_fetched": 1674378316.229025, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "263901624": {"repository_manifest": {"name": "Generic Remote Control Card", "filename": "generic-remote-control-card.js", "render_readme": true}, "full_name": "dimagoltsman/generic-remote-control-card", "category": "plugin", "description": "Generic Remote control card for HACS", "etag_repository": "W/\"d5c0934dd6405462ea7389f35a3792bc14a7ecd904e3907482d8fd5255ce9c31\"", "last_updated": "2022-10-11T20:06:17Z", "stargazers_count": 74, "last_fetched": 1674378317.392334, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265313034": {"repository_manifest": {"name": "Refreshable picture card", "filename": "refreshable-picture-card.js", "render_readme": true}, "full_name": "dimagoltsman/refreshable-picture-card", "category": "plugin", "description": "a refreshable picture card for HACS", "domain": "", "etag_repository": "W/\"1c076591fb0def0b4406c5fbfcf1e83a79dc98e227cac483c66f9f9709a6ffdc\"", "last_updated": "2022-10-04T08:24:29Z", "stargazers_count": 18, "last_fetched": 1672947838.198892, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "157674859": {"repository_manifest": {"name": "Air Visual Card"}, "full_name": "dnguyen800/air-visual-card", "category": "plugin", "description": "A Lovelace card showing air quality data from airvisual.com. Requires the AirVisual component.", "domain": "", "etag_repository": "W/\"217419395bdb06b7b6114349632b1206c3c78b9b541fd08516575ea061333698\"", "last_updated": "2021-12-03T01:41:18Z", "stargazers_count": 75, "topics": ["air-quality", "air-visual"], "last_fetched": 1674378319.188399, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236664033": {"repository_manifest": {"name": "Swipe Glance Card", "render_readme": true, "filename": "swipe-glance-card.js"}, "full_name": "dooz127/swipe-glance-card", "category": "plugin", "description": ":point_up_2: Swipe Glance Card", "domain": "", "downloads": 2090, "etag_repository": "W/\"bfd1abe537c93cd10040ab91e9421043f897346e001b139b85b8401f60bb5601\"", "last_updated": "2023-01-04T14:06:20Z", "stargazers_count": 12, "topics": ["automation"], "last_fetched": 1672947840.916081, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260597137": {"repository_manifest": {"name": "Air Purifier Card", "render_readme": true}, "full_name": "fineemb/lovelace-air-filter-card", "category": "plugin", "description": "\u7528\u4e8eLovelace\u7684\u5c0f\u7c73\u7a7a\u6c14\u51c0\u5316\u5668\u5361\u7247", "domain": "", "etag_repository": "W/\"41b35ae64c17716102598456a93d1ec655744a598a8ff126d5578283e31f7045\"", "last_updated": "2022-06-02T18:43:53Z", "stargazers_count": 14, "last_fetched": 1672947843.754497, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "247134044": {"repository_manifest": {"name": "Multiline Text Input Card"}, "full_name": "faeibson/lovelace-multiline-text-input-card", "category": "plugin", "description": "A simple lovelace multiline text input card", "domain": "", "etag_repository": "W/\"9d9e34f8868196ecba91cd38706fca5955c3cf9c59229043690dc2015c34ecd0\"", "last_updated": "2020-10-15T00:16:17Z", "stargazers_count": 8, "topics": ["lovelace-card", "multiline", "text-input"], "last_fetched": 1645379983.130397, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307058107": {"repository_manifest": {"name": "Car card", "render_readme": true, "country": ["CN"]}, "full_name": "fineemb/lovelace-car-card", "category": "plugin", "description": "\u8f66\u8f86\u4eea\u8868\u76d8", "domain": "", "etag_repository": "W/\"2544289ec2bfb4dd4fe67da3a14fa0738d3694391a67db5c5d4f5a2618b2129e\"", "last_updated": "2020-11-01T23:45:40Z", "stargazers_count": 5, "topics": ["car", "lovelace-custom-card", "lynkco"], "last_fetched": 1642851273.180509, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286408741": {"repository_manifest": {"name": "Posten Card", "render_readme": true, "filename": "posten-card.js", "country": "NO"}, "full_name": "ezand/lovelace-posten-card", "category": "plugin", "description": "A Lovelace card to display Norwegian mail delivery days", "domain": "", "downloads": 1475, "etag_repository": "W/\"822a805bf2a2ca6a0a96721597c55d119984ded354c2484c137e1b8ff21b21d7\"", "last_updated": "2022-07-21T05:37:57Z", "stargazers_count": 14, "topics": ["lovelace-card", "mail-delivery"], "last_fetched": 1665325228.467281, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259784620": {"repository_manifest": {"name": "Gaode Map card", "render_readme": true, "country": ["CN"]}, "full_name": "fineemb/lovelace-cn-map-card", "category": "plugin", "description": "\u590d\u523b\u5b98\u65b9Lovelace\u5730\u56fe\u5361\u7247,\u57fa\u4e8e\u9ad8\u5fb7\u5730\u56fe", "domain": "", "etag_repository": "W/\"44acef22d60731dff94cc867d932716d1ddd48e125aa2ce315ac60c7528cd2ff\"", "last_updated": "2022-06-03T03:35:37Z", "stargazers_count": 44, "last_fetched": 1671385347.607082, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291480917": {"repository_manifest": {"name": "Colorfulclouds Weather Card", "render_readme": true, "filename": "colorfulclouds-weather-card.js", "country": ["CN"]}, "full_name": "fineemb/lovelace-colorfulclouds-weather-card", "category": "plugin", "description": "\u8fd9\u662f\u4e00\u4e2a\u9002\u7528\u4e8e\u5f69\u4e91\u5929\u6c14\u96c6\u6210\u7684Lovelace\u5361\u7247", "domain": "", "etag_repository": "W/\"3e4aa932d70b63ca63631c7ef66e801dec117b8dcd49745f992195daa156f21b\"", "last_updated": "2022-06-02T18:43:02Z", "stargazers_count": 37, "topics": ["lovelace-custom-card", "weather"], "last_fetched": 1674378325.477312, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "240906060": {"repository_manifest": {"name": "PHICOMM DC1 card", "render_readme": true, "country": ["CN"]}, "full_name": "fineemb/lovelace-dc1-card", "category": "plugin", "description": "\u6590\u8bafDC1\u6392\u63d2\u7684Lovelace\u5361\u7247", "domain": "", "etag_repository": "W/\"31715a4796744ad811e059974183f37afe626ec28010cd8852af0caa3f381297\"", "last_updated": "2022-06-03T03:36:28Z", "stargazers_count": 20, "last_fetched": 1674378325.668824, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214792276": {"repository_manifest": {"name": "Xiaomi Fan Lovelace Card", "render_readme": true}, "full_name": "fineemb/lovelace-fan-xiaomi", "category": "plugin", "description": "Xiaomi Smartmi Fan Lovelace card for HASS/Home Assistant.", "domain": "", "etag_repository": "W/\"d723e2dd28943967749d69a70268bc3d4c5f0fbc9c9d82dc3db0cad439f31812\"", "last_updated": "2022-06-06T14:18:26Z", "stargazers_count": 40, "last_fetched": 1665938596.555895, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237887092": {"repository_manifest": {"name": "Climate thermostat card", "render_readme": true, "filename": "main.js"}, "full_name": "fineemb/lovelace-thermostat-card", "category": "plugin", "description": "Thermostat Lovelace card", "domain": "", "etag_repository": "W/\"3f3b56997ff51de7b7b949a2d71851a9cd45889d50f9ae3cf512d722ad037e18\"", "last_updated": "2022-06-02T18:36:47Z", "stargazers_count": 90, "last_fetched": 1674378327.80254, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250552447": {"repository_manifest": {"name": "Binary Control Button Row", "filename": "binary-control-button-row.js"}, "full_name": "finity69x2/binary-control-button-row", "category": "plugin", "description": "Provides a customizable button row for binary entities in Home Assistant", "domain": "", "etag_repository": "W/\"471d608ab06766c22940e4ed7d26d89f5276ae1197ab04712cdf48003fc90c13\"", "last_updated": "2021-06-05T12:09:32Z", "stargazers_count": 17, "last_fetched": 1648398739.031688, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "191663150": {"repository_manifest": {}, "full_name": "finity69x2/fan-control-entity-row", "category": "plugin", "description": "Provides a means to show a compact graphical control row for 2 or 3 speed fans in Home Assistant", "domain": "", "etag_repository": "W/\"7d06afe0e3e48b5e2fa8655fff5701f24e3dd225408b91cb276448891268b48d\"", "last_updated": "2022-09-12T22:09:11Z", "stargazers_count": 63, "last_fetched": 1671385352.628484, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "287409957": {"repository_manifest": {"name": "Cover Control Button Row", "filename": "cover-control-button-row.js"}, "full_name": "finity69x2/cover-control-button-row", "category": "plugin", "description": "button row for controlling open/close covers in Home Assistant", "domain": "", "etag_repository": "W/\"482d2f96fedbc4c08a660506f5953225dff920c9465fcac061a62a5e7cd3c5f8\"", "last_updated": "2021-07-29T21:53:08Z", "stargazers_count": 11, "topics": ["cover"], "last_fetched": 1661584828.93472, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286860710": {"repository_manifest": {"name": "Cover Position Preset Row", "filename": "cover-position-preset-row.js"}, "full_name": "finity69x2/cover-position-preset-row", "category": "plugin", "description": "pluig-in for Home Assistant that provides an easy means set 3 fixed positions for a programmable cover entity.", "domain": "", "etag_repository": "W/\"09661d5feeb61b8bcd7099609d1563f6f9a1229fd6fc68d28fc408c79278022b\"", "last_updated": "2021-07-29T21:44:05Z", "stargazers_count": 15, "topics": ["cover", "lovelace-custom-card"], "last_fetched": 1665325234.653582, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "226862969": {"repository_manifest": {"name": "Light Brightness Preset Row", "filename": "light-brightness-preset-row.js"}, "full_name": "finity69x2/light-brightness-preset-row", "category": "plugin", "description": "Provides a means to program 3 preset brightness settings for dimmable lights in Home Assistant", "domain": "", "etag_repository": "W/\"9e43e901a3876afb06a36d5a50dacc0fc77b05fae96bfca07cb2aec6c264f541\"", "last_updated": "2022-06-04T07:54:59Z", "stargazers_count": 24, "last_fetched": 1674378331.765272, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245239101": {"repository_manifest": {"name": "Lovelace Card Preloader", "render_readme": true}, "full_name": "gadgetchnnel/lovelace-card-preloader", "category": "plugin", "description": "Allows preloading of Lovelace cards as a work around for changes in Home Assistant 0.107", "domain": "", "etag_repository": "W/\"7f8c62d3a2acf391df9c9123242344f234485ac59572f8bb23dd1fbc05fd4a93\"", "last_updated": "2023-01-01T17:15:46Z", "stargazers_count": 20, "last_fetched": 1672947854.466939, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "182113743": {"repository_manifest": {}, "full_name": "gadgetchnnel/lovelace-text-input-row", "category": "plugin", "description": "A custom Lovelace text input row for use in entities cards", "domain": "", "etag_repository": "W/\"2abcc46e64771af40c1de34dfa38d592fa4ef1b8a1db6ca8bbcf18fb8dc91f17\"", "last_updated": "2020-08-18T05:04:31Z", "stargazers_count": 30, "last_fetched": 1665938604.902319, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "184333163": {"repository_manifest": {"name": "Lovelace Card Templater", "render_readme": true}, "full_name": "gadgetchnnel/lovelace-card-templater", "category": "plugin", "description": "Custom Lovelace card which allows Jinja2 templates to be applied to other cards", "domain": "", "etag_repository": "W/\"928df5c936d6499b6b541a744d925504c7a6c13c43551b3e4048aae1d2c279e9\"", "last_updated": "2023-01-07T15:41:51Z", "stargazers_count": 94, "last_fetched": 1674378333.773578, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "174016256": {"repository_manifest": {"name": "Lovelace Home Feed Card", "render_readme": true}, "full_name": "gadgetchnnel/lovelace-home-feed-card", "category": "plugin", "description": "A custom Lovelace card for displaying a combination of persistent notifications, calendar events, and entities in the style of a feed.", "domain": "", "etag_repository": "W/\"2494fdada1998937d771f86a95814c5f0cb0149831f4cbac550adf9203370e5b\"", "last_updated": "2023-01-01T17:07:13Z", "stargazers_count": 184, "last_fetched": 1672947855.321716, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261262884": {"repository_manifest": {"name": "Time Picker Card", "render_readme": true, "filename": "time-picker-card.js"}, "full_name": "GeorgeSG/lovelace-time-picker-card", "category": "plugin", "description": "\ud83d\udd70\ufe0f Time Picker Card for Home Assistant's Lovelace UI", "domain": "", "downloads": 4052, "etag_repository": "W/\"8b2bbbc78b818c9919d04b260abb32865a0baacffc099933d6a79f06e03f35be\"", "last_updated": "2023-01-09T13:17:27Z", "stargazers_count": 167, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1674378337.15364, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "160042309": {"repository_manifest": {"name": "Power wheel card"}, "full_name": "gurbyz/power-wheel-card", "category": "plugin", "description": "An intuitive way to represent the power and energy that your home is consuming or producing. (A custom card for the Lovelace UI of Home Assistant.)", "domain": "", "etag_repository": "W/\"0df5d9e471f2deb20615bd3236662fb523fbe5343f9c6cba9902ab79cf5477d4\"", "last_updated": "2022-06-06T07:43:11Z", "stargazers_count": 142, "topics": ["energy", "solar-panels"], "last_fetched": 1671385365.288866, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220679143": {"repository_manifest": {"name": "HASL Departure Card", "filename": "hasl-departure-card.js", "homeassistant": "2021.12.0"}, "full_name": "hasl-sensor/lovelace-hasl-departure-card", "category": "plugin", "description": "Lovelace Departure Card for the HASL Platform", "domain": "", "etag_repository": "W/\"bb702300401fcf06f3e638c9265a1413a04ea76114d595f28e77b3870b9a29af\"", "last_updated": "2022-11-27T16:20:25Z", "stargazers_count": 8, "topics": ["departures", "hasl", "sl", "stockholms-lokaltrafik"], "last_fetched": 1674378339.6246, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220679530": {"repository_manifest": {"name": "HASL Traffic Status Card", "filename": "hasl-traffic-status-card.js", "homeassistant": "0.92"}, "full_name": "hasl-sensor/lovelace-hasl-traffic-status-card", "category": "plugin", "description": "Lovelace Traffic Status Card for the HASL Platform", "domain": "", "etag_repository": "W/\"287db3f3718be02514d2e7959c933de3d9fc18910396cf456ae5591824beed85\"", "last_updated": "2020-03-04T12:20:16Z", "stargazers_count": 4, "topics": ["hasl", "sl", "stockholms-lokaltrafik", "traffic-status"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "304967918": {"repository_manifest": {"name": "Number Box", "filename": "numberbox-card.js", "render_readme": true}, "full_name": "htmltiger/numberbox-card", "category": "plugin", "description": "Replace input_number sliders with plus and minus buttons", "domain": "", "etag_repository": "W/\"6fd376720a87fbc29319090f9cb1a35496afa58be87dae69cc42fb48fd85d3e9\"", "last_updated": "2023-01-09T19:39:06Z", "stargazers_count": 71, "topics": ["input", "lovelace-card", "lovelace-cards", "lovelace-custom-card", "number", "numberbox-card", "slider"], "last_fetched": 1674378340.407056, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "172177543": {"repository_manifest": {"name": "Config Template Card", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "iantrich/config-template-card", "category": "plugin", "description": "\ud83d\udcdd Templatable Lovelace Configurations", "domain": "", "downloads": 24758, "etag_repository": "W/\"cb9adb3ffc6d10c8c37067c2c76573c54a4feccea2c8a4d9641f8ac329189920\"", "last_updated": "2023-01-20T00:49:41Z", "stargazers_count": 306, "last_fetched": 1674378344.670286, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "175927964": {"repository_manifest": {"name": "Podcast Card", "render_readme": true}, "full_name": "iantrich/podcast-card", "category": "plugin", "description": "\ud83c\udfa7 Podcast Player Card", "domain": "", "downloads": 1200, "etag_repository": "W/\"bd6271845d64f40904e92c90189d46aaf2ed6c01fa25752d9e5e4a8e2f7a7d02\"", "last_updated": "2023-01-20T00:59:08Z", "stargazers_count": 21, "last_fetched": 1674378344.8166, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215633404": {"repository_manifest": {"name": "Restriction Card", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "iantrich/restriction-card", "category": "plugin", "description": "\ud83d\udd12 Apply restrictions to Lovelace cards", "domain": "", "downloads": 8315, "etag_repository": "W/\"1dd8b81aad8cf79fd5ea8382decb7bc1354b78f4f9c9d8c539d3eb39fed5050b\"", "last_updated": "2023-01-20T00:55:38Z", "stargazers_count": 175, "topics": ["security"], "last_fetched": 1674378345.528942, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164367214": {"repository_manifest": {"name": "Roku Card", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "iantrich/roku-card", "category": "plugin", "description": "\ud83d\udcfa Roku Remote Card", "domain": "", "downloads": 5466, "etag_repository": "W/\"fd9d9499e93c3eb6a2e8fdcf6f2ba8beb060edfca6727e9ce5bebc773703e93d\"", "last_updated": "2022-07-20T17:14:14Z", "stargazers_count": 97, "topics": ["roku"], "last_fetched": 1671385371.649625, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "179788256": {"repository_manifest": {"name": "Text Divider Row", "render_readme": true}, "full_name": "iantrich/text-divider-row", "category": "plugin", "description": "\ud83d\uddc2 Text Divider Row", "domain": "", "downloads": 6698, "etag_repository": "W/\"b47b6fab7ba53b41aeea4bce62da9c277da667e7482c3200adfaf719b9966637\"", "last_updated": "2022-07-21T03:51:59Z", "stargazers_count": 69, "last_fetched": 1672947867.464908, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "181124811": {"repository_manifest": {"name": "Radial Menu Element", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "iantrich/radial-menu", "category": "plugin", "description": "\u2b55 Radial Menu Element", "domain": "", "downloads": 236, "etag_repository": "W/\"e494f043b321dc685a02c624e3e4d4d797435568b5cc3884459c88371dd045b0\"", "last_updated": "2023-01-20T00:58:16Z", "stargazers_count": 58, "last_fetched": 1674378345.324769, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194824532": {"repository_manifest": {"name": "M\u00e9t\u00e9o France Weather Card", "country": "FR", "render_readme": true}, "full_name": "Imbuzi/meteo-france-weather-card", "category": "plugin", "description": "Weather Card with animated icons for Home Assistant Lovelace adapted to display all informations from M\u00e9t\u00e9o France integration", "domain": "", "etag_repository": "W/\"d29590e5a3923c3056616af1162be00abd8324433b240dc26ae5f28198164260\"", "last_updated": "2022-10-13T21:39:44Z", "stargazers_count": 24, "topics": ["animated-icons", "lovelace-card", "meteo-france", "weather"], "last_fetched": 1671385376.669877, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "273405252": {"repository_manifest": {"name": "Lightning Detector Card", "filename": "lightning-detector-card.js"}, "full_name": "ironsheep/lovelace-lightning-detector-card", "category": "plugin", "description": "A Lightning Detection Display Card for Home Assistant Lovelace", "domain": "", "downloads": 1819, "etag_repository": "W/\"f6bbea8139ce70226913551b0c4860623293b9ba4c55d264e9ff846532cded8a\"", "last_updated": "2022-07-21T03:24:52Z", "stargazers_count": 17, "topics": ["as3935", "lovelace-card", "lovelace-custom-card"], "last_fetched": 1661584848.324311, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231015759": {"repository_manifest": {"name": "Xiaomi Smartmi Fan Card", "render_readme": true, "filename": "xiaomi-fan-card.js"}, "full_name": "ikaruswill/lovelace-fan-xiaomi", "category": "plugin", "description": "Xiaomi Smartmi Fan Lovelace card with CSS fan animation", "domain": "", "downloads": 2102, "etag_repository": "W/\"757a7bc00eff6c35c85baadd6b966abbe6b5dfde2602eed60312ffe3222d5b2a\"", "last_updated": "2022-07-24T15:33:46Z", "stargazers_count": 60, "topics": ["xiaomi", "xiaomi-fan"], "last_fetched": 1662801532.839905, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "281214271": {"repository_manifest": {"name": "RPi Monitor Card", "filename": "rpi-monitor-card.js"}, "full_name": "ironsheep/lovelace-rpi-monitor-card", "category": "plugin", "description": "A Raspberry Pi status display Card for Home Assistant Lovelace", "domain": "", "downloads": 18101, "etag_repository": "W/\"a618750455e371c4d7ec75874a08122fe31fe9641b539bcaa8b914d374996f0a\"", "last_updated": "2023-01-04T16:09:17Z", "stargazers_count": 101, "topics": ["lovelace-card", "lovelace-custom-card", "raspberry-pi"], "last_fetched": 1674378350.696967, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164887047": {"repository_manifest": {}, "full_name": "isabellaalstrom/krisinfo-card", "category": "plugin", "description": "A Lovelace custom card for custom component Krisinformation is Home Assistant", "domain": "", "etag_repository": "W/\"0de41a7104dc59fcc5940a7c5eface92b319f0eedd907b7927800a115485a484\"", "last_updated": "2020-09-18T17:45:35Z", "stargazers_count": 7, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195671060": {"repository_manifest": {"name": "Lovelace Grocy Chores Card", "render_readme": true}, "full_name": "isabellaalstrom/lovelace-grocy-chores-card", "category": "plugin", "description": "A card to track chores and tasks in Grocy.", "etag_repository": "W/\"2a65b3786930948329162672fee3c1929d620239673d55569fe60a93402547f5\"", "last_updated": "2022-12-16T11:03:27Z", "stargazers_count": 92, "last_fetched": 1674378351.17285, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237812136": {"repository_manifest": {"name": "Yandex Icons", "filename": "yandex-icons.js", "render_readme": true, "country": ["RU"], "homeassistant": "0.110.0"}, "full_name": "iswitch/ha-yandex-icons", "category": "plugin", "description": "\u0418\u043a\u043e\u043d\u043a\u0438 \u042f\u043d\u0434\u0435\u043a\u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043b\u044f Home Assistant", "domain": "", "etag_repository": "W/\"aa84d9578fd207fd7392096b687bc0e368111d2c1eac33b30530b480433683ab\"", "last_updated": "2023-01-13T11:09:57Z", "stargazers_count": 52, "topics": ["icon-pack", "icons", "yandex"], "last_fetched": 1674378351.075423, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245159052": {"repository_manifest": {"name": "Canary"}, "full_name": "jcwillox/lovelace-canary", "category": "plugin", "description": "\ud83d\udc24 Adds many useful extensions to lovelace, such as templating secondary info, stacking within a card and more!", "domain": "", "downloads": 1904, "etag_repository": "W/\"d9388a633de5114d86120b8f4fde296899a1e1a3d900205daabd3cf4e88f80b2\"", "last_updated": "2022-12-14T09:32:32Z", "stargazers_count": 51, "topics": ["canary-card", "extensions"], "last_fetched": 1674378354.593551, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "244872232": {"repository_manifest": {"name": "Paper Buttons Row"}, "full_name": "jcwillox/lovelace-paper-buttons-row", "category": "plugin", "description": "Adds highly configurable buttons that use actions and per-state styling.", "downloads": 7374, "etag_repository": "W/\"16f8c0a51f7ef85152cc522d035dd09e9885784d18bc56871840fd3d911f09e0\"", "last_updated": "2022-12-13T13:19:30Z", "stargazers_count": 174, "topics": ["actions", "buttons", "haptic", "paper"], "last_fetched": 1674378354.968285, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283578257": {"repository_manifest": {"name": "power-distribution-card", "render_readme": true, "filename": "power-distribution-card.js"}, "full_name": "JonahKr/power-distribution-card", "category": "plugin", "description": "A Lovelace Card for visualizing power distributions.", "domain": "", "downloads": 1983, "etag_repository": "W/\"d6e5373590495853505f43109682d5901ab0ac329d16380334bd5391f2fc3718\"", "last_updated": "2023-01-10T22:58:30Z", "stargazers_count": 133, "topics": ["e3dc", "lovelace-card"], "last_fetched": 1674378357.299403, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "238802974": {"repository_manifest": {"name": "Roomba Vacuum Card", "render_readme": true}, "full_name": "jeremywillans/lovelace-roomba-vacuum-card", "category": "plugin", "description": "HA Lovelace Card for iRobot Roomba Vacuum Cleaner leveraging the rest980 Docker Image", "domain": "", "etag_repository": "W/\"ffa963630715768060d15cfc0a129681738f1bbe6b54880a272530ec0089827e\"", "last_updated": "2022-12-13T01:31:39Z", "stargazers_count": 34, "topics": ["irobot", "irobot-roomba", "lovelace-custom-card", "vacuum"], "last_fetched": 1671385388.256292, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "163446489": {"repository_manifest": {"name": "Entur Card", "render_readme": true, "filename": "entur-card.js"}, "full_name": "jonkristian/entur-card", "category": "plugin", "description": "Home Assistant Lovelace card card for the Entur public transport component.", "domain": "", "etag_repository": "W/\"a3500b4135cd91ec98ebdebd85c7824f8fd43b78020c7ea91494febe9853dee3\"", "last_updated": "2022-01-27T09:42:11Z", "stargazers_count": 41, "topics": ["entur", "transportation"], "last_fetched": 1674378358.249948, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "148520838": {"repository_manifest": {}, "full_name": "kalkih/mini-media-player", "category": "plugin", "description": "Minimalistic media card for Home Assistant Lovelace UI", "domain": "", "downloads": 44438, "etag_repository": "W/\"cb3fdf0d7d32e6e6f56f1426dfbeddadecb1b9a1f8d963acbf20d6a2aae67625\"", "last_updated": "2023-01-21T16:03:34Z", "stargazers_count": 1203, "topics": ["automation", "custom", "sonos"], "last_fetched": 1674378361.292453, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "172998062": {"repository_manifest": {}, "full_name": "kalkih/simple-weather-card", "category": "plugin", "description": "Minimalistic weather card for Home Assistant", "domain": "", "downloads": 23691, "etag_repository": "W/\"036fbbaf4fff09340953532a5bbf672e61e0c576f0c4123ec51f6ee6d8e4a5bc\"", "last_updated": "2022-05-27T21:10:15Z", "stargazers_count": 204, "topics": ["weather"], "last_fetched": 1674378361.233861, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292008305": {"repository_manifest": {"name": "Steam Card", "render_readme": true, "filename": "kb-steam-card.js"}, "full_name": "Kibibit/kb-steam-card", "category": "plugin", "description": "A Home Assistant card for Steam integrations", "domain": "", "etag_repository": "W/\"f952e4c24dffc91efcb8e6e3a704d1706f33d2e56af13005b51242a7c16d4697\"", "last_updated": "2022-06-19T17:39:49Z", "stargazers_count": 24, "topics": ["card", "steam"], "last_fetched": 1671385394.523936, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "276636213": {"repository_manifest": {"name": "Vertical Slider Cover Card", "render_readme": true, "filename": "vertical-slider-cover-card.js"}, "full_name": "konnectedvn/lovelace-vertical-slider-cover-card", "category": "plugin", "description": "Cover card with homekit style vertical position slider (best with panel-mode but normal-mode works also)", "domain": "", "downloads": 3124, "etag_repository": "W/\"473d7f60a060508dce20a102885fda4f50477943de3dbe140eb585fa1d0fd2d7\"", "last_updated": "2022-07-09T10:24:45Z", "stargazers_count": 44, "topics": ["card"], "last_fetched": 1661584866.711546, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "290281267": {"repository_manifest": {"name": "Fullscreen Card", "render_readme": "true"}, "full_name": "KTibow/fullscreen-card", "category": "plugin", "description": "Make your Home Assistant browser fullscreen with one tap.", "domain": "", "downloads": 1812, "etag_repository": "W/\"d97b47386d456b1b84f941f5ba4010f8f2956872fdbaa50bfa3f7b89204adcc8\"", "last_updated": "2021-12-30T17:18:35Z", "stargazers_count": 23, "topics": ["card", "fullscreen", "hacktoberfest2020"], "last_fetched": 1661584866.941529, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "168570875": {"repository_manifest": {}, "full_name": "ljmerza/fitbit-card", "category": "plugin", "description": "fitbit-card for lovelace", "domain": "", "downloads": 1853, "etag_repository": "W/\"32a4dbea00b7b1b40fdce1addcb8185c2954c101fcda53e2c05a23028627543f\"", "last_updated": "2020-07-10T20:55:32Z", "stargazers_count": 23, "last_fetched": 1653230066.528433, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "169783299": {"repository_manifest": {}, "full_name": "ljmerza/github-card", "category": "plugin", "description": "Track your repo issues, starts, forks, and pull requests", "domain": "", "etag_repository": "W/\"e1a5335ca7eed3790109eb28e787d7d882ba160a9057b06d2fd0d444f42606df\"", "last_updated": "2020-01-13T23:55:00Z", "stargazers_count": 10, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197960232": {"repository_manifest": {}, "full_name": "ljmerza/our-groceries-card", "category": "plugin", "description": "our groceries lovelace card", "domain": "", "etag_repository": "W/\"52b18e2894c57f70cdc95d27cf28bc8f56f7831f38f8053bfacf190ea95fea0f\"", "last_updated": "2022-06-02T03:51:23Z", "stargazers_count": 27, "last_fetched": 1671385404.846851, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "168744428": {"repository_manifest": {"name": "Light Entity Card", "render_readme": true, "filename": "dist/light-entity-card.js"}, "full_name": "ljmerza/light-entity-card", "category": "plugin", "description": "Control any light or switch entity", "domain": "", "downloads": 29982, "etag_repository": "W/\"77b0f47e1be7682568232b0d065ce583dec2f53f4cc2587ebd1235d31d871bbe\"", "last_updated": "2023-01-08T01:54:59Z", "stargazers_count": 175, "last_fetched": 1674378375.229278, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183499944": {"repository_manifest": {"name": "Tracking Number Card", "render_readme": true, "filename": "dist/tracking-number-card.js"}, "full_name": "ljmerza/tracking-number-card", "category": "plugin", "description": "Show Tracking Numbers from the Email Sensor for Home Assistant", "domain": "", "downloads": 733, "etag_repository": "W/\"f4c1aa4515bfb86dd7de5951d6b30016cf8296121136cca223306dd99d4b3d29\"", "last_updated": "2022-11-29T16:30:22Z", "stargazers_count": 20, "last_fetched": 1674378375.158766, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236945951": {"repository_manifest": {}, "full_name": "lukevink/lovelace-buien-rain-card", "category": "plugin", "description": "Graph of Buienradars rain forecast ", "domain": "", "downloads": 3219, "etag_repository": "W/\"1c0c2acb51fce758a24f319b6acea22a58bbbffee4953d0d262485c5a6529b3d\"", "last_updated": "2022-11-09T07:37:14Z", "stargazers_count": 49, "topics": ["buienradar", "chartjs", "forecast", "graph"], "last_fetched": 1674378375.093186, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180464361": {"repository_manifest": {"name": "Travel Time Card", "render_readme": true, "filename": "dist/travel-time-card.js"}, "full_name": "ljmerza/travel-time-card", "category": "plugin", "description": "show travel times for you travel time sensors", "domain": "", "downloads": 1286, "etag_repository": "W/\"845439d496bf52ce1922e43dba44645a45618666845de42f5f93e64f5f407f18\"", "last_updated": "2022-06-02T03:55:39Z", "stargazers_count": 24, "last_fetched": 1674378375.097893, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257005990": {"repository_manifest": {"name": "LG WebOS Remote Control", "content_in_root": true, "filename": "lg-remote-control.js", "render_readme": true}, "full_name": "madmicio/LG-WebOS-Remote-Control", "category": "plugin", "description": "Remote Control for LG TV WebOS", "etag_repository": "W/\"bc96ea777881b3065e795c127b2bf9074c8b6c5211f18c625d588b2f5f9a57a6\"", "last_updated": "2023-01-12T14:22:05Z", "stargazers_count": 270, "last_fetched": 1674378375.234071, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257123327": {"repository_manifest": {"name": "LG WebOS channel pad", "filename": "card-channel-pad.js", "render_readme": true}, "full_name": "madmicio/channel-pad", "category": "plugin", "description": "channel pad for LG TV Remote control", "domain": "", "etag_repository": "W/\"0bfc6be20cb04b19fe0f959494d24e48f0c3af9bd6975a9c567645c5aecc23bb\"", "last_updated": "2020-05-28T19:17:53Z", "stargazers_count": 15, "topics": ["channel-pad", "lg", "tv-remote"], "last_fetched": 1671385404.9376, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188572845": {"repository_manifest": {"name": "Rotel Remote Card", "content_in_root": true}, "full_name": "marrobHD/rotel-card", "category": "plugin", "description": "\ud83d\udd0a Rotel Remote Card", "domain": "", "etag_repository": "W/\"3d13b38b008a0d97c35e0a943776c6bceff293316b9399d64447e08971badcb8\"", "last_updated": "2022-05-25T19:39:13Z", "stargazers_count": 5, "topics": ["home-assistant-rotel-card", "lovelace-card"], "last_fetched": 1656859599.647775, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187339794": {"repository_manifest": {"name": "TV Remote Card", "content_in_root": true, "homeassistant": "2022.4.0"}, "full_name": "marrobHD/tv-card", "category": "plugin", "description": "\ud83d\udcfa TV Remote Card", "domain": "", "etag_repository": "W/\"1a337eeda816bc051779edd6eabbf6bc6f0e2e552523b97fa768b0ac961151f5\"", "last_updated": "2022-11-15T14:04:23Z", "stargazers_count": 130, "topics": ["homeassistant-tv-card", "lovelace-card", "tv-card"], "last_fetched": 1674378381.558748, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "275672933": {"repository_manifest": {"name": "Select list Card", "render_readme": true, "filename": "select-list-card.js"}, "full_name": "mattieha/select-list-card", "category": "plugin", "description": "Select List Card displays an input_select entity as a list in lovelace", "domain": "", "downloads": 7501, "etag_repository": "W/\"04fd01f046be8e1fd64207e3d8c819c55e1a7c6c932f95280aef7f745c8db5a2\"", "last_updated": "2022-07-21T04:13:07Z", "stargazers_count": 54, "topics": ["lovelace-custom-card"], "last_fetched": 1671385417.771892, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256292682": {"repository_manifest": {"name": "Battery State Card / Entity Row", "filename": "battery-state-card.js", "render_readme": true}, "full_name": "maxwroc/battery-state-card", "category": "plugin", "description": "Battery state card for Home Assistant", "downloads": 25795, "etag_repository": "W/\"e53ad6894a30ab0f191d7a6080df9d7f1239164ba8ad74a72d1ffdddbaee0662\"", "last_updated": "2023-01-12T15:04:46Z", "stargazers_count": 491, "topics": ["battery", "lovelace-custom-card"], "last_fetched": 1674378385.62186, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "302895020": {"repository_manifest": {"name": "Github Flexi Card / Entity Row", "filename": "github-flexi-card.js", "render_readme": true}, "full_name": "maxwroc/github-flexi-card", "category": "plugin", "description": "Github stats card for Home Assistant", "domain": "", "downloads": 456, "etag_repository": "W/\"864dee2956c080b3e14faa96dcca761a4e800377564897962c1acfed9756f18a\"", "last_updated": "2022-02-08T20:54:42Z", "stargazers_count": 23, "topics": ["card", "flexi", "github", "github-flexi-card"], "last_fetched": 1661584880.026076, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "204049047": {"repository_manifest": {"name": "OpenMensa Lovelace Card", "content_in_root": true}, "full_name": "Mofeywalker/openmensa-lovelace-card", "category": "plugin", "description": "A Home-Assistant Lovelace card which displays information from the openmensa-sensor.", "domain": "", "etag_repository": "W/\"2b39f540a53a8a1f5e9e0a4d3a9832079a2fea98c8d3475cf72719639d2f965c\"", "last_updated": "2019-08-23T19:16:54Z", "stargazers_count": 1, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "158654878": {"repository_manifest": {"name": "Simple Thermostat", "homeassistant": "0.84.0", "render_readme": true}, "full_name": "nervetattoo/simple-thermostat", "category": "plugin", "description": "A different take on the thermostat card for Home Assistant \u2668\ufe0f", "downloads": 30578, "etag_repository": "W/\"0db09292bc8377073401059938d2abf3a841a608424ab6f75d3d79a31893aefb\"", "last_updated": "2023-01-07T05:31:40Z", "stargazers_count": 626, "topics": ["polymer-3"], "last_fetched": 1674378387.938083, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286270157": {"repository_manifest": {"name": "Scheduler Card", "render_readme": true, "filename": "scheduler-card.js"}, "full_name": "nielsfaber/scheduler-card", "category": "plugin", "description": "HA Lovelace card for control of scheduler entities", "domain": "", "downloads": 13146, "etag_repository": "W/\"5023dd8a04328eb0a32301a6ec294e137feb37c16c0666bb34651344c5a321e9\"", "last_updated": "2023-01-12T09:22:21Z", "stargazers_count": 558, "topics": ["assistant", "automation", "card", "home", "schedule", "scheduler", "sunrise", "sunset", "week", "weekly"], "last_fetched": 1674378392.10266, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "238414582": {"repository_manifest": {"name": "Custom Card for Warsaw ZTM Information", "country": "PL", "homeassistant": "0.100.0"}, "full_name": "peetereczek/ztm-stop-card", "category": "plugin", "description": "Custom Lovelace card for Warsaw public transport", "domain": "", "etag_repository": "W/\"016e841ae3a882cb8c578194008995d3a717fbd9d6c60ca98aa650376334240b\"", "last_updated": "2023-01-09T10:38:52Z", "stargazers_count": 5, "last_fetched": 1674378394.047542, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236127727": {"repository_manifest": {"name": "Camect Camera Card", "filename": "HACS-camect-custom_card.js"}, "full_name": "pfunkmallone/HACS-camect-custom_card", "category": "plugin", "description": "A custom card which exposes Camect video streams via the Home Assistant Lovelace interface. To use this card, you MUST have already installed the Camect HACS integration.", "domain": "", "etag_repository": "W/\"119b9bd28d72821cc2b95d5ed0be0f883078ad2f69973e6e223fd72a2908b35e\"", "last_updated": "2022-06-22T04:51:11Z", "stargazers_count": 5, "topics": ["camect"], "last_fetched": 1661584891.197503, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "205261230": {"repository_manifest": {"name": "HTML Jinja2 Template card", "filename": "html-template-card.js"}, "full_name": "PiotrMachowski/Home-Assistant-Lovelace-HTML-Jinja2-Template-card", "category": "plugin", "description": "This card displays provided Jinja2 template as an HTML content of a card. It uses exactly the same engine as Home Assistant in Developer tools.", "domain": "", "etag_repository": "W/\"3568da7295cdb865a6e26c05aebbfd4ecc17e194149d3136a6522d8d34620c78\"", "last_updated": "2022-08-15T02:29:59Z", "stargazers_count": 38, "topics": ["jinja2", "lovelace-card", "template"], "last_fetched": 1674378398.032792, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "218178802": {"repository_manifest": {"name": "Local Conditional card", "render_readme": true, "filename": "local-conditional-card.js"}, "full_name": "PiotrMachowski/Home-Assistant-Lovelace-Local-Conditional-card", "category": "plugin", "description": "This card can show and hide a specific card on current device while not affecting other windows. It does not require any integration to run.", "domain": "", "downloads": 1359, "etag_repository": "W/\"a1b59e694f1b040ddb8fbd4348a1c01927e5aedec2bc39f6463df40c28819c56\"", "last_updated": "2022-08-15T02:29:47Z", "stargazers_count": 37, "topics": ["lovelace-card"], "last_fetched": 1674378398.340645, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199546187": {"repository_manifest": {}, "full_name": "PiotrMachowski/lovelace-google-keep-card", "category": "plugin", "description": "This is a companion card for Google Keep sensor. It displays notes downloaded by integration in a friendly way, similar to Google Keep app.", "domain": "", "etag_repository": "W/\"72005ffd8faa5a9011716ae834afc32c5830a72bd703b5c698cb2fe4b90eee7a\"", "last_updated": "2022-08-15T02:30:18Z", "stargazers_count": 44, "topics": ["lovelace-card"], "last_fetched": 1671387202.589208, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193372044": {"repository_manifest": {"name": "Xiaomi Vacuum Map Card", "render_readme": true, "filename": "xiaomi-vacuum-map-card.js"}, "full_name": "PiotrMachowski/lovelace-xiaomi-vacuum-map-card", "category": "plugin", "description": "This card provides a user-friendly way to fully control Xiaomi, Valetudo, Neato and Roomba (+ possibly other) vacuums in Home Assistant.", "downloads": 29363, "etag_repository": "W/\"d1fd66e2ae599f9e26acdea624bcaf965a1f7d0ae70c9b6c87f5f1198c48c634\"", "last_updated": "2023-01-07T13:56:32Z", "stargazers_count": 994, "topics": ["lovelace-card", "neato", "roborock", "roomba", "roomba980", "vacuum", "valetudo", "valetudo-re", "xiaomi", "xiaomi-vacuum"], "last_fetched": 1674378399.706371, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193408399": {"repository_manifest": {}, "full_name": "PiotrMachowski/lovelace-html-card", "category": "plugin", "description": "This card displays provided data as an HTML content of a card.", "domain": "", "etag_repository": "W/\"c8b776117e8e3ff2ed44055c053bb382a8eb40810aa0838efe51ca966f7dc675\"", "last_updated": "2022-08-15T02:30:20Z", "stargazers_count": 26, "topics": ["lovelace-card"], "last_fetched": 1672947917.040842, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197759180": {"repository_manifest": {}, "full_name": "postlund/search-card", "category": "plugin", "description": "Quickly search for entities from a Lovelace card.", "domain": "", "etag_repository": "W/\"a19fd6daf078e44ebb1de9636ec00bee52d54abc2b4163fbcb975c4b823c98ed\"", "last_updated": "2022-10-07T18:53:17Z", "stargazers_count": 89, "last_fetched": 1671387203.546863, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "186765704": {"repository_manifest": {"homeassistant": "0.100.0", "render_readme": true}, "full_name": "nervetattoo/banner-card", "category": "plugin", "description": "A fluffy banner card for Home Assistant \ud83e\udd70", "domain": "", "downloads": 26756, "etag_repository": "W/\"efc400ea4f3afe80ee09d534b8db7e0ef22fceeb79183d5428f41855a850769f\"", "last_updated": "2023-01-06T01:51:11Z", "stargazers_count": 515, "last_fetched": 1674378387.951207, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "142051833": {"repository_manifest": {"name": "Vertical Stack In Card", "render_readme": true, "filename": "vertical-stack-in-card.js"}, "full_name": "ofekashery/vertical-stack-in-card", "category": "plugin", "description": "\ud83d\udcd0 Home Assistant Card: Similar to vertical/horizontal-stack, but removes card borders", "domain": "", "etag_repository": "W/\"c37054b939401a9967ed23e4008ae493eeaf50a56ed06abf88fcb7c23b2e8324\"", "last_updated": "2023-01-10T13:05:57Z", "stargazers_count": 736, "last_fetched": 1674378393.333512, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260940136": {"repository_manifest": {"name": "HA (Lovelace) Card Weather Conditions", "filename": "ha-card-weather-conditions.js"}, "full_name": "r-renato/ha-card-weather-conditions", "category": "plugin", "description": "Weather condition card (Lovelace) for Home Assistant.", "domain": "", "etag_repository": "W/\"4cecb3fb74271d482f621bfaf00efa1392a41330c95a612ec50ca60df57edf7b\"", "last_updated": "2023-01-19T09:42:11Z", "stargazers_count": 125, "topics": ["card", "weather-conditions"], "last_fetched": 1674378404.493367, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215037975": {"repository_manifest": {"name": "HA (Lovelace) Card Waze Travel Time"}, "full_name": "r-renato/ha-card-waze-travel-time", "category": "plugin", "description": "Home Assistant Lovelace card for Waze Travel Time Sensor", "domain": "", "etag_repository": "W/\"37c7fd914a726bfdb429dd328439719ec420b346fa987ae4cbe71338f0563177\"", "last_updated": "2022-11-09T00:43:36Z", "stargazers_count": 34, "topics": ["lovelace-card"], "last_fetched": 1674378404.22416, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "289188530": {"repository_manifest": {"name": "Tesla style solar power card", "content_in_root": true, "filename": "tesla-style-solar-power-card.js", "render_readme": true}, "full_name": "reptilex/tesla-style-solar-power-card", "category": "plugin", "description": "Home assistant power card mimicking the one tesla provides for the powerwall app.", "domain": "", "etag_repository": "W/\"d06305ca57f0012b5476651ee48762db81b7edaf1bf8a8d163b74b4f09ed62ee\"", "last_updated": "2022-07-22T05:49:07Z", "stargazers_count": 153, "topics": ["battery", "card", "eletric-car", "power", "solar-energy"], "last_fetched": 1674378406.05748, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197715418": {"repository_manifest": {}, "full_name": "RodBr/miflora-card", "category": "plugin", "description": "A Home Assistant Lovelace card to report MiFlora plant sensors based on the HA Plant Card.", "domain": "", "etag_repository": "W/\"dfa30645cf019144c538ed0c3e5f91e1d577725675912499d66d7e42500d2213\"", "last_updated": "2022-07-07T21:54:18Z", "stargazers_count": 20, "last_fetched": 1671387204.299036, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216008446": {"repository_manifest": {"name": "Logbook Card", "filename": "logbook-card.js"}, "full_name": "royto/logbook-card", "category": "plugin", "description": "Logbook card for Home Assistant UI Lovelace", "domain": "", "downloads": 1803, "etag_repository": "W/\"fa8ef4ef7f8e3196933b1b093be917741f4134aded0bfe8ff0d465e0dfa9a398\"", "last_updated": "2023-01-07T20:53:24Z", "stargazers_count": 103, "last_fetched": 1674378410.472951, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279157206": {"repository_manifest": {"name": "Water Heater Card", "render_readme": true, "homeassistant": "0.81.0", "filename": "water-heater-card.js"}, "full_name": "rsnodgrass/water-heater-card", "category": "plugin", "description": "Water Heater card for Home Assistant's Lovelace UI", "domain": "", "etag_repository": "W/\"b684aed402b044aa98470bce1cd94c032bd8d24ff90ea6b9bd88654d03803858\"", "last_updated": "2022-09-09T06:27:18Z", "stargazers_count": 3, "last_fetched": 1671387205.091972, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "241706284": {"repository_manifest": {"name": "Button Text Card", "render_readme": true, "filename": "button-text-card.js"}, "full_name": "Savjee/button-text-card", "category": "plugin", "description": "Custom, \"neumorphism\" Lovelace card", "domain": "", "downloads": 3139, "etag_repository": "W/\"2647330fcf94e6c342f89ee6873662ddaa0e34a59478f1e86c7d347f4c1118d6\"", "last_updated": "2022-11-27T17:22:13Z", "stargazers_count": 103, "topics": ["lovelace-card", "templating", "typescript"], "last_fetched": 1672947928.409275, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237532750": {"repository_manifest": {"name": "Harmony Card", "render_readme": true, "filename": "harmony-card.js"}, "full_name": "sbryfcz/harmony-card", "category": "plugin", "description": "A Home Assistant Lovelace Care for Harmony Integration", "downloads": 4611, "etag_repository": "W/\"9370b32e49b4983c8f536e732d9205341331b25968ebb55da3330d9bc40f0d7a\"", "last_updated": "2023-01-18T02:03:27Z", "stargazers_count": 89, "last_fetched": 1674378410.937016, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259126760": {"repository_manifest": {"name": "Honeycomb Menu", "content_in_root": true, "filename": "honeycomb-menu.js", "render_readme": true}, "full_name": "Sian-Lee-SA/honeycomb-menu", "category": "plugin", "description": "Honeycomb menu is a Home Assistant module (not a card) that can be applied to any lovelace card. When activated by the defined action on said card, the module will display a 'rounded' list of honeycomb buttons with an optional XY pad to make interfacing with lovelace more fluent", "domain": "", "downloads": 797, "etag_repository": "W/\"167bf86beb7f9c6776f6800c1f476cada9e0307ec35ca2a6685485d3d7873566\"", "last_updated": "2023-01-20T02:34:11Z", "stargazers_count": 131, "topics": ["lovelace-module", "menu", "module"], "last_fetched": 1674378412.977967, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202874270": {"repository_manifest": {}, "full_name": "TheLastProject/lovelace-media-art-background", "category": "plugin", "description": "Sets the background of your Home Assistant to match the entity picture of a media player", "domain": "", "etag_repository": "W/\"fddcd12479f92bc798160c4b4ec7669e0a2abd8c801c314360bb8b62372f90df\"", "last_updated": "2021-04-14T16:38:05Z", "stargazers_count": 25, "last_fetched": 1671387205.883342, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "284283867": {"repository_manifest": {"name": "Gallery Card", "filename": "gallery-card.js", "render_readme": true}, "full_name": "TarheelGrad1998/gallery-card", "category": "plugin", "description": "A custom card for Home Assistant that will display images and/or videos from a folder in the style of a gallery. ", "domain": "", "etag_repository": "W/\"8c9e486db65e45bbab0f5cb6b1b2b0f96c319ac1f25ccaae342830b95c09c1d8\"", "last_updated": "2022-01-20T20:51:25Z", "stargazers_count": 60, "topics": ["gallery", "gallery-card", "images", "videos"], "last_fetched": 1674378415.733167, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "191580766": {"repository_manifest": {"name": "Light with profiles", "content_in_root": true, "filename": "light-with-profiles.js", "homeassistant": "0.100.0"}, "full_name": "tcarlsen/lovelace-light-with-profiles", "category": "plugin", "description": "Turn on lights based on light_profiles.csv", "domain": "", "etag_repository": "W/\"f92b8849eeccdb2c95d278648bc8190cec7c86d3229274599e6ff73b3f77a2b6\"", "last_updated": "2022-06-12T20:39:16Z", "stargazers_count": 58, "topics": ["light", "light-profiles", "lovelace-card", "profiles"], "last_fetched": 1674378415.875671, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236317072": {"repository_manifest": {"name": "Pie Chart Card", "content_in_root": true, "filename": "pie-chart-card.js", "render_readme": true}, "full_name": "sdelliot/pie-chart-card", "category": "plugin", "description": "Generalized Lovelace pie chart card", "domain": "", "etag_repository": "W/\"3e9fc35b01cccf93f5e83230b043bfba328d15db640165ffd882dda7ff8a6b8c\"", "last_updated": "2020-03-07T21:19:19Z", "stargazers_count": 11, "last_fetched": 1653230105.42555, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "167744584": {"repository_manifest": {"name": "auto-entities", "render_readme": true, "homeassistant": "2022.3.0"}, "full_name": "thomasloven/lovelace-auto-entities", "category": "plugin", "description": "\ud83d\udd39Automatically populate the entities-list of lovelace cards", "domain": "", "etag_repository": "W/\"7dc7b4c3d86bd1e27c78253d80065f63c6053506750025c5371c4206a748a3de\"", "last_updated": "2023-01-01T22:27:33Z", "stargazers_count": 794, "last_fetched": 1674378417.220522, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "281453608": {"repository_manifest": {"name": "badge-card", "render_readme": true}, "full_name": "thomasloven/lovelace-badge-card", "category": "plugin", "description": "\ud83d\udd39 Place badges anywhere in the lovelace layout", "domain": "", "etag_repository": "W/\"a84d7441d0aab76374d12b46bc5b6f863a0cb4b7c23979785064620e7149ffea\"", "last_updated": "2022-05-28T13:41:58Z", "stargazers_count": 51, "last_fetched": 1674378417.441493, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190927524": {"repository_manifest": {"name": "card-mod", "render_readme": true}, "full_name": "thomasloven/lovelace-card-mod", "category": "plugin", "description": "\ud83d\udd39 Add CSS styles to (almost) any lovelace card", "domain": "", "etag_repository": "W/\"24d9d5aee5d5ccfa8e7565db1108f2438e2600e367a98a64e62f2d8589ffb3b1\"", "last_updated": "2023-01-20T09:06:06Z", "stargazers_count": 634, "last_fetched": 1674378418.201473, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "161403328": {"repository_manifest": {"name": "card-tools", "homeassistant": "0.100.0"}, "full_name": "thomasloven/lovelace-card-tools", "category": "plugin", "description": "\ud83d\udd39A collection of tools for other lovelace plugins to use", "etag_repository": "W/\"e4866fca20a26baf9b5a474c9ff7c21dd38952a976755b8609fa7e00a7d7a917\"", "last_updated": "2022-12-04T18:58:38Z", "stargazers_count": 202, "last_fetched": 1671387206.599616, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "150781994": {"repository_manifest": {"name": "fold-entity-row", "render_readme": true}, "full_name": "thomasloven/lovelace-fold-entity-row", "category": "plugin", "description": "\ud83d\udd39 A foldable row for entities card, containing other rows", "domain": "", "etag_repository": "W/\"71192059f5d1dba867ec0d6355872e002279fc2d38c3bab36fcdce29780fd584\"", "last_updated": "2023-01-07T04:24:33Z", "stargazers_count": 423, "last_fetched": 1674378419.24985, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "249942054": {"repository_manifest": {"name": "hui-element", "render_readme": true}, "full_name": "thomasloven/lovelace-hui-element", "category": "plugin", "description": "\ud83d\udd39 Use built-in elements in the wrong place", "domain": "", "etag_repository": "W/\"5194e62bc70c63422a6f7c0cac3d954495e5574392aa7621b3418948e6833678\"", "last_updated": "2022-05-29T19:02:02Z", "stargazers_count": 74, "last_fetched": 1674378419.228542, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "156434866": {"repository_manifest": {"name": "layout-card", "render_readme": true, "homeassistant": "2022.3.0"}, "full_name": "thomasloven/lovelace-layout-card", "category": "plugin", "description": "\ud83d\udd39 Get more control over the placement of lovelace cards.", "domain": "", "etag_repository": "W/\"04bc95c0532d4cf48e0c0487bbd81258e1a7240b230ba3e1548a0b62d4efc2c8\"", "last_updated": "2023-01-07T04:24:33Z", "stargazers_count": 689, "last_fetched": 1674378421.203914, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231674882": {"repository_manifest": {"name": "template-entity-row", "render_readme": true, "homeassistant": "0.107.0b1"}, "full_name": "thomasloven/lovelace-template-entity-row", "category": "plugin", "description": "\ud83d\udd39 Display whatever you want in an entities card row.", "domain": "", "etag_repository": "W/\"623c00ca06ddca4ae54811f67f53bd4182c09d5be94dfa9a4f96914a5b4f7ce4\"", "last_updated": "2023-01-07T04:28:39Z", "stargazers_count": 141, "last_fetched": 1674378427.62859, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "158756598": {"repository_manifest": {"name": "state-switch", "render_readme": true}, "full_name": "thomasloven/lovelace-state-switch", "category": "plugin", "description": "\ud83d\udd39Dynamically replace lovelace cards depending on occasion", "domain": "", "etag_repository": "W/\"a068d6e89becff8768d51d414af8bc43fe9452c092273cde43b00d69c10932b7\"", "last_updated": "2023-01-08T19:43:39Z", "stargazers_count": 281, "last_fetched": 1674378427.652862, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "144899700": {"repository_manifest": {"name": "slider-entity-row", "render_readme": true}, "full_name": "thomasloven/lovelace-slider-entity-row", "category": "plugin", "description": "\ud83d\udd39 Add sliders to entity cards", "etag_repository": "W/\"9d0fb0143d8c72f309759e06501a77918d1468ebd91cc1d13a1e7370340f6788\"", "last_updated": "2022-12-26T01:55:34Z", "stargazers_count": 696, "last_fetched": 1674378427.677783, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180528950": {"repository_manifest": {"name": "more-info-card", "render_readme": true, "homeassistant": "0.113"}, "full_name": "thomasloven/lovelace-more-info-card", "category": "plugin", "description": "\ud83d\udd39 Display the more-info dialog of any entity as a lovelace card", "domain": "", "etag_repository": "W/\"688fd92433d46be4c6c33b97f35b183d90401f21c776efc73a01ba2d2356d95e\"", "last_updated": "2022-05-28T13:40:55Z", "stargazers_count": 76, "last_fetched": 1665938680.567246, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286038496": {"repository_manifest": {"name": "Compass Card", "render_readme": true, "filename": "compass-card.js"}, "full_name": "tomvanswam/compass-card", "category": "plugin", "description": "A Lovelace card that shows a directional indicator on a compass for Home Assistant", "domain": "", "downloads": 5667, "etag_repository": "W/\"59128a08d23de165b16e8e73f82ca9747c83cfd413a0c557a58c3517afad80b0\"", "last_updated": "2023-01-17T05:05:12Z", "stargazers_count": 95, "topics": ["compass", "lovelace-card"], "last_fetched": 1674378427.957835, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264796130": {"repository_manifest": {"name": "Pandora CAS card", "render_readme": true}, "full_name": "turbulator/pandora-cas-card", "category": "plugin", "description": "Pandora lovelace card for Home Assistant", "domain": "", "etag_repository": "W/\"f69ceb715f8892c54d64f2541a8d93caf430ddf8669ca6cdc44f1050219fdc44\"", "last_updated": "2020-10-03T15:41:00Z", "stargazers_count": 4, "topics": ["lovelace-custom-card", "pandora"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197245179": {"repository_manifest": {}, "full_name": "twrecked/lovelace-hass-aarlo", "category": "plugin", "description": "Lovelace card for hass-aarlo integration.", "domain": "", "etag_repository": "W/\"c036899cfe5e73dcfa0122fd20064bb4e02c25ad309698e96ae102f2e714dff7\"", "last_updated": "2022-12-22T12:55:52Z", "stargazers_count": 57, "topics": ["arlo", "camera", "lovelace-card", "streaming"], "last_fetched": 1674378432.782562, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223008910": {"repository_manifest": {"name": "Custom Sidebar", "render_readme": true}, "full_name": "Villhellm/custom-sidebar", "category": "plugin", "description": "Custom Sidebar for Home Assistant", "domain": "", "etag_repository": "W/\"0954f7646f8b22c9dadee9d33218afde9a56999b8f550047d5eee611ad4e5cf0\"", "last_updated": "2021-03-15T16:47:47Z", "stargazers_count": 101, "topics": ["custom", "sidebar"], "last_fetched": 1672947946.833615, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283542587": {"repository_manifest": {"name": "Lovelace Clock Card", "render_readme": true}, "full_name": "Villhellm/lovelace-clock-card", "category": "plugin", "description": "Basic analog clock for Lovelace", "domain": "", "etag_repository": "W/\"cfab0601b2056b78fd7500fcf7015b04f106d2fa7b56e69bef899045b0286368\"", "last_updated": "2020-11-24T17:31:42Z", "stargazers_count": 39, "topics": ["analog", "clock"], "last_fetched": 1674378433.966493, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202743061": {"repository_manifest": {"name": "Lovelace Animated Background", "render_readme": true}, "full_name": "Villhellm/lovelace-animated-background", "category": "plugin", "description": "Animated backgrounds for lovelace ", "domain": "", "etag_repository": "W/\"37779971478c4e2e738e3933325fa48e2189152a95a4f824161ccc7350e8539f\"", "last_updated": "2020-11-26T03:49:25Z", "stargazers_count": 148, "topics": ["animated", "background"], "last_fetched": 1674378433.998649, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259904390": {"repository_manifest": {"name": "Jumbo Card", "filename": "jumbo-card.js"}, "full_name": "Voxxie/lovelace-jumbo-card", "category": "plugin", "description": "A custom lovelace card for the custom Jumbo component.", "domain": "", "etag_repository": "W/\"1ead81ddc1456d55c47b22a30cf46f2795ffddbb4dd95012d2cac0ad4faf8a19\"", "last_updated": "2020-05-04T10:11:59Z", "stargazers_count": 2, "topics": ["jumbo", "lovelace-card", "lovelace-custom-card"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "313269367": {"repository_manifest": {"name": "kibibit Better Graph Colors", "render_readme": true, "filename": "kb-better-graph-colors.js"}, "full_name": "Kibibit/kb-better-graph-colors", "category": "plugin", "description": "Replace the history graph colors with a material design color palette.", "domain": "", "etag_repository": "W/\"0d21c6c0e564f332d5b052bf23733e95e0324b9153fd6c1ddd1a6eb5a0318ee9\"", "last_updated": "2022-06-19T17:37:46Z", "stargazers_count": 9, "topics": ["color-scheme", "graphs", "palette"], "last_fetched": 1656859581.417357, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "313270182": {"repository_manifest": {"name": "kibibit Frosted Cards", "render_readme": true, "filename": "kb-frosted-cards.js"}, "full_name": "Kibibit/kb-frosted-cards", "category": "plugin", "description": "Make Cards and Popups blur everything behind them.", "domain": "", "etag_repository": "W/\"f9a3b3189200a65d322d2f06eead8f1e9d34859a4ec098b83b0776bf6d06fb4a\"", "last_updated": "2022-06-19T17:40:45Z", "stargazers_count": 8, "topics": ["effect", "frosted-glass"], "last_fetched": 1661584863.412399, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203592862": {"repository_manifest": {"name": "USR-R16 16\u8def\u7f51\u7edc\u7ee7\u7535\u5668", "render_readme": true, "homeassistant": "2022.7.5", "country": ["CN"]}, "full_name": "blindlight86/HA_USR-R16", "authors": ["@blindlight"], "category": "integration", "description": "USR-R16 integration for Home Assistant", "domain": "usr_r16", "etag_repository": "W/\"e5927c3b7ddf92d59e4c3acabdfb547731b9a5329d191a3beb45088028bb3cae\"", "last_updated": "2022-07-31T19:41:14Z", "stargazers_count": 7, "topics": ["relays"], "last_fetched": 1665938739.820727, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299476136": {"repository_manifest": {"name": "Securifi RESTful API", "render_readme": true}, "full_name": "9rpp/securifi", "authors": ["@9rpp"], "category": "integration", "description": "This is a partial implementation of the Securifi RESTful API for Home Assistant", "domain": "securifi", "etag_repository": "W/\"01717a207b00c97903226cd51dcf0d68fe4489242df2f8a6e39cbf41b54bb089\"", "last_updated": "2020-10-29T15:54:45Z", "stargazers_count": 2, "topics": ["automation", "iot", "securifi"], "last_fetched": 1656859035.188359, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "282427417": {"repository_manifest": {"name": "Public Transport Victoria", "render_readme": "true"}, "full_name": "bremor/public_transport_victoria", "authors": ["@bremor"], "category": "integration", "description": "Custom component for retrieving departure times for Public Transport Victoria.", "domain": "public_transport_victoria", "etag_repository": "W/\"ef2dd86060e2a0c7836e2f00844ed58c321a9b2f750153b3285d0356763c7339\"", "last_updated": "2022-06-20T00:23:49Z", "stargazers_count": 15, "topics": ["australia", "bus", "ptv", "public", "train", "tram", "transport", "victoria"], "last_fetched": 1661584984.314048, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307586942": {"repository_manifest": {"name": "Bureau of Meteorology", "render_readme": "true", "homeassistant": "2022.7.0b0"}, "full_name": "bremor/bureau_of_meteorology", "authors": ["@bremor"], "category": "integration", "description": "Custom component for retrieving weather information from the Bureau of Meteorology.", "domain": "bureau_of_meteorology", "etag_repository": "W/\"f98b2ba8464c3858e0890892c9778d5ec4c7f1f1ad3b6e5973074cf9abaeea18\"", "last_updated": "2023-01-04T21:58:51Z", "stargazers_count": 106, "topics": ["bom", "bureau", "forecast", "meteorology", "observations", "weather", "weather-information"], "last_fetched": 1674377849.134626, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307503425": {"repository_manifest": {"name": "INGV Earthquakes", "zip_release": true, "filename": "ingv_centro_nazionale_terremoti.zip", "country": ["IT"], "render_readme": true, "homeassistant": "2022.6.0"}, "full_name": "caiosweet/Home-Assistant-custom-components-INGV", "authors": ["@exxamalte", "@caiosweet"], "category": "integration", "description": "INGV - National Institute of Geophysics and Volcanology [Istituto Nazionale di Geofisica e Vulcanologia] Terremoti Italia.", "domain": "ingv_centro_nazionale_terremoti", "downloads": 359, "etag_repository": "W/\"781398325a5d077422cc95651574856551c2fbc6658679cb31160aca67b1acda\"", "last_updated": "2022-06-05T21:58:11Z", "stargazers_count": 10, "topics": ["assistant", "geofisica", "home", "ingv", "terremoti", "vulcanologia"], "last_fetched": 1661584991.707478, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "308690707": {"repository_manifest": {"name": "Google WiFi", "country": "CA", "homeassistant": "0.115.0"}, "full_name": "djtimca/hagooglewifi", "authors": ["@djtimca"], "category": "integration", "description": "Home Assistant integration for Google Wifi systems.", "domain": "googlewifi", "etag_repository": "W/\"c3277201cc509c8b76c8b60850b7c248c88e56eb7d5e5609c17c55429002d05f\"", "last_updated": "2022-06-02T04:56:17Z", "stargazers_count": 58, "topics": ["google-wifi"], "last_fetched": 1674377917.270795, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "304573324": {"repository_manifest": {"name": "SQL (with JSON detection)", "render_readme": true, "homeassistant": "0.99.9", "persistent_directory": "userfiles"}, "full_name": "crowbarz/ha-sql_json", "authors": ["@dgomes", "@crowbarz"], "category": "integration", "description": "Updated SQL integration for Home Assistant that supports JSON attributes", "domain": "sql_json", "etag_repository": "W/\"37bb3f4efa72ca305a5b2519d129dcccf4706ace8dc303fb114db5681897429d\"", "last_updated": "2022-05-04T21:05:41Z", "stargazers_count": 5, "topics": ["json", "sql"], "last_fetched": 1653229634.931068, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223993584": {"repository_manifest": {"name": "Passive BLE monitor integration", "homeassistant": "2022.12.0"}, "full_name": "custom-components/ble_monitor", "authors": ["@Ernst79", "@Magalex2x14", "@Thrilleratplay"], "category": "integration", "description": "BLE monitor passively monitors BLE sensors (Xiaomi, Qingping, ATC, BlueMaestro, Brifit, Govee, Kegtron, Moat, Inkbird, iNode, Yeelight, RuuviTag, SensorPush, Teltonika, Thermoplus and Thermopro)", "domain": "ble_monitor", "etag_repository": "W/\"2639068429eeb53c9bec59bd3f2af1fc3590ec7fe89c04bfe0927154727ecded\"", "last_updated": "2023-01-19T18:49:32Z", "stargazers_count": 1515, "topics": ["atc", "govee", "inkbird", "kegtron", "mibeacon", "mijia", "mitemp-bt", "qingping", "scales", "thermoplus", "thermopro", "thermplus", "xiaomi", "xiaomi-sensors"], "last_fetched": 1674377871.824384, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "178838527": {"repository_manifest": {"name": "Niko Home Control II", "render_readme": true, "homeassistant": "0.114.1"}, "full_name": "filipvh/hass-nhc2", "authors": ["@filipvh"], "category": "integration", "description": "Niko Home Control II Home Assistant Integration", "domain": "nhc2", "etag_repository": "W/\"cb84cef8ca0e64fd7cfeb4d70071fe58c6d244d4719768dbd0644acd432d6248\"", "last_updated": "2023-01-08T16:29:48Z", "stargazers_count": 38, "topics": ["coco", "domotica", "nhc", "nhc2", "niko", "niko-home-control"], "last_fetched": 1674377946.899473, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "266779715": {"repository_manifest": {"name": "Yahoo Finance", "render_readme": true}, "full_name": "iprak/yahoofinance", "authors": ["@induprakash"], "category": "integration", "description": "Home Assistant component which allows you to get stock updates from Yahoo finance.", "domain": "yahoofinance", "etag_repository": "W/\"5317a2b0b84daf72d6a961b937285f2d12b6ae89aeddc9d2a08020f02e118500\"", "last_updated": "2022-11-06T15:25:29Z", "stargazers_count": 48, "topics": ["stock-updates", "yahoo-finance"], "last_fetched": 1672948164.606175, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309018094": {"repository_manifest": {"name": "fordpass"}, "full_name": "itchannel/fordpass-ha", "authors": ["@itchannel"], "category": "integration", "description": "Fordpass integration for Home Assistant", "domain": "fordpass", "etag_repository": "W/\"83711f0471ad839efe686679e09078ff22964a1d137b2dceba81420f61d334f3\"", "last_updated": "2023-01-21T17:25:00Z", "stargazers_count": 125, "topics": ["assistant", "car", "fordpass", "home"], "last_fetched": 1674377998.04164, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299123388": {"repository_manifest": {"name": "Magic Areas", "homeassistant": "2021.7.0"}, "full_name": "jseidl/hass-magic_areas", "authors": ["@jseidl"], "category": "integration", "description": "Areas with batteries included for Home Assistant", "domain": "magic_areas", "etag_repository": "W/\"a8704005cd0d28f20d17decd3c9c3f225b155b006da8e067f56d7a1d27a66a50\"", "last_updated": "2023-01-09T04:56:48Z", "stargazers_count": 142, "topics": ["automation"], "last_fetched": 1674378025.467827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "249381778": {"repository_manifest": {"name": "Local Tuya", "homeassistant": "0.116.0"}, "full_name": "rospogrigio/localtuya", "authors": ["@rospogrigio", "@postlund"], "category": "integration", "description": "local handling for Tuya devices", "domain": "localtuya", "etag_repository": "W/\"3344e6e4f705c62f80ce88c4812e5da3018f889fcf0f4aacf450e73a82708016\"", "last_updated": "2023-01-21T00:36:17Z", "stargazers_count": 1600, "topics": ["localtuya", "tuya", "tuya-api"], "last_fetched": 1674378163.567699, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "268722568": {"repository_manifest": {"name": "Media player template", "homeassistant": "0.116", "render_readme": true}, "full_name": "Sennevds/media_player.template", "authors": ["@Sennevds"], "category": "integration", "description": "Template media_player for Home Assistant", "domain": "media_player_template", "etag_repository": "W/\"775923aa34653cd3ee1e52deb5cbce3053cbae48bf669d5c5524fe06b361d375\"", "last_updated": "2023-01-09T20:34:48Z", "stargazers_count": 80, "last_fetched": 1674378183.021505, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "303827752": {"repository_manifest": {"homeassistant": "0.117.0", "name": "TryFi Dog Monitor", "render_readme": true}, "full_name": "sbabcock23/hass-tryfi", "authors": ["@sbabcock23"], "category": "integration", "description": "Home Assistant integration for TryFi Dog Collar GPS monitoring.", "domain": "tryfi", "etag_repository": "W/\"e7811e6d77de1c3a60dd3835d0a43ebe2f0db45b6673445f5355f1e5ff1739bb\"", "last_updated": "2022-12-12T18:54:25Z", "stargazers_count": 37, "topics": ["dog", "dog-collar", "gps", "iot", "tryfi"], "last_fetched": 1672948352.337903, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164489685": {"repository_manifest": {"name": "Nextbike Integration", "render_readme": true}, "full_name": "syssi/nextbike", "authors": ["@syssi"], "category": "integration", "description": "Nextbike integration for Home Assistant", "domain": "nextbike", "etag_repository": "W/\"31bd92dd1691f3c962563ad65e66dacbb5a24f3802b2eb4e5671b5264fde09d7\"", "last_updated": "2022-06-02T05:46:01Z", "stargazers_count": 10, "topics": ["free-floating", "nextbike"], "last_fetched": 1672948373.954449, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "129353521": {"repository_manifest": {"name": "Xiaomi MiIO Raw", "render_readme": true}, "full_name": "syssi/xiaomi_raw", "authors": ["@syssi"], "category": "integration", "description": "Custom component for Home Assistant to faciliate the reverse engeneering of Xiaomi MiIO devices", "domain": "xiaomi_miio_raw", "etag_repository": "W/\"67bb167fd76d5619606c92ae5f55db80bd5fbddf8c2fe0ba99d6c9365199627f\"", "last_updated": "2022-12-09T06:54:06Z", "stargazers_count": 93, "topics": ["miio", "miio-device", "miio-protocol", "monitoring"], "last_fetched": 1671385226.893292, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "121934877": {"repository_manifest": {"name": "Xiaomi Mi and Aqara Air Conditioning Companion Integration", "render_readme": true}, "full_name": "syssi/xiaomi_airconditioningcompanion", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi and Aqara Air Conditioning Companion integration for Home Assistant", "domain": "xiaomi_miio_airconditioningcompanion", "etag_repository": "W/\"f348889771730d65cd5ac5c92767874a5c7f81efdeb07471fe792c4caab5e359\"", "last_updated": "2022-09-07T00:42:46Z", "stargazers_count": 371, "topics": ["acpartner", "airconditioning", "aqara", "infrared", "xiaomi"], "last_fetched": 1671385224.330107, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "101482973": {"repository_manifest": {"name": "Xiaomi Mi Air Purifier, Air Humidifier, Air Fresh and Pedestal Fan Integration", "render_readme": true, "homeassistant": "2022.8.0"}, "full_name": "syssi/xiaomi_airpurifier", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Air Purifier and Xiaomi Mi Air Humidifier integration for Home Assistant", "domain": "xiaomi_miio_airpurifier", "etag_repository": "W/\"1a26c35d1b46e22d8a79dae6f71eb41fea0db21232b7379c3a08039395dad231\"", "last_updated": "2022-12-12T08:38:01Z", "stargazers_count": 382, "topics": ["airfresh", "airhumidifier", "airpurifier", "fan", "miio", "miio-protocol", "miot", "xiaomi"], "last_fetched": 1674378205.21453, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307098646": {"repository_manifest": {"name": "Alarmo", "render_readme": true, "zip_release": true, "filename": "alarmo.zip", "hide_default_branch": true}, "full_name": "nielsfaber/alarmo", "authors": ["@nielsfaber"], "category": "integration", "description": "Easy to use alarm system integration for Home Assistant", "domain": "alarmo", "downloads": 13211, "etag_repository": "W/\"ef02cbcc13a5ee8f34c38cf122c3dfaa3307e7eff915a4faef1d1be0506ca643\"", "last_updated": "2023-01-11T19:36:57Z", "stargazers_count": 691, "topics": ["alarm", "assistant", "home", "security"], "last_fetched": 1674378115.761688, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "97201395": {"repository_manifest": {"name": "Xiaomi Mi Smart WiFi Socket Integration", "render_readme": true}, "full_name": "syssi/xiaomiplug", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Smart WiFi Socket integration for Home Assistant", "domain": "xiaomi_miio_plug", "etag_repository": "W/\"179a6dfaf4b6fb316821f29b52800afcd8decb087a5ce4ca6ae4042cfb1e61ac\"", "last_updated": "2022-08-10T18:53:51Z", "stargazers_count": 101, "topics": ["miio", "miio-device", "miio-protocol", "switch", "xiaomi"], "last_fetched": 1672948376.858431, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307974458": {"repository_manifest": {"name": "ResRobot", "country": "SE", "homeassistant": "2021.12.8"}, "full_name": "TekniskSupport/home-assistant-resrobot", "authors": ["@iesus"], "category": "integration", "description": "Get departure times for swedish public transportation", "domain": "resrobot", "etag_repository": "W/\"a7c3a039ba04a8a9cee5d541d3efe77c94629388d080bfe2b64dd19f213425e7\"", "last_updated": "2022-06-13T06:05:55Z", "stargazers_count": 12, "topics": ["bus", "ferry", "iesus", "public", "sweden", "train", "tram", "transportation"], "last_fetched": 1671385229.966811, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "305147191": {"repository_manifest": {"name": "CEZ Distribuce CZ", "country": "CZ", "homeassistant": "0.110.0"}, "full_name": "zigul/HomeAssistant-CEZdistribuce", "authors": ["@zigul"], "category": "integration", "description": "CEZ Distribuce - Home Assistant Sensor", "domain": "cezdistribuce", "etag_repository": "W/\"8f33f82aa453d613025e4703c95313a7c0e4a8b282b211529b82bce51a088e83\"", "last_updated": "2022-03-07T20:21:42Z", "stargazers_count": 18, "topics": ["cez"], "last_fetched": 1672948419.830381, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "287318591": {"repository_manifest": {"name": "Husqvarna Automower", "homeassistant": "2022.9.0b0", "render_readme": true, "zip_release": true, "filename": "husqvarna_automower.zip"}, "full_name": "Thomas55555/husqvarna_automower", "authors": ["@Thomas55555"], "category": "integration", "description": "Custom component for Home Assistant to monitor and control your Husqvrana Automower", "domain": "husqvarna_automower", "downloads": 1918, "etag_repository": "W/\"95625588f4504f19cec5356bdb766218dd9303a049bb8071809bb700663b453e\"", "last_updated": "2023-01-16T16:31:05Z", "stargazers_count": 55, "topics": ["husqvarna-automower"], "last_fetched": 1674378215.579365, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "139634406": {"repository_manifest": {"name": "Dark Thermostat", "render_readme": true, "filename": "thermostat-dark-card.js"}, "full_name": "ciotlosm/lovelace-thermostat-dark-card", "category": "plugin", "description": "\ud83c\udf21 Thermostat card with a round and black feel to it", "domain": "", "downloads": 20518, "etag_repository": "W/\"45020bb05e61d0b0cb70a6bc6aa12ac611fee6565b569104cf2025497c10a44e\"", "last_updated": "2023-01-06T16:32:44Z", "stargazers_count": 682, "topics": ["thermostat"], "last_fetched": 1674378291.013889, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "315044466": {"repository_manifest": {"name": "Transmission Card", "filename": "transmission-card.js", "render_readme": "true"}, "full_name": "amaximus/transmission-card", "category": "plugin", "description": "Custom Transmission card for Home Assistant/Lovelace", "domain": "", "downloads": 760, "etag_repository": "W/\"c3eb4622509e408a6cd28dace2a164c242310916b4cfac095c36fea4579a133f\"", "last_updated": "2022-12-25T16:24:38Z", "stargazers_count": 29, "topics": ["lovelace-card", "lovelace-custom-card", "transmission"], "last_fetched": 1672947797.262187, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188106531": {"repository_manifest": {"name": "Mail and Packages", "homeassistant": "2022.4.0", "zip_release": true, "filename": "mail_and_packages.zip"}, "full_name": "moralmunky/Home-Assistant-Mail-And-Packages", "authors": ["@moralmunky", "@firstof9"], "category": "integration", "description": "Home Assistant integration providing day of package counts and USPS informed delivery images.", "domain": "mail_and_packages", "downloads": 2711, "etag_repository": "W/\"1964bc59ad808274307c46b8b4585164a03fcf1e20c1d8c2a4b211c0044e8f5a\"", "last_updated": "2023-01-11T23:16:32Z", "stargazers_count": 390, "topics": ["home-assistant-config", "lovelace-card", "lovelace-custom-card"], "last_fetched": 1674378097.151488, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222118751": {"repository_manifest": {"name": "Sonoff LAN", "render_readme": true}, "full_name": "AlexxIT/SonoffLAN", "authors": ["@AlexxIT"], "category": "integration", "description": "Control Sonoff Devices with eWeLink (original) firmware over LAN and/or Cloud from Home Assistant", "domain": "sonoff", "etag_repository": "W/\"80ddb050d6301349c5ddbef4c5e3c06aff282cd6601aa01549e8f5ab1d2bd233\"", "last_updated": "2023-01-16T18:00:03Z", "stargazers_count": 1950, "topics": ["ewelink", "sonoff"], "last_fetched": 1674377801.021403, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146660369": {"repository_manifest": {"name": "Bravia TV PSK", "zip_release": true, "filename": "combined.zip", "hide_default_branch": true}, "full_name": "custom-components/media_player.braviatv_psk", "authors": ["@gerard33"], "category": "integration", "description": "Sony Bravia TV (Pre-Shared Key) component for Home Assistant", "domain": "braviatv_psk", "downloads": 3456, "etag_repository": "W/\"c18e097e15b1080dcc418e667351486c159c7c14f5bd26faad53044a724e9bbb\"", "last_updated": "2022-07-22T15:44:05Z", "stargazers_count": 99, "topics": ["bravia", "psk", "sony"], "last_fetched": 1672948044.579971, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "321140869": {"repository_manifest": {"name": "Auto Reload", "render_readme": true}, "full_name": "ben8p/lovelace-auto-reload-card", "category": "plugin", "description": "Custom home assitant lovelace for UI auto reload", "domain": "", "etag_repository": "W/\"7b9a0d0a9b0274b421299e5b410857ab2562a22b9b8e107f501aa7c395390a1d\"", "last_updated": "2022-05-28T16:39:09Z", "stargazers_count": 25, "topics": ["lovelace-card"], "last_fetched": 1665325191.498788, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "321773656": {"repository_manifest": {"name": "themable-grid", "render_readme": true}, "full_name": "nervetattoo/themable-grid", "category": "plugin", "description": "\ud83c\udc39 Lovelace responsive grid card that can be tweaked in your theme definition.", "domain": "", "downloads": 1356, "etag_repository": "W/\"a83534bd1b0dae1d30b6860c5a3eeec3bbc368f74cb56ff8b8d04fd9fd7903fc\"", "last_updated": "2022-12-21T10:40:03Z", "stargazers_count": 22, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1674378391.850704, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "320117484": {"repository_manifest": {"name": "Vibrant (Dark) Clear Theme", "homeassistant": "0.109.0"}, "full_name": "myleskeeffe/clear-theme-dark-vibrant", "category": "theme", "description": "Vibrant (Dark) Version of Clear Theme", "domain": "", "etag_repository": "W/\"308ab1f42553cf6fd9cf26cef97a101a529540568d7d7a9df2a0e6e15561c310\"", "last_updated": "2021-02-10T10:21:44Z", "stargazers_count": 2, "topics": ["clear", "dark", "vibrant"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "320381430": {"repository_manifest": {"name": "Analog Clock", "render_readme": true, "filename": "analogclock.js"}, "full_name": "tomasrudh/analogclock", "category": "plugin", "description": "An analog clock for Home Assistant Lovelace", "domain": "", "etag_repository": "W/\"5e359ac0c4bf1582aee8ed1a298491afa9992f649c8017e5f6ccfba1b2de4647\"", "last_updated": "2022-06-03T19:55:56Z", "stargazers_count": 14, "topics": ["analog", "analog-clock", "assistant-lovelace", "clock"], "last_fetched": 1656859637.99292, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "302145522": {"repository_manifest": {"name": "Rocket Launch Live - Next 5 Launches", "country": "CA", "homeassistant": "0.115.0"}, "full_name": "djtimca/harocketlaunchlive", "authors": ["@djtimca"], "category": "integration", "description": "Home Assistant custom HACS integration to integrate the next 5 global rocket launches from https://rocketlaunch.live", "domain": "rocketlaunchlive", "etag_repository": "W/\"333c0b5f67b202dcda0586b70ac4b08402c85a9729c93c741153d07edb945921\"", "last_updated": "2022-06-02T04:55:19Z", "stargazers_count": 11, "topics": ["launch", "nasa", "rocket", "spacex", "ula"], "last_fetched": 1672948082.497903, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245694520": {"repository_manifest": {"name": "Helios ventilation", "render_readme": true}, "full_name": "asev/homeassistant-helios", "authors": ["@asev"], "category": "integration", "description": "Custom component for Home Assistant to connect Helios ventilation system.", "domain": "helios", "etag_repository": "W/\"593b95a4896dd0e187d42f5e780bd0993fa8049a2828b428ccbbbcc3550ba762\"", "last_updated": "2022-11-07T22:03:36Z", "stargazers_count": 7, "topics": ["helios", "ventilation"], "last_fetched": 1671384838.380008, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "314593331": {"repository_manifest": {"name": "Satellite Tracker (N2YO)", "country": "CA", "homeassistant": "0.115.0"}, "full_name": "djtimca/hasatellitetracker", "authors": ["@djtimca"], "category": "integration", "description": "Using the N2YO API, this Home Assistant integration will provide visible satellite passes (general) and to add specific satellites for monitoring.", "domain": "satellitetracker", "etag_repository": "W/\"8aacfc7c745376a6f54c7a4b67f4bad50abb5f49b60c8ca6b2a5d5aa273e8c21\"", "last_updated": "2022-06-02T04:56:57Z", "stargazers_count": 11, "topics": ["international-space-station", "iss", "satellite", "satellite-tracker", "starlink", "tracking-satellites", "visible-passes"], "last_fetched": 1665325500.220982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "317051290": {"repository_manifest": {"name": "Kan Program", "country": "IL", "render_readme": true}, "full_name": "eyalcha/kan_program", "authors": ["@eyalcha"], "category": "integration", "description": "Home assistant custom component to fetch kan program guide", "domain": "kan_program", "etag_repository": "W/\"5ecded6a3a17f86e395078596fcbed7f53a9b9fa206a2be768f4b201583a96de\"", "last_updated": "2022-07-14T17:31:08Z", "stargazers_count": 2, "last_fetched": 1661585074.008032, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199399946": {"repository_manifest": {"name": "Greenchoice", "country": "NL", "render_readme": true}, "full_name": "jessevl/homeassistant-greenchoice", "authors": ["@jessevl"], "category": "integration", "description": "This is a Home Assistant custom component that connects to the Greenchoice API", "domain": "greenchoice", "etag_repository": "W/\"3150a2cc6958d9f34c1d623f2756bbef0ccd2e01fc60b4ec95000bf73f991d5e\"", "last_updated": "2021-04-08T13:40:36Z", "stargazers_count": 28, "topics": ["greenchoice"], "last_fetched": 1671385029.845422, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319343045": {"repository_manifest": {"name": "UltraSync Beta", "hacs": "0.24.0", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "caronc/ha-ultrasync", "authors": ["@caronc"], "category": "integration", "description": "Interlogix ZeroWire and Hills ComNav (NX-595E) UltraSync Security Panel for Integration for Home Assistant Comunity Store (HACS)", "domain": "ultrasync", "etag_repository": "W/\"8aaea2652d8a80f0be29fc3b38ecb4dcd2e8d9e3ad53b3b50bf73831a46c53bd\"", "last_updated": "2022-07-01T13:55:11Z", "stargazers_count": 13, "topics": ["comnav", "homeassistant-custom-component", "interlogix", "nx-595e", "security", "ultrasync"], "last_fetched": 1672948025.750544, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316527506": {"repository_manifest": {"name": "Winix Purifier", "render_readme": true}, "full_name": "iprak/winix", "authors": ["@iprak"], "category": "integration", "description": "Home Assistant component for C545 Winix Air Purifier", "domain": "winix", "etag_repository": "W/\"2a874d52412e2704078b9e6d9f598c6f08125150610492b16ae269a1bd6b3d56\"", "last_updated": "2023-01-14T11:03:46Z", "stargazers_count": 52, "topics": ["purifier", "winix"], "last_fetched": 1674377995.410049, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316807165": {"repository_manifest": {"name": "Miele integration"}, "full_name": "HomeAssistant-Mods/home-assistant-miele", "authors": ["@kloknibor", "@docbobo"], "category": "integration", "description": "Miele integration for Home assistant", "domain": "miele", "etag_repository": "W/\"64a01cd69ae817a2e21451d9b161dd2a9d885c91dd44b62277d1a4aa70f8ba4f\"", "last_updated": "2022-12-11T16:46:11Z", "stargazers_count": 91, "topics": ["miele"], "last_fetched": 1674377986.56427, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "312896602": {"repository_manifest": {"name": "Skoda Connect", "homeassistant": "2022.12.0", "hide_default_branch": true, "filename": "skodaconnect.zip"}, "full_name": "lendy007/homeassistant-skodaconnect", "authors": ["@lendy007"], "category": "integration", "description": "Skoda Connect - An home assistant plugin to add integration with your car", "domain": "skodaconnect", "etag_repository": "W/\"d5a4e324bcbabd78a2a85bb9bbc9c69379edb4e447af507b8209de56c55a99c4\"", "last_updated": "2023-01-16T14:40:49Z", "stargazers_count": 132, "topics": ["skoda-connect"], "last_fetched": 1674378058.210495, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "300754203": {"repository_manifest": {"name": "Kanji Clock Card", "render_readme": true, "filename": "kanji-clock-card.js", "country": ["JP"]}, "full_name": "sopelj/lovelace-kanji-clock-card", "category": "plugin", "description": "A simple clock widget using Japanese Kanji for date and time", "domain": "", "etag_repository": "W/\"7ed924d663a09f693c7769511af013cf0049289224d664c484ff0336ce62661c\"", "last_updated": "2021-12-26T17:55:49Z", "stargazers_count": 2, "topics": ["lovelace-card", "lovelace-custom-card"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316597224": {"repository_manifest": {"name": "Budova Smart Home", "country": ["UA"], "render_readme": true, "homeassistant": "2021.8.1"}, "full_name": "dphae/bsh", "authors": ["@DarkPark"], "category": "integration", "description": "A Home Assistant Budova Smart Home integration", "domain": "bsh", "etag_repository": "W/\"b06c4df8064aeff9d855d3ebf94c284d55804b82f22e8fa574e288f517214e21\"", "last_updated": "2021-08-05T21:00:50Z", "stargazers_count": 3, "topics": ["budova"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316421110": {"repository_manifest": {"name": "La Marzocco"}, "full_name": "rccoleman/lamarzocco", "authors": ["@rccoleman"], "category": "integration", "description": "Interact with your La Marzocco espresso machine", "domain": "lamarzocco", "etag_repository": "W/\"1cad9ba169fdaef290b0e6bd6941967a25803dd2493f64a909dcca83ce0f8e7e\"", "last_updated": "2023-01-10T18:05:10Z", "stargazers_count": 40, "topics": ["home-assistant-component", "la-marzocco", "lamarzocco"], "last_fetched": 1674378148.893295, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228299254": {"repository_manifest": {"name": "LUNOS Heat Recovery Ventilation", "render_readme": true}, "full_name": "rsnodgrass/hass-lunos", "authors": ["@rsnodgrass"], "category": "integration", "description": "LUNOS HRV Ventilation Fan Control for Home Assistant", "domain": "lunos", "etag_repository": "W/\"77abf6d232b79c7e607437814cd315304d70ba2d39c6510a7b6150ad85c58ccc\"", "last_updated": "2022-11-07T07:23:12Z", "stargazers_count": 16, "topics": ["hrv", "hvac", "lunos", "smart-home-solutions", "ventilation"], "last_fetched": 1671385190.651077, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "313759590": {"repository_manifest": {"name": "Mint Mobile", "render_readme": true}, "full_name": "ryanmac8/HA-Mint-Mobile", "authors": ["@ryanmac8"], "category": "integration", "description": "Mint Mobile Integration for Data Usage Monitoring", "domain": "mintmobile", "etag_repository": "W/\"e64854fe89e9f90ddf2c04045860e96b398ba8cc823666255111b49ad78e720c\"", "last_updated": "2022-08-02T22:00:40Z", "stargazers_count": 7, "topics": ["automation"], "last_fetched": 1672948346.911743, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "318801320": {"repository_manifest": {"name": "RKI Covid numbers", "zip_release": true, "filename": "rki_covid.zip", "country": "DE", "homeassistant": "0.110.0"}, "full_name": "thebino/rki_covid", "authors": ["@thebino"], "category": "integration", "description": " \ud83e\udda0 Custom integration for Home Assistant to monitor covid numbers provided by Robert-Koch Institut", "domain": "rki_covid", "downloads": 1778, "etag_repository": "W/\"1691a89579375fba8909070972ce4ab01f618c68e5e8b41527aeeea6c3afc190\"", "last_updated": "2022-06-05T21:27:11Z", "stargazers_count": 39, "topics": ["automation", "custom"], "last_fetched": 1672948382.099021, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188323494": {"repository_manifest": {"name": "Ha Floorplan", "filename": "floorplan.js"}, "full_name": "ExperienceLovelace/ha-floorplan", "category": "plugin", "description": "Bring new life to Home Assistant. By mapping entities to a SVG-object, you're able to control devices, show states, calling services - and much more. Add custom styling on top, to visualize whatever you can think of. Your imagination just become the new limit.", "domain": "", "etag_repository": "W/\"ffdf6727063358cc1951a10f798402f8ca108f7ac27f2f5a6ae9ab7e7be3602c\"", "last_updated": "2022-12-20T16:54:14Z", "stargazers_count": 638, "topics": ["floorplan", "lovelace-card", "lovelace-floorplan", "panel"], "last_fetched": 1674378321.866041, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "318359434": {"repository_manifest": {"name": "keymaster", "zip_release": true, "filename": "keymaster.zip", "homeassistant": "2022.4.0"}, "full_name": "FutureTense/keymaster", "authors": ["@FutureTense", "@firstof9", "@raman325"], "category": "integration", "description": "Home Assistant integration for managing Z-Wave enabled locks", "domain": "keymaster", "downloads": 365, "etag_repository": "W/\"08412133df6149cd591ab2e7089120b18a957766fce9c02fb131a2de549173e2\"", "last_updated": "2023-01-20T22:42:43Z", "stargazers_count": 147, "topics": ["keymaster", "locks", "zwave", "zwave-enabled-locks"], "last_fetched": 1674377958.885236, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325097827": {"repository_manifest": {"name": "MegaD", "country": "RU", "persistent_directory": "userfiles", "render_readme": true}, "full_name": "andvikt/mega_hacs", "authors": ["@andvikt"], "category": "integration", "description": "MegaD HomeAssistant integration", "domain": "mega", "etag_repository": "W/\"fb89c1320255d074f51e2556190200b1ca2da1e6d6415c06445997def161d359\"", "last_updated": "2022-09-08T10:28:28Z", "stargazers_count": 98, "topics": ["custom-integration", "megad"], "last_fetched": 1674377813.433594, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325635211": {"repository_manifest": {"name": "dobiss", "hacs": "1.6.0", "homeassistant": "2012.12.0"}, "full_name": "kesteraernoudt/dobiss", "authors": ["@kesteraernoudt"], "category": "integration", "description": "Custom Home Assistant Integration for the Dobiss NXT platform", "domain": "dobiss", "etag_repository": "W/\"e7cb29bf85a6c881417ccea27489e3f2799b1445c57fe8f92a8e84fec6221c27\"", "last_updated": "2022-12-12T07:04:42Z", "stargazers_count": 3, "last_fetched": 1671385053.705993, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "311913208": {"repository_manifest": {"name": "Gecko", "hacs": "0.24.0", "homeassistant": "0.115.0"}, "full_name": "gazoodle/gecko-home-assistant", "authors": ["@gazoodle"], "category": "integration", "description": "Home Assistant integration for spas equipped with Gecko Alliance in.touch2 modules", "domain": "gecko", "etag_repository": "W/\"3be28825981abc75fc2eebb37eefa29aacea478f846c7402d07242dbcc3af450\"", "last_updated": "2023-01-14T06:10:34Z", "stargazers_count": 36, "topics": ["gecko", "home-assistant-integration", "hot-tub", "intouch2", "jacuzzi", "spa"], "last_fetched": 1674377961.428289, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299556199": {"repository_manifest": {"name": "Mercedes Me API", "homeassistant": "2022.11.0"}, "full_name": "xraver/mercedes_me_api", "authors": ["@xraver"], "category": "integration", "description": "Script to use Mercedes Me APIs.", "domain": "mercedesmeapi", "etag_repository": "W/\"24bfc819d9c9fe1df6ebd74ce41f12d02b21548d4a9225e84473a318fd3d55b7\"", "last_updated": "2022-12-19T23:34:38Z", "stargazers_count": 41, "topics": ["mercedes", "mercedes-benz-car"], "last_fetched": 1674378262.116163, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "303793543": {"repository_manifest": {"name": "Skydance", "country": ["EN", "CZ"], "render_readme": true}, "full_name": "tomasbedrich/home-assistant-skydance", "authors": ["@tomasbedrich"], "category": "integration", "description": "A Home Assistant integration for communication with Skydance lighting WiFi relay.", "domain": "skydance", "etag_repository": "W/\"ee17a58ed34f45ac732a8025079ca5884a8c682addff0f0bcd043fce7532ab6e\"", "last_updated": "2021-11-30T23:47:20Z", "stargazers_count": 10, "topics": ["networking"], "last_fetched": 1648400076.531253, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "315447202": {"repository_manifest": {"name": "ytube_music_player", "render_readme": true}, "full_name": "KoljaWindeler/ytube_music_player", "authors": ["@KoljaWindeler"], "category": "integration", "description": "YouTube music player for homeassistant", "domain": "ytube_music_player", "etag_repository": "W/\"1ac51e995d5e391ce24f9e6f186d82dd201a13e61ef92f6f461a6bda55cc1508\"", "last_updated": "2022-11-29T15:46:22Z", "stargazers_count": 201, "topics": ["youtube"], "last_fetched": 1674378043.461178, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "157618389": {"repository_manifest": {"name": "fontawesome", "render_readme": true, "homeassistant": "2021.11.0b0"}, "full_name": "thomasloven/hass-fontawesome", "category": "integration", "description": "\ud83d\udd39 Use icons from fontawesome in home-assistant", "domain": "fontawesome", "etag_repository": "W/\"12c15318fb0382a94ea17f9d54d756cedff2bffd7f91290cfee6a3949ae6fb17\"", "last_updated": "2023-01-07T11:46:00Z", "stargazers_count": 198, "last_fetched": 1674378216.706969, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "179808576": {"repository_manifest": {"name": "BHA Icon Pack"}, "full_name": "hulkhaugen/hass-bha-icons", "category": "plugin", "description": "Additional icons for Home Assistant to accompany the MDI icons", "domain": "", "etag_repository": "W/\"7704dad273ef2562d7c630fc549fc3ffee44db680f64469918362955d1bf2a53\"", "last_updated": "2022-05-31T05:17:57Z", "stargazers_count": 140, "topics": ["icons", "iconset"], "last_fetched": 1674378343.15387, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237620254": {"repository_manifest": {"name": "todoist-task-list", "content_in_root": true, "render_readme": true, "filename": "todoist-task-list.js"}, "full_name": "tholgir/TodoIst-Task-List", "category": "plugin", "description": "This is a custom lovelace card for displaying a todoist calendar in Home Assistant.", "domain": "", "etag_repository": "W/\"5611f7e02d974608dfdd3251fa740c67e0ac92b852167862420be38f52784b58\"", "last_updated": "2021-04-25T07:36:09Z", "stargazers_count": 11, "topics": ["lovelace-custom-card", "todoist"], "last_fetched": 1671387206.359993, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328957716": {"repository_manifest": {"name": "Time Elapsed Card", "render_readme": true, "filename": "elapsed-time-card.js"}, "full_name": "Kirbo/ha-lovelace-elapsed-time-card", "category": "plugin", "description": "Home Assistant Lovelace Custom Card to calculate time elapsed/left", "domain": "", "etag_repository": "W/\"79c9a432efb2f08f7df374d30adac4cedec1733bf22981d0516545325b475d6c\"", "last_updated": "2021-06-03T08:58:27Z", "stargazers_count": 21, "topics": ["lovelace-custom-card"], "last_fetched": 1648398773.931235, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328132422": {"repository_manifest": {"name": "Kodi Playlist Card", "render_readme": true}, "full_name": "jtbgroup/kodi-playlist-card", "category": "plugin", "description": "This repository is used to contain the code of a kodi playlist card for Home Assistant and publish it via HACS", "domain": "", "etag_repository": "W/\"4147fa07edebd2a84b04219071922fc4f566ffea828a9a05cfa237896b43728e\"", "last_updated": "2022-05-26T19:04:24Z", "stargazers_count": 2, "topics": ["kodi"], "last_fetched": 1653733103.804067, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "331701152": {"repository_manifest": {"name": "apexcharts-card", "render_readme": true}, "full_name": "RomRider/apexcharts-card", "category": "plugin", "description": "\ud83d\udcc8 A Lovelace card to display advanced graphs and charts based on ApexChartsJS for Home Assistant", "domain": "", "downloads": 22515, "etag_repository": "W/\"219aecc8fb82ce585f985b0eff6f0c0feb3d0f257f8dc7cc2a7267454acc6b25\"", "last_updated": "2023-01-17T12:28:50Z", "stargazers_count": 602, "topics": ["apexcharts", "iot"], "last_fetched": 1674378409.481026, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "327779379": {"repository_manifest": {"name": "Optus"}, "full_name": "itchannel/optus-ha", "authors": ["@itchannel"], "category": "integration", "description": "Optus Mobile Home Assistant Integration", "domain": "optus", "etag_repository": "W/\"76247ea11beb07b89e9380811fd7f27d91be810b51b5969f11cb5b32288b4e5b\"", "last_updated": "2021-06-13T00:40:48Z", "stargazers_count": 3, "topics": ["assistant", "mobile", "optus"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257988102": {"repository_manifest": {"name": "Fully Kiosk Browser", "render_readme": true, "homeassistant": "2022.7.0b0"}, "full_name": "cgarwood/homeassistant-fullykiosk", "authors": ["@cgarwood"], "category": "integration", "description": "Fully Kiosk Browser integration for Home Assistant", "domain": "fullykiosk", "etag_repository": "W/\"b7adbe276e90ab53e5fc2655a56a1065e552e36fb62f738b0a734eb64352bddb\"", "last_updated": "2022-06-30T17:10:23Z", "stargazers_count": 143, "topics": ["fully-kiosk-browser"], "last_fetched": 1674377860.627748, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328361159": {"repository_manifest": {"name": "ultimaker", "render_readme": true}, "full_name": "jellespijker/home-assistant-ultimaker", "authors": ["@jellespijker"], "category": "integration", "description": "Home-Assistant component for Ultimaker printers (UM3, S3, S5)", "domain": "ultimaker", "etag_repository": "W/\"b6ee792567e40a4a9c325f95cbb4731bc96594053fd6b347889dbfa230e62dff\"", "last_updated": "2022-06-07T18:51:42Z", "stargazers_count": 11, "topics": ["3d-printing", "home-assistant-component", "s3", "s5", "ultimaker", "um3"], "last_fetched": 1665325588.49857, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "326288498": {"repository_manifest": {"name": "worldtidesinfocustom"}, "full_name": "jugla/worldtidesinfocustom", "authors": ["@jugla"], "category": "integration", "description": "world tides info custom component for home assistant", "domain": "worldtidesinfocustom", "etag_repository": "W/\"61bc733ee78dd8c83f65d5214e80bd412582224f0e0d0b50a439304194ce0ef8\"", "last_updated": "2022-05-28T18:30:30Z", "stargazers_count": 16, "topics": ["tides", "worldtides"], "last_fetched": 1656859241.736035, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "330454534": {"repository_manifest": {"name": "La Marzocco Config Card", "render_readme": true, "filename": "lamarzocco-config-card.js"}, "full_name": "rccoleman/lovelace-lamarzocco-config-card", "category": "plugin", "description": "Lovelace card to configure network-connected La Marzocco espresso machines", "domain": "", "downloads": 36, "etag_repository": "W/\"720bbf2ebd500c836ca513a854bc89874b947841747819c5a2f620561342c9f6\"", "last_updated": "2022-11-15T05:00:39Z", "stargazers_count": 2, "topics": ["automation", "espresso", "lamarzocco", "lovelace-card", "lovelace-custom-card"], "last_fetched": 1671387204.178351, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "306822538": {"repository_manifest": {"name": "NSW Rural Fire Service - Fire Danger", "country": ["AU"], "homeassistant": "2022.8.0"}, "full_name": "exxamalte/home-assistant-custom-components-nsw-rural-fire-service-fire-danger", "authors": ["@exxamalte"], "category": "integration", "description": "Home Assistant Custom Component: NSW Rural Fire Service Fire Danger", "domain": "nsw_rural_fire_service_fire_danger", "etag_repository": "W/\"df60eee3b1d0b49e6b4263c88d049413e36a0719837080cd6eb1e0bcb198b7b4\"", "last_updated": "2022-11-04T12:18:49Z", "stargazers_count": 2, "topics": ["fire-danger", "nsw", "rural-fire-service"], "last_fetched": 1672948111.210486, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291484700": {"repository_manifest": {"name": "Xiaomi Gateway 3", "render_readme": true}, "full_name": "AlexxIT/XiaomiGateway3", "authors": ["@AlexxIT"], "category": "integration", "description": "Control Zigbee, BLE and Mesh devices from Home Assistant with Xiaomi Gateway 3 on original firmware", "domain": "xiaomi_gateway3", "etag_repository": "W/\"85fbe239cca69b419c3ebf3840f754b2bc3b14529afa730deee408ee293cb992\"", "last_updated": "2023-01-21T06:58:26Z", "stargazers_count": 1738, "topics": ["aqara", "ble", "mesh", "xiaomi", "zigbee"], "last_fetched": 1674377801.900154, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334523683": {"repository_manifest": {"name": "Teufel Raumfeld", "zip_release": true, "filename": "teufel_raumfeld.zip"}, "full_name": "B5r1oJ0A9G/teufel_raumfeld", "authors": ["@B5r1oJ0A9G"], "category": "integration", "description": "Integration for Teufel smart speaker (aka Raumfeld Multiroom) into https://www.home-assistant.io/.", "domain": "teufel_raumfeld", "downloads": 571, "etag_repository": "W/\"ebe39c633713a46bee5c9aa2f784e99a367ffc2ce27df23d3ac0c7fc403ffb86\"", "last_updated": "2022-10-24T20:52:26Z", "stargazers_count": 18, "topics": ["hassfeld", "multiroom", "multiroom-audio", "raumfeld", "smart-speaker", "teufel"], "last_fetched": 1674377830.098838, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "276915021": {"repository_manifest": {"name": "Easee EV Charger", "homeassistant": "2022.10.0", "zip_release": true, "filename": "easee.zip"}, "full_name": "fondberg/easee_hass", "authors": ["@fondberg", "@tmjo", "@olalid", "@astrandb"], "category": "integration", "description": "Custom component for Easee EV charger", "domain": "easee", "downloads": 2280, "etag_repository": "W/\"f0d34f0f293ad4191f379e90e7092eeb9a8f27ea2a5e9b852f1837c2eae816e6\"", "last_updated": "2023-01-21T20:05:29Z", "stargazers_count": 135, "topics": ["easee", "ev-charging"], "last_fetched": 1674377952.496508, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325755578": {"repository_manifest": {"name": "MercedesME 2020", "homeassistant": "2022.11.0"}, "full_name": "ReneNulschDE/mbapi2020", "authors": ["@ReneNulschDE"], "category": "integration", "description": "Custom Component to integrate MercedesME devices into Home-Assistant", "domain": "mbapi2020", "etag_repository": "W/\"03cfd46a8504d00665674894824ec2c8a6392cef0ddabe7d32dd578e24d29118\"", "last_updated": "2023-01-08T09:29:08Z", "stargazers_count": 76, "topics": ["car", "home-assistant-component", "lock", "switch"], "last_fetched": 1674378152.017092, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325962977": {"repository_manifest": {"name": "EMSC Earthquake RSS Feed", "hacs": "1.6.0", "homeassistant": "2021.12.2"}, "full_name": "msekoranja/emsc-hacs-repository", "authors": ["@msekoranja"], "category": "integration", "description": "EMSC Home Assistant Integration", "domain": "emscrss", "etag_repository": "W/\"2139ba9554a8f94d188fc57635982f5243ea90a6903cc59da31dcb4db3407739\"", "last_updated": "2022-02-09T23:26:15Z", "stargazers_count": 3, "last_fetched": 1653733510.697532, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319744131": {"repository_manifest": {"name": "TapHome", "render_readme": true, "homeassistant": "2021.7.0", "content_in_root": true}, "full_name": "martindybal/taphome-homeassistant", "authors": ["@martindybal"], "category": "integration", "description": "TapHome integration into Home Assistant.", "domain": "taphome", "etag_repository": "W/\"58e23c25a030f1b4393b3ddef7dbeba707d2bb0254970420f8ec43cdb7d63519\"", "last_updated": "2023-01-04T20:43:55Z", "stargazers_count": 7, "topics": ["taphome"], "last_fetched": 1672948246.834993, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236611771": {"repository_manifest": {"name": "TDAmeritrade", "country": "US", "homeassistant": "2022.6.1"}, "full_name": "prairiesnpr/hass-tdameritrade", "authors": ["@PrairieSnpr"], "category": "integration", "description": "TDAmeritrade component for Home Assistant", "domain": "tdameritrade", "etag_repository": "W/\"e459917b4ca1dcd1932975222105e8eeb9d4fda65b63c945dbe85b31582a9e01\"", "last_updated": "2022-06-11T15:13:15Z", "stargazers_count": 5, "topics": ["tdameritrade"], "last_fetched": 1656859340.44618, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "335750566": {"repository_manifest": {"name": "Brandstofprijzen", "render_readme": true, "country": ["NL"]}, "full_name": "metbril/home-assistant-brandstofprijzen", "authors": ["@metbril"], "category": "integration", "description": "Home Assistant component for fuel prices from United Consumers", "domain": "brandstofprijzen", "etag_repository": "W/\"d6ce2edc33db778e2b8c8394f770600bed7ac00055f2c23551010d44a9b9df8b\"", "last_updated": "2022-10-02T04:22:27Z", "stargazers_count": 5, "last_fetched": 1665325658.415757, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "332651510": {"repository_manifest": {"homeassistant": "2023.1.0", "name": "Baby Buddy", "render_readme": true}, "full_name": "jcgoette/baby_buddy_homeassistant", "authors": ["@jcgoette"], "category": "integration", "description": "This custom integration provides sensors for Baby Buddy API endpoints.", "domain": "babybuddy", "downloads": 2, "etag_repository": "W/\"8f5562d5dcc5094eababd420611bc77d6e9132be18a1c742f455eeb1dba15202\"", "last_updated": "2023-01-13T04:05:55Z", "stargazers_count": 31, "topics": ["baby", "home-assistant-component", "parents"], "last_fetched": 1674378009.948253, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "295523408": {"repository_manifest": {"name": "Salus iT600", "render_readme": true}, "full_name": "jvitkauskas/homeassistant_salus", "authors": ["@jvitkauskas"], "category": "integration", "description": "Home Assistant integration with Salus devices", "domain": "salus", "etag_repository": "W/\"fd8e799d77d0223c62119eeb4399a2ab55a1ad1fa12012977b5e808129310d36\"", "last_updated": "2022-11-09T00:09:03Z", "stargazers_count": 31, "last_fetched": 1674378031.650836, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "327695137": {"repository_manifest": {"name": "Kodi Media Sensors", "homeassistant": "2022.8.7", "render_readme": true}, "full_name": "jtbgroup/kodi-media-sensors", "authors": ["@boralyl", "@Gautier Vanderslyen"], "category": "integration", "description": "Custom component to feed multiple sensors in Home Assistan and so custom cards can be to display those sensors. This repository is a fork of https://github.com/boralyl/kodi-recently-added", "domain": "kodi_media_sensors", "etag_repository": "W/\"938f2c63e82c8f6e0e12b61700cd43c783bf611ee91f38d85ec67b73f56b5c98\"", "last_updated": "2023-01-08T09:02:48Z", "stargazers_count": 7, "topics": ["home-assistant-component", "homeassistant-custom-component", "kodi", "playlist", "playlists", "pyth"], "last_fetched": 1674378025.536819, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232424544": {"repository_manifest": {"name": "Bosch Smart Home Controller (SHC) integration", "homeassistant": "2021.1.5"}, "full_name": "tschamm/boschshc-hass", "authors": ["@tschamm"], "category": "integration", "description": "Home Assistant component for accessing Bosch Smart Home Controller using boschshcpy python library.", "domain": "bosch_shc", "etag_repository": "W/\"3d2d3deb7fbb0c92942def2094753f83aa96c88c90dd888fa6b8aabbcfa9f0e3\"", "last_updated": "2023-01-21T23:38:42Z", "stargazers_count": 60, "topics": ["bosch-smart-home", "boschshcpy", "home-assistant-component"], "last_fetched": 1674378234.47579, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328671547": {"repository_manifest": {"name": "wattio", "homeassistant": "0.96.0", "render_readme": true}, "full_name": "dmoranf/home-assistant-wattio", "authors": ["@dmoranf"], "category": "integration", "description": "Wattio Smart Home custom integration for Home Assistant", "domain": "wattio", "etag_repository": "W/\"63d645f3dd5184c7cc13cfc9e5be72af788278c459b0b44695fcd1c91ab122ee\"", "last_updated": "2021-06-04T07:27:56Z", "stargazers_count": 4, "topics": ["home-assistant-component", "wattio"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "326220257": {"repository_manifest": {"name": "Viomi Robot Vacuum Cleaner SE (V-RVCLM21A)", "country": ["FR", "PL", "PT"], "zip_release": true, "filename": "viomi_se.zip"}, "full_name": "marotoweb/home-assistant-vacuum-viomise", "category": "integration", "description": "Hacky Home assistant support for Viomi SE (V-RVCLM21A)", "domain": "viomise", "downloads": 1227, "etag_repository": "W/\"311ae37e6d4938bb0be4baa6539c3787ef12f051ddbbb93701bd64572c0c2b7e\"", "last_updated": "2022-06-29T18:36:07Z", "stargazers_count": 19, "topics": ["robot-vacuum", "vacuum", "viomi"], "last_fetched": 1672948246.688475, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325470745": {"repository_manifest": {"name": "Xiaomi MIoT", "render_readme": true}, "full_name": "ha0y/xiaomi_miot_raw", "authors": ["@ha0y"], "category": "integration", "description": "All-in-one & Easy-to-use. Integrate all your Xiaomi Smart Home - with a single integration and NO YAML files - into Home Assistant.", "domain": "xiaomi_miot_raw", "etag_repository": "W/\"ff05647eb666cedee4da5aa494a435f2e2d0e3526ddd6141e439130fdc64496f\"", "last_updated": "2022-11-19T05:38:11Z", "stargazers_count": 1883, "topics": ["home-assistant-addons", "miot", "miot-protocol", "xiaomi", "xiaomi-miot"], "last_fetched": 1674377977.960559, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "186605347": {"repository_manifest": {"name": "Bosch thermostat", "homeassistant": "2022.9.0", "render_readme": true}, "full_name": "bosch-thermostat/home-assistant-bosch-custom-component", "authors": ["@pszafer"], "category": "integration", "description": "HA custom component for Bosch thermostats", "domain": "bosch", "etag_repository": "W/\"19a5047d017358e16d76abd6c1b713e2e954e86b1288bfc88bef276348954c88\"", "last_updated": "2023-01-10T17:29:39Z", "stargazers_count": 121, "topics": ["bosch", "bosch-thermostat", "buderus", "nefit", "sensors", "thermostat", "xmpp"], "last_fetched": 1674377842.861582, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "100234318": {"repository_manifest": {"name": "Xiaomi Philips Lights Integration", "render_readme": true}, "full_name": "syssi/philipslight", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Philips Lights integration for Home Assistant", "domain": "xiaomi_miio_philipslight", "etag_repository": "W/\"54b2b4e79eaa29e97e6ed62b7885141fd20b9e7c3fce306fd035a09079d50d8f\"", "last_updated": "2022-08-10T18:50:38Z", "stargazers_count": 62, "topics": ["light", "miio", "miio-protocol", "xiaomi", "xiaomi-philips-lights"], "last_fetched": 1671385223.700202, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "332911333": {"repository_manifest": {"name": "Irrigation Unlimited", "homeassistant": "2022.1.0"}, "full_name": "rgc99/irrigation_unlimited", "authors": ["@rgc99"], "category": "integration", "description": "\u2652Irrigation controller for Home Assistant", "domain": "irrigation_unlimited", "etag_repository": "W/\"533042280d0ec3098aa367f93fdcb4a31ae75b7f8060cfbabb04ce3f610e9739\"", "last_updated": "2023-01-02T08:42:08Z", "stargazers_count": 182, "topics": ["garden-automation", "irrigation", "irrigation-control-system", "irrigation-controller", "sprinkler-controller", "water", "watering-controller", "watering-system"], "last_fetched": 1674378152.566735, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "313850121": {"repository_manifest": {"name": "Xiaomi Miio For Yeelink", "render_readme": true}, "full_name": "al-one/hass-miio-yeelink", "authors": ["@al-one"], "category": "integration", "description": "Xiaomi Miio Yeelink/Yeelight devices for Home Assistant", "domain": "miio_yeelink", "downloads": 87, "etag_repository": "W/\"1a6c271c40b53388548367491306c7d32a549dbf10677b9ec0193eb19062dd4e\"", "last_updated": "2022-05-18T10:19:20Z", "stargazers_count": 131, "topics": ["miio", "miot", "xiaomi", "yeelight", "yeelink"], "last_fetched": 1674377795.797547, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "318182014": {"repository_manifest": {"name": "Xiaomi Miot Auto", "zip_release": true, "filename": "xiaomi_miot.zip", "render_readme": true, "homeassistant": "2022.7.0"}, "full_name": "al-one/hass-xiaomi-miot", "authors": ["@al-one"], "category": "integration", "description": "Automatic integrate all Xiaomi devices to HomeAssistant via miot-spec, support Wi-Fi, BLE, ZigBee devices. \u5c0f\u7c73\u7c73\u5bb6\u667a\u80fd\u5bb6\u5c45\u8bbe\u5907\u63a5\u5165Hass\u96c6\u6210", "domain": "xiaomi_miot", "downloads": 9963, "etag_repository": "W/\"1970c9866f90c62afa86415eb5a6073fe8d060f76eaf60496943095f5d284e00\"", "last_updated": "2023-01-18T09:02:10Z", "stargazers_count": 2042, "topics": ["iot", "miio", "miot", "miot-spec", "xiaoai", "xiaomi", "xiaomi-miot"], "last_fetched": 1674377796.044225, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "335019855": {"repository_manifest": {"name": "LinakDesk Card", "render_readme": true, "filename": "linak-desk-card.js"}, "full_name": "IhorSyerkov/linak-desk-card", "category": "plugin", "description": "Home Assistant Lovelace Card for controlling desks based on linak bluetooth controller.", "domain": "", "downloads": 222, "etag_repository": "W/\"e9974f8fbd4844595a39fe3c0bce94a524ab309315049a6e2d2cd2e6f0a539d1\"", "last_updated": "2023-01-04T13:39:59Z", "stargazers_count": 40, "topics": ["linak-desk-card"], "last_fetched": 1674378346.725011, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "337387822": {"repository_manifest": {"name": "Hella ONYX.CENTER", "homeassistant": "2021.11.5", "render_readme": true}, "full_name": "muhlba91/onyx-homeassistant-integration", "authors": ["@muhlba91"], "category": "integration", "description": "Home Assistant integration (HACS) for Hella's ONYX.CENTER appliance", "domain": "hella_onyx", "etag_repository": "W/\"6229887c7aa4db86e91ce26c0ebf8a1106feaf4f538e968da374f3e79a0bf202\"", "last_updated": "2021-11-24T14:52:27Z", "stargazers_count": 2, "topics": ["hella", "onyx"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "320324937": {"repository_manifest": {"name": "Veolia", "hacs": "0.24.0", "homeassistant": "0.115.0", "country": "FR"}, "full_name": "tetienne/veolia-custom-component", "authors": ["@tetienne"], "category": "integration", "description": "Home Assistant custom component to retrieve information from Veolia ", "domain": "veolia", "etag_repository": "W/\"8276f9ede706ac8ac1fad7fd7439bc34e821f32904a08772f2495ae31cc4cf48\"", "last_updated": "2021-12-22T07:52:40Z", "stargazers_count": 2, "topics": ["home-assistant-component", "veolia"], "last_fetched": 1665325773.859785, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "335713085": {"repository_manifest": {"name": "Todoist Card", "content_in_root": true, "filename": "todoist-card.js", "render_readme": true}, "full_name": "grinstantin/todoist-card", "category": "plugin", "description": "Todoist card for Home Assistant Lovelace UI.", "domain": "", "etag_repository": "W/\"eb2be1522c1af9625f98ff6cab15a85baf4d670a1a9e8d665b8d78bd00428aa3\"", "last_updated": "2023-01-22T07:22:59Z", "stargazers_count": 44, "topics": ["todoist"], "last_fetched": 1674378339.216539, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334076222": {"repository_manifest": {"name": "AstroWeather", "render_readme": true}, "full_name": "mawinkler/astroweather", "authors": ["@mawinkler"], "category": "integration", "description": "Asynchronous Astro Weather Forecast for Home Assistant", "domain": "astroweather", "etag_repository": "W/\"dd55077505befabd1b5a8f8885b48ae64e69baea3ea5e52e08411662f9946bcc\"", "last_updated": "2023-01-15T12:21:09Z", "stargazers_count": 26, "topics": ["7timer", "astronomy", "forecast"], "last_fetched": 1674378082.92291, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "339464185": {"repository_manifest": {"name": "Weishaupt WEM Portal"}, "full_name": "erikkastelec/hass-WEM-Portal", "authors": ["@erikkastelec"], "category": "integration", "description": "Custom component for retrieving sensor information from Weishaupt WEM Portal", "domain": "wemportal", "etag_repository": "W/\"37f68fe4a727a88424127ff5b4dc10e71ed3ddfe6e04fb42a975e9a4f61731be\"", "last_updated": "2022-11-13T16:56:48Z", "stargazers_count": 29, "topics": ["weishaupt", "wem-portal"], "last_fetched": 1671384956.425841, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "152294445": {"repository_manifest": {"name": "Remote Home-Assistant", "render_readme": true}, "full_name": "custom-components/remote_homeassistant", "authors": ["@lukas-hetzenecker", "@postlund"], "category": "integration", "description": "Links multiple home-assistant instances together", "domain": "remote_homeassistant", "etag_repository": "W/\"66acadc8af1872984f57ba923e80b225c53fecde92c19b4960375de07fae3862\"", "last_updated": "2023-01-09T22:29:13Z", "stargazers_count": 590, "last_fetched": 1674377881.404916, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "342026799": {"repository_manifest": {"name": "Pollen Information Hungary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/pollen_hu", "authors": ["@amaximus"], "category": "integration", "description": "Home Assistant custom component for Pollen Information in Hungary", "domain": "pollen_hu", "downloads": 8, "etag_repository": "W/\"146a557a9fffc4176f6d1cf5fb220b39d83e5ebc5245addce9598ded7a3b8cec\"", "last_updated": "2022-06-03T06:29:01Z", "stargazers_count": 7, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1671384821.071125, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "338782385": {"repository_manifest": {"name": "Compal WiFi", "country": "CH", "zip_release": true, "filename": "compal_wifi.zip", "render_readme": true}, "full_name": "frimtec/hass-compal-wifi", "authors": ["@frimtec"], "category": "integration", "description": "Home Assistant component to switch WiFi on/off for Compal CH7465LG modem.", "domain": "compal_wifi", "downloads": 67, "etag_repository": "W/\"10d68c67fb87b62dc24a59763fca6463513b20be95a16d9f35a04cc0e91ad5b2\"", "last_updated": "2022-12-18T17:09:38Z", "stargazers_count": 2, "topics": ["ch7465lg", "compal", "compal-wifi-switch", "switch", "wifi", "wlan"], "last_fetched": 1671384972.434436, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "323346718": {"repository_manifest": {"name": "AwoX MESH control", "homeassistant": "2022.09.0", "render_readme": true}, "full_name": "fsaris/home-assistant-awox", "authors": ["@fsaris"], "category": "integration", "description": "AwoX mesh light integration for Home Assistant", "domain": "awox", "etag_repository": "W/\"29f99711e4faa6acb95f75afb972e808777adb190995e5b04c8ee045466f5e09\"", "last_updated": "2023-01-05T10:18:18Z", "stargazers_count": 61, "topics": ["awox", "bluetooth", "eglo"], "last_fetched": 1674377956.285804, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "339124227": {"repository_manifest": {"name": "Zonneplan ONE", "homeassistant": "2021.12.0", "render_readme": true, "country": "NL"}, "full_name": "fsaris/home-assistant-zonneplan-one", "authors": ["@fsaris"], "category": "integration", "description": "Unofficial Zonneplan ONE + connect integration for Home Assistant", "domain": "zonneplan_one", "etag_repository": "W/\"832c63e4a1f4cc98f6bcc6a7600a52f2baf10659283aa586c6aa78aa00415501\"", "last_updated": "2023-01-21T18:20:10Z", "stargazers_count": 51, "topics": ["home-assistant-component", "zonneplan", "zonneplan-connect", "zonneplan-one"], "last_fetched": 1674377956.641247, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340616586": {"repository_manifest": {"name": "Narodmon Cloud Integration", "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "Limych/ha-narodmon", "authors": ["@Limych"], "category": "integration", "description": "Component to integrate Narodmon cloud into Home Assistant", "domain": "narodmon", "etag_repository": "W/\"6ba035754f2169c91a3280be2d9668e7c8c12eb0258b8b7531bb2a745af60a9f\"", "last_updated": "2023-01-11T08:04:04Z", "stargazers_count": 12, "topics": ["home-assistant-component", "narodmon", "weather"], "last_fetched": 1674378064.584167, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340759468": {"repository_manifest": {"name": "NIWA Tides", "country": "NZ", "render_readme": true}, "full_name": "muxa/home-assistant-niwa-tides", "authors": ["@muxa"], "category": "integration", "description": "Custom integration for Home Assistant to get New Zealand tide information from NIWA Tides API", "domain": "niwa_tides", "etag_repository": "W/\"9d36aa7e1abb85164595f24c0fc8fa28982149806bbd4097c8e5a73c25132aea\"", "last_updated": "2022-03-12T21:41:22Z", "stargazers_count": 4, "topics": ["tides"], "last_fetched": 1656859309.077192, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259739166": {"repository_manifest": {"name": "Octopus Agile", "render_readme": true}, "full_name": "markgdev/home-assistant_OctopusAgile", "authors": ["@markgdev"], "category": "integration", "description": "Octopus Agile custom component for Home Assistant", "domain": "octopusagile", "etag_repository": "W/\"6b3b75420a5adf13ef36412210d75b1bf3516b0cb06568f415577a1a50179b37\"", "last_updated": "2022-11-05T17:07:08Z", "stargazers_count": 67, "topics": ["energy", "octopus", "octopus-agile", "octopus-energy"], "last_fetched": 1672948245.113641, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319346850": {"repository_manifest": {"name": "Snowtire Sensor", "hacs": "1.6.0", "homeassistant": "2022.6.0"}, "full_name": "Limych/ha-snowtire", "authors": ["@limych"], "category": "integration", "description": "Home Assistant sensor to predict if it's time to change car tires from summer to winter and vice versa.", "domain": "snowtire", "downloads": 4, "etag_repository": "W/\"d4d5396d2926bfd58c4c2d11e72b14739bbc25f459710ad02effd3582632f6d5\"", "last_updated": "2022-12-12T13:04:14Z", "stargazers_count": 23, "topics": ["car-winter-tires", "home-assistant-component", "tires"], "last_fetched": 1671385083.813822, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236358405": {"repository_manifest": {"name": "Broadlink s2c and s1c sensors", "render_readme": true, "homeassistant": "0.112.0"}, "full_name": "nick2525/broadlink_s1c_s2c", "authors": ["@nick2525"], "category": "integration", "description": "Broadlink s2c and Broadlink s1c sensors for Home Assistant", "domain": "broadlink_s1c", "etag_repository": "W/\"bb20891c78e06fd0e12f2c85ed6dc433d351bad17f3b8fb828a7db1fba0d36d7\"", "last_updated": "2022-05-29T06:44:35Z", "stargazers_count": 6, "topics": ["broadlink", "hacz", "s1c", "s2c"], "last_fetched": 1674378114.420039, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "342944383": {"repository_manifest": {"name": "Neerslag Card", "render_readme": true, "country": ["NL", "BE"], "filename": "neerslag-card.js"}, "full_name": "aex351/home-assistant-neerslag-card", "category": "plugin", "description": "Display Buienalarm and/or Buienradar data in a graph for Home Assistant.", "domain": "", "etag_repository": "W/\"4c34535c87481fe1da455ed38ca602941e75db20dd4dd16c03ddc5e0bede36a3\"", "last_updated": "2022-07-10T00:00:18Z", "stargazers_count": 20, "last_fetched": 1671385291.715491, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "341931266": {"repository_manifest": {"name": "Simple Clock Card", "content_in_root": true, "render_readme": true, "filename": "simple-clock-card.js"}, "full_name": "fufar/simple-clock-card", "category": "plugin", "description": "Simple clock card for Home assistant lovelace", "domain": "", "etag_repository": "W/\"d881487491f8093d7aeffee4fece3a6e59a8c13a0bda996a7dc3e3fcfddaafd1\"", "last_updated": "2022-12-29T04:10:27Z", "stargazers_count": 28, "topics": ["clock", "lovelace-custom-card"], "last_fetched": 1674378333.275068, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "344636306": {"repository_manifest": {"name": "SAJ Inverter Modbus", "homeassistant": "2021.12.0"}, "full_name": "wimb0/home-assistant-saj-modbus", "authors": ["@wimb0"], "category": "integration", "description": "Home Assistant Component for reading data locally from SAJ (and Zonneplan) Inverters through modbus TCP.", "domain": "saj_modbus", "etag_repository": "W/\"8479b697e225199ef1e7980e29881abf20245109cfde9ffa788c71ca1a2a0e17\"", "last_updated": "2023-01-06T10:55:21Z", "stargazers_count": 16, "topics": ["saj-inverters", "saj-r5", "zonneplan"], "last_fetched": 1674378258.500027, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234961647": {"repository_manifest": {"name": "Climate Mode Entity Row", "filename": "climate-mode-entity-row.js", "render_readme": true}, "full_name": "piitaya/lovelace-climate-mode-entity-row", "category": "plugin", "description": "Climate mode entity for Lovelace", "domain": "", "etag_repository": "W/\"efe8fd8b99de3516792c7fd003e80bee3d1fd3da39bfaf0ee764fa015c3c2547\"", "last_updated": "2022-06-27T07:31:07Z", "stargazers_count": 67, "topics": ["card", "thermostat"], "last_fetched": 1674378394.290722, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "293488791": {"repository_manifest": {"name": "Uonet+ Vulcan", "country": "PL", "homeassistant": "2022.5.0", "render_readme": true}, "full_name": "Antoni-Czaplicki/vulcan-for-hassio", "authors": ["@Antoni-Czaplicki"], "category": "integration", "description": "Vulcan inegration for home assistamt", "domain": "vulcan", "etag_repository": "W/\"bab4b70a734ff96987175f8cbdf0c7c8d0f4b3ef32f91cf19f5e4fbc4e901aff\"", "last_updated": "2022-09-11T11:39:11Z", "stargazers_count": 22, "topics": ["timetable", "vulcan"], "last_fetched": 1674377817.779075, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "341707887": {"repository_manifest": {"name": "Pollen Information Card for Hungary ", "filename": "pollen-hu-card.js", "render_readme": "true"}, "full_name": "amaximus/pollen-hu-card", "category": "plugin", "description": "Home Assistant custom Lovelace card for pollen information in Hungary", "domain": "", "downloads": 611, "etag_repository": "W/\"b3436846e6ec982adb0d984d18365e856b36beb317a8cdf702706b865bf5895e\"", "last_updated": "2022-06-03T06:29:32Z", "stargazers_count": 10, "topics": ["hungary", "lovelace-custom-card"], "last_fetched": 1671385295.921651, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "342208616": {"repository_manifest": {"name": "Resol Deltasol KM2/DL2/DL3, VBus/LAN, VBus/USB", "zip_release": true, "filename": "deltasol.zip", "render_readme": true}, "full_name": "dm82m/hass-Deltasol-KM2", "authors": ["@dm82m"], "category": "integration", "description": "Custom component for retrieving sensor information from Resol KM2, DL2/DL3, VBus/LAN, VBus/USB", "domain": "deltasol", "downloads": 70, "etag_repository": "W/\"b291135e514dc93b2affb1adb396ae698c204d3231a198fafa70b065a21283b6\"", "last_updated": "2023-01-08T10:54:50Z", "stargazers_count": 11, "topics": ["deltasol", "km2"], "last_fetched": 1674377917.874809, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "330644825": {"repository_manifest": {"name": "Google Home", "homeassistant": "2022.6.0", "render_readme": true}, "full_name": "leikoilja/ha-google-home", "authors": ["@leikoilja", "@DurgNomis-drol", "@ArnyminerZ", "@KapJI"], "category": "integration", "description": "Home Assistant Google Home custom component ", "domain": "google_home", "etag_repository": "W/\"7371086f848704549c99f399e1910d1706ebc6712f82a67424f51ace1a036093\"", "last_updated": "2023-01-18T14:07:55Z", "stargazers_count": 304, "topics": ["google-assistent", "google-home"], "last_fetched": 1674378058.07715, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "211393677": {"repository_manifest": {"name": "Qubino Wire Pilot", "render_readme": true, "homeassistant": "0.96.0"}, "full_name": "piitaya/home-assistant-qubino-wire-pilot", "authors": ["@piitaya"], "category": "integration", "description": "Home Assistant Component for Qubino Wire Pilot", "domain": "qubino_wire_pilot", "etag_repository": "W/\"07e5eabad7366ded6195c2e19058316820dec19330bb3370be16fbe8be297b38\"", "last_updated": "2022-01-07T13:01:40Z", "stargazers_count": 14, "topics": ["climate", "qubino", "qubino-wire-pilot", "thermostat"], "last_fetched": 1674378132.047261, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "349455097": {"repository_manifest": {"name": "Ubee Router", "render_readme": true}, "full_name": "kevinhaendel/ha-ubee", "authors": ["@mzdrale", "@kevinhaendel"], "category": "integration", "description": "This platform integrates Ubee Routers into Home Assistant.", "domain": "ubee", "etag_repository": "W/\"0c21ecec823114a11fb1fb3058dc05b1b4c4f717bdb7cce4eef67b7fe19e1cc1\"", "last_updated": "2022-05-28T17:44:54Z", "stargazers_count": 1, "topics": ["ubee"], "last_fetched": 1653824759.812442, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "157980832": {"repository_manifest": {"name": "Nob\u00f8 Hub / Nob\u00f8 Energy Control", "country": "NO", "render_readme": true}, "full_name": "echoromeo/hanobo", "authors": ["@echoromeo"], "category": "integration", "description": "Home Assistant implementation of pynobo - to control Nob\u00f8 / Glen Dimplex heaters", "domain": "nobo_hub", "etag_repository": "W/\"03c2e7b4d25a5d42327dd00c3c6ef1de794c1eee85e2c21add3fe4e57b303ad1\"", "last_updated": "2022-03-07T18:12:58Z", "stargazers_count": 28, "topics": ["glen-dimplex", "heaters", "hvac", "nobo"], "last_fetched": 1665938823.145197, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "242528119": {"repository_manifest": {"name": "RuuviTag Sensor", "render_readme": true}, "full_name": "ruuvi-friends/ruuvi-hass.io", "authors": ["@smaisidoro"], "category": "integration", "description": "Ruuvi tag BLE sensor for Home Assistant.", "domain": "ruuvi", "etag_repository": "W/\"3648c7139352ef4bc57fe7117f8fcf26999d499ff701cb15ab43f9cee36510ba\"", "last_updated": "2022-01-25T13:23:39Z", "stargazers_count": 44, "topics": ["ruuvi-ble-devices", "ruuvitag", "ruuvitag-sensor"], "last_fetched": 1672948347.006965, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "344660161": {"repository_manifest": {"name": "eGauge", "hacs": "1.6.0", "homeassistant": "2021.9.0", "render_readme": true}, "full_name": "neggert/hass-egauge", "authors": ["@neggert"], "category": "integration", "description": "Home Assistant custom component for eGauge monitor", "domain": "egauge", "etag_repository": "W/\"7881c0a093e045d02a919a38a57c341505ae6048a3ce7447a949a47723c96362\"", "last_updated": "2022-05-19T06:07:30Z", "stargazers_count": 9, "last_fetched": 1653229843.216411, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "266595512": {"repository_manifest": {"name": "Casambi"}, "full_name": "hellqvio86/home_assistant_casambi", "authors": ["@hellqvio86"], "category": "integration", "description": "Home assistant Integration for Casambi Cloud lights", "domain": "casambi", "etag_repository": "W/\"73d982a2c434d496c646e17e71c2fea29267b7ba65399e91cb5eed466ecac0a0\"", "last_updated": "2022-12-17T19:52:57Z", "stargazers_count": 20, "topics": ["casambi"], "last_fetched": 1671384998.675916, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "347143701": {"repository_manifest": {"name": "Channels DVR Recently Recorded"}, "full_name": "rccoleman/channels_dvr_recently_recorded", "authors": ["@rccoleman"], "category": "integration", "description": "\u25b6\ufe0f Channels DVR component to feed Upcoming Media Card.", "domain": "channels_dvr_recently_recorded", "etag_repository": "W/\"632cb7ecceb6006f5a9249de7466507ba4ee9b6b01cfcd6548ba11be5aeaa122\"", "last_updated": "2021-12-05T17:10:49Z", "stargazers_count": 11, "topics": ["channels-dvr", "homeassista"], "last_fetched": 1643571245.264041, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340664955": {"repository_manifest": {"name": "Proof Dashcam Integration", "country": ["IL"], "render_readme": true}, "full_name": "dimagoltsman/ha-proof-dashcam-integration", "authors": ["@dimagoltsman"], "category": "integration", "description": "HACS integration to proof.co.il dashcam", "domain": "proof", "etag_repository": "W/\"bf55041246f16b26dafae40aaa1e2cd6b1b261433a9a915447df745be7bc2e9f\"", "last_updated": "2021-03-13T18:43:28Z", "stargazers_count": 1, "topics": ["proof"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "350509867": {"repository_manifest": {"name": "Uptime Card", "render_readme": true, "filename": "uptime-card.js"}, "full_name": "dylandoamaral/uptime-card", "category": "plugin", "description": "Minimalistic uptime card for Home Assistant Lovelace UI", "domain": "", "downloads": 3229, "etag_repository": "W/\"6398a61df884af2d440219ff30dccc475df77c24a644c2b075aa38d8f346ae0f\"", "last_updated": "2023-01-12T20:30:24Z", "stargazers_count": 174, "topics": ["card", "custom", "uptime", "uptime-card"], "last_fetched": 1674378321.553658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231829137": {"repository_manifest": {"name": "Noctis"}, "full_name": "aFFekopp/noctis", "category": "theme", "description": "\ud83d\udc35 Dark Blue Theme for Home Assistant", "etag_repository": "W/\"ae3d5a92f54abcc9b33e4219d45e9fea2099aeea140b50a4f6225bf11989c369\"", "last_updated": "2023-01-16T15:31:54Z", "stargazers_count": 147, "topics": ["dark-theme", "home-assistant-theme"], "last_fetched": 1674378439.426887, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234022648": {"repository_manifest": {"name": "Google Dark Theme", "render_readme": true}, "full_name": "JuanMTech/google_dark_theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the Google app dark mode.", "etag_repository": "W/\"3195acd5fc828d881c6281e0d914da90845d3ffeadb51aced0e0b1d9b44ee770\"", "last_updated": "2023-01-12T22:47:14Z", "stargazers_count": 137, "last_fetched": 1674378468.893994, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "326033921": {"repository_manifest": {"name": "Toggle Control Button Row", "filename": "toggle-control-button-row.js"}, "full_name": "finity69x2/toggle-control-button-row", "category": "plugin", "description": "A one-button control row for any Home Assistant binary entity", "domain": "", "etag_repository": "W/\"d32cd1457ddb093795891da28d052dddf9d97deb33671ad9680cfa18a097f3cd\"", "last_updated": "2022-06-29T15:21:52Z", "stargazers_count": 11, "topics": ["button", "toggle"], "last_fetched": 1656859551.411322, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "358962656": {"repository_manifest": {"name": "Notify Card", "content_in_root": true, "filename": "notify-card.js", "render_readme": true}, "full_name": "bernikr/lovelace-notify-card", "category": "plugin", "description": "Send notifications directly from the dashboard", "domain": "", "etag_repository": "W/\"35efd73706133474459df7946db5464661baa6cc72ad4e42b81b41ebb92830a7\"", "last_updated": "2022-09-08T09:05:44Z", "stargazers_count": 22, "topics": ["card", "notification", "notifications", "notify", "service"], "last_fetched": 1671385306.993725, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "351472550": {"repository_manifest": {"name": "Multiline Entity Card", "render_readme": true, "filename": "multiline-entity-card.js"}, "full_name": "jampez77/Multiline-Entity-Card", "category": "plugin", "description": "A custom entity card for Home Assistant that allows text to span multiple lines.", "domain": "", "etag_repository": "W/\"90fbd35513b3eabc5a4701adfefe074431fd7cda68c638cacd43f3db3e9d550b\"", "last_updated": "2022-04-11T09:27:19Z", "stargazers_count": 13, "topics": ["automation"], "last_fetched": 1671385381.791379, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229140999": {"repository_manifest": {"name": "go-eCharger", "render_readme": true}, "full_name": "cathiele/homeassistant-goecharger", "authors": ["@cathiele"], "category": "integration", "description": "Home Assistant custom_component for controlling the go-eCharger EV-Charger", "domain": "goecharger", "etag_repository": "W/\"7da3dbf886063dec7c21894df14d7c81125c8a6dcb226ba58b009bd09d45099f\"", "last_updated": "2023-01-03T18:15:10Z", "stargazers_count": 66, "topics": ["charger", "component", "custom", "go-echarger"], "last_fetched": 1674377860.226719, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "345753205": {"repository_manifest": {"name": "Fan Percent Button Row", "filename": "fan-percent-button-row.js"}, "full_name": "finity69x2/fan-percent-button-row", "category": "plugin", "description": "Frontend plugin to control fans in Home Assistant using percent values for speeds", "domain": "", "etag_repository": "W/\"29ce8da2f97652a12e807c407632cce4be1e214a3fa61258cb621726617289b7\"", "last_updated": "2022-05-24T08:54:58Z", "stargazers_count": 20, "topics": ["assistant", "fan", "home", "percent", "speed"], "last_fetched": 1674378328.977242, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "343112953": {"repository_manifest": {"name": "Kodi Search Card", "render_readme": true, "filename": "kodi-search-card.js"}, "full_name": "jtbgroup/kodi-search-card", "category": "plugin", "description": "Custom card for home assistant allowing to search in the libraries of kodi", "domain": "", "downloads": 318, "etag_repository": "W/\"5053e4e19c0062839407e0799ee0e54a0feafca8c075c698acbb7b04697a54d4\"", "last_updated": "2023-01-08T10:29:06Z", "stargazers_count": 9, "topics": ["kodi", "kodi-media-sensors"], "last_fetched": 1674378358.27668, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "350622451": {"repository_manifest": {"name": "\u017badnego Ale", "homeassistant": "2022.8.0", "zip_release": true, "filename": "zadnego_ale.zip", "country": "PL"}, "full_name": "bieniu/ha-zadnego-ale", "authors": ["@bieniu"], "category": "integration", "description": "\u017badnego Ale allergen concentration custom integration", "domain": "zadnego_ale", "downloads": 347, "etag_repository": "W/\"5e96daad5d59803e934ba231eaff972902cb3389ed1919a956245ce0ae746c60\"", "last_updated": "2022-10-03T04:39:47Z", "stargazers_count": 14, "topics": ["allergen", "allergy"], "last_fetched": 1665325423.482539, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "330645002": {"repository_manifest": {"name": "Danfoss Ally", "render_readme": true, "homeassistant": "2022.1.0", "zip_release": true, "filename": "danfoss_ally.zip"}, "full_name": "MTrab/danfoss_ally", "authors": ["@MTrab"], "category": "integration", "description": "Danfoss Ally intragration for Home Assistant", "domain": "danfoss_ally", "downloads": 216, "etag_repository": "W/\"b8e145bdffd31da2678eb3c0e88ecfd9fe96ac20c5de6dde80adccc4cf9bda45\"", "last_updated": "2023-01-13T18:08:47Z", "stargazers_count": 19, "topics": ["climate", "homeassistant-custom-component", "thermostat"], "last_fetched": 1674378101.924077, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356053801": {"repository_manifest": {"name": "IMA Protect Alarm"}, "full_name": "pcourbin/imaprotect", "authors": ["@pcourbin"], "category": "integration", "description": "Home Assistant custom component for IMA Protect Alarm", "domain": "imaprotect", "etag_repository": "W/\"dc0baf44204d9f561696781274aa32382f7375e0d1b743056eaf071bb4e0c90f\"", "last_updated": "2022-10-07T05:35:28Z", "stargazers_count": 1, "topics": ["alarm"], "last_fetched": 1665325694.827757, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "354924085": {"repository_manifest": {"name": "Svenska Trygghetslosningar", "render_readme": true, "country": ["SE"]}, "full_name": "gjohansson-ST/stl", "authors": ["@gjohansson-ST"], "category": "integration", "description": "Svenska Trygghetsl\u00f6sningar - Home Assistant", "domain": "stl", "etag_repository": "W/\"7d35e1269f9d75bfa751d4953e42ea31584b813c877c8d8eaa49047b20716560\"", "last_updated": "2021-12-19T15:21:38Z", "stargazers_count": 1, "topics": ["alarm", "stl"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "358505160": {"repository_manifest": {"name": "Weenect", "hacs": "1.6.0", "homeassistant": "2021.12.0"}, "full_name": "eifinger/hass-weenect", "authors": ["@eifinger"], "category": "integration", "description": "Homeassistant integration for weenect", "domain": "weenect", "etag_repository": "W/\"38d3bcccbd7331c25b27f3c49e7db3ba8017990d8f9359197dd017009c5eede9\"", "last_updated": "2023-01-18T06:05:46Z", "stargazers_count": 2, "topics": ["weenect"], "last_fetched": 1674377934.202901, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "357338258": {"repository_manifest": {"name": "Temperature Feels Like", "hacs": "1.6.0", "homeassistant": "2022.6.0"}, "full_name": "Limych/ha-temperature-feels-like", "authors": ["@Limych"], "category": "integration", "description": "Sensor of Temperature Feels Like for Home Assistant.", "domain": "temperature_feels_like", "downloads": 24, "etag_repository": "W/\"e4a2bbfcb66a76dbed2fd0646c38ae0429d4c4b3e01aa711ae8e0c2ce7207ffb\"", "last_updated": "2022-12-20T09:29:46Z", "stargazers_count": 60, "topics": ["home-assistant-climate", "home-assistant-component", "home-assistant-temperature", "home-assistant-weather"], "last_fetched": 1672948231.757106, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299753146": {"repository_manifest": {"name": "Xiaomi Cloud Map Extractor", "render_readme": true, "zip_release": true, "filename": "xiaomi_cloud_map_extractor.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Xiaomi-Cloud-Map-Extractor", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This custom integration provides a way to present a live view of a map for Xiaomi (Roborock/Viomi/Roidmi/Dreame) vacuums without a need for rooting.", "domain": "xiaomi_cloud_map_extractor", "downloads": 34339, "etag_repository": "W/\"21c5b7d1133d119d4bdc98908203ce6ba4a555c773d2548157f79e5f3b6f3a30\"", "last_updated": "2023-01-11T09:09:23Z", "stargazers_count": 865, "topics": ["cloud", "dreame", "map", "roborock", "robot", "roidmi", "vacuum", "vacuum-map", "viomi", "xiaomi", "xiaomi-smart-home", "xiaomi-vacuum"], "last_fetched": 1674378139.104347, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "358585486": {"repository_manifest": {"name": "Multiscrape", "hacs": "1.6.0", "homeassistant": "2021.9.0", "render_readme": true}, "full_name": "danieldotnl/ha-multiscrape", "authors": ["@danieldotnl"], "category": "integration", "description": "Home Assistant custom component for scraping (html, xml or json) multiple values (from a single HTTP request) with a separate sensor/attribute for each value. Support for (login) form-submit functionality.", "domain": "multiscrape", "etag_repository": "W/\"4cb54b11a9adf239ffc299e1ebdf9547e9d1812f92d2435f63db27b18d0f558b\"", "last_updated": "2023-01-08T09:38:18Z", "stargazers_count": 124, "topics": ["rest", "scrape", "scraper", "scraping"], "last_fetched": 1674377900.038725, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264415552": {"repository_manifest": {"name": "Hive Custom Component", "render_readme": true}, "full_name": "Pyhass/Hive-Custom-Component", "authors": ["@Rendili", "@KJonline"], "category": "integration", "description": "A custom version of the home assistant hive component", "domain": "hive", "etag_repository": "W/\"98d337cfaf4576fc4f4d6d067f187873f03ae6ade61e3ee3a4943b731da7d58c\"", "last_updated": "2022-10-03T11:45:59Z", "stargazers_count": 30, "topics": ["hive"], "last_fetched": 1665939012.11562, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "352399227": {"repository_manifest": {"name": "KNX User Forum Icon Set", "render_readme": true, "homeassistant": "2021.10"}, "full_name": "mampfes/ha-knx-uf-iconset", "category": "plugin", "description": "Icon set from KNX User Forum for Home Assistant. The icon set contains more than 900 icons for home automation.", "domain": "", "etag_repository": "W/\"fb25fcae85ccad0837b860974e36a964f8cdc4364b9a113d509068e6afbc2f77\"", "last_updated": "2021-12-15T18:26:29Z", "stargazers_count": 5, "topics": ["icons", "iconset"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "308752409": {"repository_manifest": {"name": "Charger Card", "render_readme": true, "filename": "charger-card.js"}, "full_name": "tmjo/charger-card", "category": "plugin", "description": "A lovelace card for electrical vehicle (EV) home chargers and charging robots.", "domain": "", "downloads": 1302, "etag_repository": "W/\"e0502aeb0b953d10ae22abf9aa71e0a9d22bfbf16a8ce9e2470695b5d386f818\"", "last_updated": "2022-11-05T18:36:43Z", "stargazers_count": 57, "topics": ["charger", "charging-robot", "easee", "elbil", "electric-vehicle", "evcharger"], "last_fetched": 1671387207.621923, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356725611": {"repository_manifest": {"name": "Wavin Sentio", "render_readme": true}, "full_name": "djerik/wavinsentio-ha", "authors": ["@djerik"], "category": "integration", "description": "Home Assistant component for monitoring and administration of Wavin Sentio underfloor heating system", "domain": "wavinsentio", "etag_repository": "W/\"2e460a63817049b6e2a4855112d2dfc862958672f34e981fd50f40d764e9589f\"", "last_updated": "2022-04-03T12:20:43Z", "stargazers_count": 11, "topics": ["sentio", "wavin"], "last_fetched": 1672948081.586092, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362214884": {"repository_manifest": {"name": "Redfin", "homeassistant": "2021.6.0"}, "full_name": "dreed47/redfin", "authors": ["@dreed47"], "category": "integration", "description": "Redfin property estimate Sensor for Home Assistant", "domain": "redfin", "etag_repository": "W/\"54e275d120226c5fbb8a74ecda28ccd1bec065a4076754594c5b6d618eabcf87\"", "last_updated": "2022-11-20T18:08:49Z", "stargazers_count": 11, "topics": ["real-estate", "redfin"], "last_fetched": 1674377924.049395, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "357930725": {"repository_manifest": {"name": "Shinobi Video NVR", "homeassistant": "2022.11.0"}, "full_name": "elad-bar/ha-shinobi", "authors": ["@elad-bar"], "category": "integration", "description": "Shinobi Video custom component for HA", "domain": "shinobi", "etag_repository": "W/\"7cda4c48e65dba9376624869a557caf5cb0322547413fd09939c376e4f5c2216\"", "last_updated": "2022-12-10T14:03:00Z", "stargazers_count": 40, "topics": ["shinobi"], "last_fetched": 1671384954.505164, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "312080478": {"repository_manifest": {"name": "govee", "hacs": "0.2.2", "homeassistant": "2021.4.5"}, "full_name": "LaggAt/hacs-govee", "authors": ["@LaggAt"], "category": "integration", "description": "A HACS repository for Govee light integration", "domain": "govee", "etag_repository": "W/\"411f7ed1e04656c64c0c9adb7327849517aef4729178eb3660456d65eac445db\"", "last_updated": "2023-01-12T17:58:13Z", "stargazers_count": 161, "topics": ["devcontainer", "govee", "light"], "last_fetched": 1674378052.62837, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279538782": {"repository_manifest": {"name": "Ecodevices RT2"}, "full_name": "pcourbin/ecodevices_rt2", "authors": ["@pcourbin"], "category": "integration", "description": "Home Assistant custom component for GCE Ecodevices RT2", "domain": "ecodevices_rt2", "etag_repository": "W/\"2072daeb6c19295ef88aaacdd6932acdcd82c82f20bd372f6989b3c0a72bc0e3\"", "last_updated": "2023-01-20T09:02:42Z", "stargazers_count": 2, "last_fetched": 1674378125.822925, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "342427139": {"repository_manifest": {"name": "openHASP", "hacs": "1.7.1", "homeassistant": "2022.4.0"}, "full_name": "HASwitchPlate/openHASP-custom-component", "authors": ["@dgomes"], "category": "integration", "description": "Home Assistant custom component for openHASP", "domain": "openhasp", "etag_repository": "W/\"36fe14b4eb6cb2666ca5ddc04823b68d48f9e16f98196c468d09b3b72cd8805b\"", "last_updated": "2022-10-12T14:28:15Z", "stargazers_count": 31, "topics": ["openhasp"], "last_fetched": 1672948149.859976, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "363468409": {"repository_manifest": {"name": "RedPocket Mobile", "render_readme": true}, "full_name": "mbillow/ha-redpocket", "authors": ["@mbillow"], "category": "integration", "description": "RedPocket Integration for Data Usage Monitoring", "domain": "redpocket", "etag_repository": "W/\"ce7413940602c45623e9e7ea57b9585bd5b1ca0f6cf224244632c2685135840e\"", "last_updated": "2021-06-06T19:51:29Z", "stargazers_count": 2, "topics": ["home", "mvno", "redpocket"], "last_fetched": 1661585203.417759, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356778495": {"repository_manifest": {"name": "WebRTC Camera", "render_readme": true}, "full_name": "AlexxIT/WebRTC", "authors": ["@AlexxIT"], "category": "integration", "description": "Home Assistant custom component for viewing almost any camera stream in real time using WebRTC and other technologies.", "domain": "webrtc", "etag_repository": "W/\"225d693d5512ef2602e12728e6fb0a7371363a714be7c2c6c637b02b0a95602b\"", "last_updated": "2023-01-20T14:49:42Z", "stargazers_count": 766, "topics": ["ip-camera", "mediasource-extensions", "rtsp", "webrtc"], "last_fetched": 1674377801.767839, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356827073": {"repository_manifest": {"name": "OpenRGB", "render_readme": true}, "full_name": "koying/openrgb_ha", "authors": ["@bahorn", "@koying"], "category": "integration", "description": "OpenRGB integration for Home Assistant", "domain": "openrgb", "etag_repository": "W/\"3436b8eafca697b3e177467e3b1e6538a6b444afc7d698eb9a0418afb161747c\"", "last_updated": "2022-06-18T12:53:49Z", "stargazers_count": 62, "topics": ["light", "openrgb"], "last_fetched": 1674378046.038236, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "341500126": {"repository_manifest": {"name": "Meross LAN", "render_readme": true, "country": ["IT", "GB", "US", "JP", "ES", "FR", "DE"], "homeassistant": "2022.1.0", "persistent_directory": "traces", "hacs": "1.6.0"}, "full_name": "krahabb/meross_lan", "authors": ["@krahabb"], "category": "integration", "description": "Home Assistant integration for Meross devices", "domain": "meross_lan", "etag_repository": "W/\"b00086bbcd1268db70eee967845b961c29bacd5c37995dbc5b05ef42d7eae5a6\"", "last_updated": "2023-01-21T18:10:13Z", "stargazers_count": 200, "topics": ["meross", "meross-devices", "meross-homeassistant", "meross-lan"], "last_fetched": 1674378048.690528, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236572107": {"repository_manifest": {"name": "Yandex.Station", "render_readme": true, "country": "RU"}, "full_name": "AlexxIT/YandexStation", "authors": ["@AlexxIT"], "category": "integration", "description": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u042f\u043d\u0434\u0435\u043a\u0441.\u0421\u0442\u0430\u043d\u0446\u0438\u0435\u0439 \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0430\u043c\u0438 \u0441 \u0410\u043b\u0438\u0441\u043e\u0439 \u0438\u0437 Home Assistant", "domain": "yandex_station", "etag_repository": "W/\"d132e4fec0b773b0675945eaec08fbfee56f0dc610537296344038ebb639e41c\"", "last_updated": "2022-12-22T18:46:50Z", "stargazers_count": 869, "topics": ["tts", "yandex-station"], "last_fetched": 1674377801.939499, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "365567023": {"repository_manifest": {"name": "Nuvo multi-zone amplifier (serial)", "render_readme": true, "country": ["EN"], "homeassistant": "2021.10.0", "zip_release": true, "filename": "nuvo_serial.zip"}, "full_name": "sprocket-9/hacs-nuvo-serial", "authors": ["@sprocket-9"], "category": "integration", "description": "Custom component to control a Nuvo Grand Concerto/Essentia G multi-zone amplifier via serial connection", "domain": "nuvo_serial", "etag_repository": "W/\"fc7b8bb77829420e8e165a1a2e58a1473701b49724c2a82d9473f15410e5c18f\"", "last_updated": "2021-11-25T18:10:21Z", "stargazers_count": 2, "topics": ["home-assistant-component", "home-assistant-integration"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "353966616": {"repository_manifest": {"name": "OpenWeatherMap All", "country": "GR", "homeassistant": "core-2021.3.4", "render_readme": true}, "full_name": "viktak/ha-cc-openweathermap_all", "authors": ["@viktak"], "category": "integration", "description": "Home Assistant custom component combining multiple OpenWeatherMap API calls", "domain": "openweathermap_all", "etag_repository": "W/\"830d3e2eb8a9780c5072df30558ea91b64b8fbd2fa5b0a91dee3f81f6052f371\"", "last_updated": "2023-01-16T08:26:19Z", "stargazers_count": 18, "topics": ["openweathermap"], "last_fetched": 1674378247.263022, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "354887961": {"repository_manifest": {"name": "Abalin Name Day", "country": "GR", "homeassistant": "core-2021.4.0", "render_readme": true}, "full_name": "viktak/ha-cc-abalin-nameday", "authors": ["@viktak"], "category": "integration", "description": "Home Assistant custom component for the abalin name day API", "domain": "abalin_nameday", "etag_repository": "W/\"596b1fb78d314a62b50fd9a670b6b9f809522f6936b886f314721e91e3ec50fd\"", "last_updated": "2022-02-24T10:30:22Z", "stargazers_count": 5, "topics": ["namedays"], "last_fetched": 1671274786.418849, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366862031": {"repository_manifest": {"name": "Custom brand icons"}, "full_name": "elax46/custom-brand-icons", "category": "plugin", "description": "Custom brand icons for Home Assistant", "domain": "", "etag_repository": "W/\"d855192b689393a152254571e7020754f2a59bd80192710ca6429c90145cfb73\"", "last_updated": "2023-01-20T12:28:54Z", "stargazers_count": 211, "topics": ["custom-icons", "icons", "icons-pack", "iconset", "ikea", "philips-hue", "xiaomi"], "last_fetched": 1674378321.887736, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "361205663": {"repository_manifest": {"name": "Meteoalarm Card", "render_readme": true, "filename": "meteoalarm-card.js"}, "full_name": "MrBartusek/MeteoalarmCard", "category": "plugin", "description": "Meteoalarm, M\u00e9t\u00e9o-France and DWD severe weather warnings card for Home Assistant Lovelace UI \u26c8\ufe0f", "domain": "", "downloads": 1723, "etag_repository": "W/\"0c73b1f4614a3c58b796c8f0d66c499bc9aca98121f9bd8f5310d32b79a2a91a\"", "last_updated": "2023-01-21T19:05:40Z", "stargazers_count": 56, "topics": ["deutscher-wetterdienst", "dwd", "lovelace-card", "meteo-france", "meteoalarm", "meteoalarmeu", "nina", "nws", "weather"], "last_fetched": 1674378387.872669, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "350886220": {"repository_manifest": {"name": "Fan Mode Button Row", "filename": "fan-mode-button-row.js"}, "full_name": "finity69x2/fan-mode-button-row", "category": "plugin", "description": "Frontend plugin to control fans in Home Assistant using preset modes for speeds", "domain": "", "etag_repository": "W/\"3ae953cb3c7b92d09a958d1f106a57ddc165cdc345c2bb6213cc6cd4816f9a13\"", "last_updated": "2022-03-25T18:34:55Z", "stargazers_count": 9, "topics": ["fan", "preset"], "last_fetched": 1672947849.714185, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "363428919": {"repository_manifest": {"name": "Plex Meets Home Assistant", "render_readme": true, "filename": "plex-meets-homeassistant.js"}, "full_name": "JurajNyiri/PlexMeetsHomeAssistant", "category": "plugin", "description": "Custom card which integrates plex into Home Assistant and makes it possible to launch movies or tv shows on TV with a simple click", "domain": "", "etag_repository": "W/\"b2fe8910edbca6e0587858321e0de11c9817030f7976a16cd72766c9ed819c98\"", "last_updated": "2022-03-23T18:42:53Z", "stargazers_count": 72, "topics": ["adb", "androidtv", "hacktoberfest2021", "homeassistant-custom-component", "kodi", "plex", "plexmediaserver", "tv"], "last_fetched": 1674378359.148386, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "348464316": {"repository_manifest": {"name": "Magic Switchbot", "render_readme": true, "homeassistant": "2022.9.1"}, "full_name": "ec-blaster/magicswitchbot-homeassistant", "authors": ["@ec-blaster"], "category": "integration", "description": "Magic Switchbot integration component for Home Assistant", "domain": "magicswitchbot", "etag_repository": "W/\"60bdaa7cccd6c44727a59463bf1ab96451679e4b4f2429263abe6cf8dd7f368e\"", "last_updated": "2022-10-08T15:57:58Z", "stargazers_count": 14, "topics": ["magicswitchbot", "switches"], "last_fetched": 1665325512.917018, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "282509738": {"repository_manifest": {"name": "OVH DynHost", "render_readme": true}, "full_name": "GuilleGF/hassio-ovh", "authors": ["@GuilleGF"], "category": "integration", "description": "OVH DynHost Updater Component for https://www.home-assistant.io/", "domain": "ovh", "etag_repository": "W/\"3c5fa8eb9691fedd4538c75474d43e29717220ae8b56804fda862c1c95228d96\"", "last_updated": "2022-06-03T04:28:24Z", "stargazers_count": 15, "topics": ["ddns", "ddns-updater", "ovh", "ovh-dynhost"], "last_fetched": 1656859196.004128, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "305188358": {"repository_manifest": {"name": "Heatmiser Wifi", "render_readme": true}, "full_name": "midstar/heatmiser_wifi_ha", "authors": ["@midstar"], "category": "integration", "description": "Heatmiser Wifi Home Assistant Component", "domain": "heatmiser_wifi", "etag_repository": "W/\"c44fc0fdf4623900ed3fc19ec6a49a01d9896adec3625ea853cd172416158cd9\"", "last_updated": "2022-05-12T14:24:49Z", "stargazers_count": 3, "topics": ["climate", "heatmiser", "homeassisant", "thermostat", "wifi"], "last_fetched": 1653229826.324691, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "364208180": {"repository_manifest": {"name": "Jellyfin", "render_readme": true}, "full_name": "koying/jellyfin_ha", "authors": ["@koying"], "category": "integration", "description": "Jellyfin integration for Home Assistant", "domain": "jellyfin", "etag_repository": "W/\"8e426a353504682e55b8d6bcd22f6d6d332547d84ffe687359bfede56b1836d8\"", "last_updated": "2022-10-22T14:54:07Z", "stargazers_count": 71, "topics": ["jellyfin"], "last_fetched": 1674378045.587869, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "347985393": {"repository_manifest": {"name": "Emulated color temp light", "render_readme": true}, "full_name": "Mr-Groch/HA-Emulated-Color-Temp-Light", "authors": ["@Mr-Groch"], "category": "integration", "description": "Emulate SUPPORT_COLOR_TEMP for color lights that doesn't support color temp (like some Ikea Tradfri bulbs) - Home Assistant component", "domain": "emulated_color_temp", "etag_repository": "W/\"7c1358efc9ec8467ab776a4d259d27f8b5c59af6fc5f5fd8624ce845bd14ddf7\"", "last_updated": "2022-08-18T21:25:51Z", "stargazers_count": 6, "topics": ["color-lights", "color-temperature", "ct", "ikea-tradfri-bulbs", "light"], "last_fetched": 1666451433.260146, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "311594993": {"repository_manifest": {"name": "Presence Simulation", "render_readme": true}, "full_name": "slashback100/presence_simulation", "authors": ["@slashback100"], "category": "integration", "description": "Home Assistant Presence Simulation", "domain": "presence_simulation", "etag_repository": "W/\"53fec2935bac4da19684c2a5d8e7dfc098e3b6d203f967b69dd14eb61d8df401\"", "last_updated": "2023-01-10T14:53:12Z", "stargazers_count": 170, "topics": ["historic", "presence", "presence-simulation", "simulation"], "last_fetched": 1674378193.426972, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356030453": {"repository_manifest": {"name": "remote_syslog", "country": "US", "homeassistant": "2021.3.4", "render_readme": true}, "full_name": "TheByteStuff/RemoteSyslog_Service", "authors": ["@thebytestuff"], "category": "integration", "description": "Home Assistant Custom Component - send Syslog message to remote server.", "domain": "remote_syslog", "etag_repository": "W/\"e86fcb6a5f3ed1599b6e0f4bcfba2fdd3595a453504cf2f4fff9d9cfc6c5c627\"", "last_updated": "2022-05-26T16:18:39Z", "stargazers_count": 9, "topics": ["syslog", "syslog-client"], "last_fetched": 1665325773.907827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "351828005": {"repository_manifest": {"name": "Dahua VTO", "render_readme": true}, "full_name": "myhomeiot/DahuaVTO", "authors": ["@myhomeiot"], "category": "integration", "description": "Control Dahua VTO/VTH devices from Home Assistant", "domain": "dahua_vto", "etag_repository": "W/\"184925c42778c1cd66b7bf88cc101f092a684a5e5a83be80013ed716fcb42131\"", "last_updated": "2022-12-29T21:38:09Z", "stargazers_count": 89, "topics": ["dahua"], "last_fetched": 1674378108.133306, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362513331": {"repository_manifest": {"name": "Technicolor", "render_readme": true}, "full_name": "shaiu/technicolor", "authors": ["@shaiu"], "category": "integration", "description": "This is an integration for HomeAssistant. It's a Device Tracker component for the Technicolor Gateway.", "domain": "technicolor", "etag_repository": "W/\"cb7a993cdda28c163f750fa16653c42a7c5e65f10606c6383500a8ec451bf28f\"", "last_updated": "2022-06-21T17:09:19Z", "stargazers_count": 5, "last_fetched": 1656859377.783594, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366482637": {"repository_manifest": {"name": "Sun Card", "render_readme": true, "filename": "home-assistant-sun-card.js"}, "full_name": "AitorDB/home-assistant-sun-card", "category": "plugin", "description": "Home assistant sun card based on Google weather design", "domain": "", "downloads": 52868, "etag_repository": "W/\"52731cbbb0f1cc3f6f231a0c74f81d566dd08e2ee7ab241304add524f9949ba3\"", "last_updated": "2022-12-22T23:38:54Z", "stargazers_count": 346, "topics": ["sun", "sun-card"], "last_fetched": 1674378270.372455, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340596609": {"repository_manifest": {"name": "Panasonic Smart App"}, "full_name": "osk2/panasonic_smart_app", "authors": ["@osk2"], "category": "integration", "description": "\ud83d\udd1b Panasonic Smart App integration for Home Assistant.", "domain": "panasonic_smart_app", "etag_repository": "W/\"ccaaaaef97623defe7d70297bd57ae898810f384e7d1fc147f85b374a7e5c2a2\"", "last_updated": "2022-12-24T14:34:39Z", "stargazers_count": 44, "topics": ["panasonic"], "last_fetched": 1672948289.081007, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362145464": {"repository_manifest": {"name": "Multizone Controller", "render_readme": true}, "full_name": "Petro31/ha-integration-multizone-controller", "authors": ["@Petro31"], "category": "integration", "description": "Integration that creates a multi-zone volume controller for media_players in Home Assistant", "domain": "multizone_controller", "etag_repository": "W/\"6a30d3ba559c236ce977fa2984f717a69224833b77bffefcf53700508299bf93\"", "last_updated": "2021-06-09T21:34:52Z", "stargazers_count": 12, "topics": ["media-players", "multizone-controller", "volume-increment", "zone-volume"], "last_fetched": 1671385148.44239, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "370997019": {"repository_manifest": {"name": "WebOS Keyboard Card", "content_in_root": true, "filename": "webos-keyboard-card.js", "render_readme": true}, "full_name": "bernikr/lovelace-webos-keyboard-card", "category": "plugin", "description": "Type on your WebOS TV using this lovelace card", "domain": "", "etag_repository": "W/\"8fa3e87739397ab0cb94b83b0b20d26ee836657b9ff3ca5be84347b06732e3c3\"", "last_updated": "2021-12-17T14:54:58Z", "stargazers_count": 4, "topics": ["card", "input-method", "keyboard", "remote", "webos"], "last_fetched": 1656859507.326682, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "361776538": {"repository_manifest": {"name": "Your HA Digital Twin floor3d-card", "render_readme": true}, "full_name": "adizanni/floor3d-card", "category": "plugin", "description": "Your Home Digital Twin: aka floor3d-card. Visualize Home Assistant state and perform actions using objects in a 3D home model based on Three.js.", "domain": "", "downloads": 1691, "etag_repository": "W/\"88633839b5f252b3cce46a8d44717c9d6830940c8ffb89b0c2df0da14f46e3d6\"", "last_updated": "2023-01-02T21:20:12Z", "stargazers_count": 287, "topics": ["3d-models", "card", "entity-bindings"], "last_fetched": 1674378270.41797, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373832981": {"repository_manifest": {"name": "Digital Clock", "render_readme": true}, "full_name": "wassy92x/lovelace-digital-clock", "category": "plugin", "description": "A custom digital clock card for Home Assistant", "domain": "", "downloads": 17389, "etag_repository": "W/\"b5e0222b330785c89e41f4585f1ca4a1d45ea4b046f0fb231cc01cb6823b1b21\"", "last_updated": "2022-11-17T21:58:04Z", "stargazers_count": 33, "topics": ["lovelace-card"], "last_fetched": 1674378434.26337, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "329411371": {"repository_manifest": {"name": "HA Dashboard", "render_readme": true}, "full_name": "wassy92x/lovelace-ha-dashboard", "category": "plugin", "description": "A custom dashboard for Home Assistant with sidebar", "domain": "", "downloads": 4838, "etag_repository": "W/\"0488f3bf30b85e645aa85dacb6bb7a520e7e57af23063ab20c52c13d75cd6075\"", "last_updated": "2022-05-15T20:59:27Z", "stargazers_count": 16, "last_fetched": 1671387209.028747, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373857882": {"repository_manifest": {"name": "Entities Button Group", "render_readme": true}, "full_name": "wassy92x/lovelace-entities-btn-group", "category": "plugin", "description": "A custom card for Home Assistant to group multiple buttons", "domain": "", "downloads": 3631, "etag_repository": "W/\"8edc0862e19ad207cf560f3058f7cd9925a40d84f1649670ef742e508ef65274\"", "last_updated": "2022-05-15T20:59:52Z", "stargazers_count": 8, "topics": ["lovelace-card"], "last_fetched": 1661584926.126935, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366911690": {"repository_manifest": {"name": "Dahua", "hacs": "1.6.0", "homeassistant": "2021.7.0", "render_readme": true}, "full_name": "rroller/dahua", "authors": ["@rroller"], "category": "integration", "description": "Dahua Camera and Doorbell Home Assistant Integration", "domain": "dahua", "etag_repository": "W/\"69d16e5b12c183e9dc1a2b55a563fe79dceac8591a5efe691e05a3e58535d1cb\"", "last_updated": "2022-12-08T19:36:31Z", "stargazers_count": 223, "topics": ["amcrest", "camera", "dahua", "doorbell", "ipcam", "lorex"], "last_fetched": 1674378164.346047, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "361961255": {"repository_manifest": {"name": "Metlink Wellington Transport", "render_readme": true, "country": "NZ", "homeassistant": "2022.3.0"}, "full_name": "make-all/metlink-nz", "authors": ["@make-all"], "category": "integration", "description": "Metlink Wellington Public Transport integration for Home Assistant", "domain": "metlink", "etag_repository": "W/\"807a85dc3c187d0ba3ee8d8a13fd85a208e1a1f2763037983fdd2c2498c8ee63\"", "last_updated": "2022-07-07T04:11:21Z", "stargazers_count": 4, "topics": ["metlink", "metlink-api", "transport", "wellington"], "last_fetched": 1666451415.333559, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "371474642": {"repository_manifest": {"name": "consul", "render_readme": "true"}, "full_name": "gtjadsonsantos/consul", "authors": ["@jadson179"], "category": "integration", "description": "home-assistant service for control the consul \ud83d\udd34", "domain": "consul", "etag_repository": "W/\"cea67b14313de4745a9c86edcd69c10e756a1f66b644d94726c52c5311331b3c\"", "last_updated": "2021-10-09T12:30:45Z", "stargazers_count": 3, "topics": ["consul"], "last_fetched": 1672948171.273764, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373370853": {"repository_manifest": {"name": "Helium Blockchain", "render_readme": true}, "full_name": "rsnodgrass/hass-helium", "authors": ["@rsnodgrass"], "category": "integration", "description": "Helium blockchain sensors for Home Assistant", "domain": "helium", "etag_repository": "W/\"a057204f44ebfd295e79df8447f5de72c3766d6e44022bf928ec8b2cdf214e37\"", "last_updated": "2022-11-11T01:20:27Z", "stargazers_count": 34, "topics": ["helium", "helium-blockchain", "lorawan", "lorawan-network"], "last_fetched": 1672948336.351666, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269205129": {"repository_manifest": {"name": "VIMAR By-Me Hub", "render_readme": true, "homeassistant": "2021.12.0"}, "full_name": "h4de5/home-assistant-vimar", "authors": ["@h4de5"], "category": "integration", "description": "VIMAR by-me integration into home-assistant.io", "domain": "vimar", "etag_repository": "W/\"ae5bfabac5001b3b261661a8fa50e23168e99dd981b77e0f846069041d6cf947\"", "last_updated": "2023-01-12T00:22:50Z", "stargazers_count": 36, "topics": ["vimar", "vimar-platform"], "last_fetched": 1674377977.645689, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "372058588": {"repository_manifest": {"name": "MET Alerts Hungary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/met_alerts_hu", "authors": ["@amaximus"], "category": "integration", "description": "Meteo alerts for Hungary", "domain": "met_alerts_hu", "downloads": 2, "etag_repository": "W/\"00d4329442c749443dd31313d39904e2679466f4080fe70398836aa07047be19\"", "last_updated": "2022-06-03T06:24:21Z", "stargazers_count": 9, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1671384820.848693, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "354515979": {"repository_manifest": {"name": "Philips Ambilight+Hue Switch", "render_readme": true}, "full_name": "Mr-Groch/ambihue", "authors": ["@jomwells", "@Mr-Groch"], "category": "integration", "description": "ON/OFF Abilight+Hue (Switch) component for Philips Ambilight TV's", "domain": "philips_ambilight+hue", "etag_repository": "W/\"c604e923b891bb6e70c748b65eaabf025e994b717ca266bb089a6589f229a2ec\"", "last_updated": "2022-03-18T19:31:20Z", "stargazers_count": 12, "topics": ["ambilight", "philips-hue"], "last_fetched": 1648400046.663151, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259867685": {"repository_manifest": {"name": "Swedish Public Transport Sensor (HASL)", "country": "SE", "homeassistant": "2021.12.0"}, "full_name": "hasl-sensor/integration", "authors": ["@DSorlov"], "category": "integration", "description": "Swedish Public Transport Sensor (HASL). Formerly named HomeAssistant SL Sensor", "domain": "hasl3", "etag_repository": "W/\"1e058aa2b82ccf42ce4da7cdcf36522917efc60cbfdc1149a69e250f59ddc29e\"", "last_updated": "2022-09-10T08:11:00Z", "stargazers_count": 25, "topics": ["ha-sensor-sl", "hasl", "hasl3", "haslv3", "sl-sensor", "stockholms-lokaltrafik"], "last_fetched": 1674377978.801634, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "295123287": {"repository_manifest": {"name": "Jewish Sabbaths Holidays / sensor", "render_readme": true}, "full_name": "rt400/Jewish-Sabbaths-Holidays", "authors": ["@yuval_mejahez"], "category": "integration", "description": "Jewish Shabbat Yomtov and Holidays times and event", "domain": "hebcal", "etag_repository": "W/\"04fb3cfea628d87d6d52667307a44c0cf0dc3b3bf751e912508bb313d74ddfc4\"", "last_updated": "2022-10-05T20:03:04Z", "stargazers_count": 10, "topics": ["holidays", "jewish", "shabbat"], "last_fetched": 1665325736.682983, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "134057086": {"repository_manifest": {"name": "Xiaomi Mi Electric Rice Cooker Integration", "render_readme": true}, "full_name": "syssi/xiaomi_cooker", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Electric Rice Cooker integration for Home Assistant", "domain": "xiaomi_miio_cooker", "etag_repository": "W/\"2c26ed10417b6ae8fcd71d67fa373078b65f485bf1d2284cecb476b9f65f4056\"", "last_updated": "2022-11-27T06:37:26Z", "stargazers_count": 117, "topics": ["miio", "miio-protocol", "rice-cooker", "xiaomi", "xiaomi-cooker"], "last_fetched": 1674378205.995314, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "129049262": {"repository_manifest": {"name": "Xiaomi Mi Smart Pedestal Fan Integration", "render_readme": true, "homeassistant": "2022.8.0"}, "full_name": "syssi/xiaomi_fan", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Smart Fan integration for Home Assistant", "domain": "xiaomi_miio_fan", "etag_repository": "W/\"a8069e246ac714d7a4b28588c309eab8cd92f711b25d516e4121467f5c58116c\"", "last_updated": "2022-08-15T13:47:04Z", "stargazers_count": 316, "topics": ["fan", "miio", "miio-protocol", "miot", "xiaomi"], "last_fetched": 1674378206.215982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373845609": {"repository_manifest": {"name": "Powercalc", "zip_release": true, "filename": "powercalc.zip", "homeassistant": "2021.11.0"}, "full_name": "bramstroker/homeassistant-powercalc", "authors": ["@bramstroker"], "category": "integration", "description": "Custom component to calculate estimated power consumption of lights and other appliances", "domain": "powercalc", "downloads": 903, "etag_repository": "W/\"d5baa12eab93dc940a1a08ecfb883ba05aec9dc6bc30585089afe77bc6d779b7\"", "last_updated": "2023-01-21T14:37:38Z", "stargazers_count": 593, "topics": ["consumption", "energy-monitor", "hue-lights", "metering", "power"], "last_fetched": 1674377847.035106, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "85400693": {"repository_manifest": {"name": "Padavan Tracker", "render_readme": true}, "full_name": "PaulAnnekov/home-assistant-padavan-tracker", "authors": ["@PaulAnnekov"], "category": "integration", "description": "Device tracker component that uses Padavan-based router", "domain": "padavan_tracker", "etag_repository": "W/\"9c393d48f55e94da6139979905f93062edbdcd00f40d9a52707385854960ed91\"", "last_updated": "2022-05-18T17:01:17Z", "stargazers_count": 42, "topics": ["padavan", "router", "xiaomi"], "last_fetched": 1665325693.9946, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "365332200": {"repository_manifest": {"name": "PiJuice UPS Hat", "render_readme": true, "country": ["EN", "FR"]}, "full_name": "Racailloux/home-assistant-pijuice", "authors": ["@Racailloux"], "category": "integration", "description": "Home Assistant integration to support PiJuice UPS Hat and retrieve values to sensors.", "domain": "pijuice", "etag_repository": "W/\"9e65f46fbb799d6e78f7288ead9d6cec92c4e4720d84988d5408fffbfb8230cd\"", "last_updated": "2022-12-01T20:16:22Z", "stargazers_count": 11, "topics": ["battery", "hat", "integrations", "pijuice", "raspberry-pi", "sensors", "ups", "voltage"], "last_fetched": 1671385167.670963, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151280062": {"repository_manifest": {"name": "mini-graph-card", "render_readme": true}, "full_name": "kalkih/mini-graph-card", "category": "plugin", "description": "Minimalistic graph card for Home Assistant Lovelace UI", "domain": "", "downloads": 128178, "etag_repository": "W/\"55289b0d50257a37dad4d18df1ae38fef1092fe4c4487f9e2d782e1d3d676c9a\"", "last_updated": "2023-01-11T15:54:54Z", "stargazers_count": 2207, "topics": ["automation", "custom", "graph"], "last_fetched": 1674378361.024093, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201740996": {"repository_manifest": {"name": "Generate readme", "zip_release": true, "filename": "readme.zip", "homeassistant": "2021.5.0", "hide_default_branch": true, "render_readme": true, "hacs": "0.19.1"}, "full_name": "custom-components/readme", "authors": ["@ludeeus"], "category": "integration", "description": "Use Jinja and data from Home Assistant to generate your README.md file", "domain": "readme", "downloads": 121, "etag_repository": "W/\"9e5f0cc94ea180d5f7f6a2745a09ede43562dc2a0ced74ee8e4fa5944ad71104\"", "last_updated": "2022-05-28T08:50:23Z", "stargazers_count": 22, "topics": ["automation", "jinja", "readme"], "last_fetched": 1672948045.714993, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "374763546": {"repository_manifest": {"name": "AIMP Media Player", "content_in_root": true, "render_readme": true}, "full_name": "xilense/aimp_custom_component", "authors": ["@xilense"], "category": "integration", "description": "AIMP custom component for \ud83c\udfe0 Home Assistant using web remote", "domain": "aimp", "etag_repository": "W/\"1a9c5c5423e2aa39ffec21ee341f2214d9a90a7bc77bfe9c60cd5533cccb0a09\"", "last_updated": "2021-06-21T18:20:20Z", "stargazers_count": 4, "topics": ["aimp", "internet-of-things", "iot", "iot-automation", "raspberry-pi", "remote-control"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "323152128": {"repository_manifest": {"name": "Crunch-O-Meter", "render_readme": true, "zip_release": true, "filename": "crunch_o_meter.zip"}, "full_name": "GuyLewin/home-assistant-crunch-o-meter", "authors": ["@guylewin"], "category": "integration", "description": "Crunch-O-Meter API as sensors in Home Assistant. See how many people are currently at your local gym", "domain": "crunch_o_meter", "etag_repository": "W/\"02cc653796b8ff504e36be78552319dd9c51adac96f5937bf203895d04237835\"", "last_updated": "2021-06-14T13:06:16Z", "stargazers_count": 1, "topics": ["crunch", "crunch-o-meter"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "376904517": {"repository_manifest": {"name": "Timer Bar Card", "render_readme": true, "filename": "timer-bar-card.js"}, "full_name": "rianadon/timer-bar-card", "category": "plugin", "description": "A progress bar display for Home Assistant timers", "domain": "", "downloads": 4417, "etag_repository": "W/\"52ded55b47472fc2e4b00f6c57f197acd473b411063015c3d97c2fb57b66a19f\"", "last_updated": "2023-01-09T07:02:39Z", "stargazers_count": 143, "last_fetched": 1674378406.928576, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "378256174": {"repository_manifest": {"name": "OpenSprinkler Card", "render_readme": true, "filename": "opensprinkler-card.js"}, "full_name": "rianadon/opensprinkler-card", "category": "plugin", "description": "Home Assistant card for collecting OpenSprinkler status", "domain": "", "downloads": 1013, "etag_repository": "W/\"c4c3b68feed827f742e0938b5b7dad7750efebcd23bf67a05df9d8396fc83c08\"", "last_updated": "2022-11-25T09:22:58Z", "stargazers_count": 48, "topics": ["opensprinkler"], "last_fetched": 1674378406.748995, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307678069": {"repository_manifest": {"name": "Variables+History", "homeassistant": "2022.8.0"}, "full_name": "Wibias/hass-variables", "authors": ["@rogro82", "@wibias"], "category": "integration", "description": "Home Assistant variables component", "domain": "variable", "etag_repository": "W/\"fe57476e16eaf59118147879ff239331a0e4db82cebe22a6889c2a0605759eed\"", "last_updated": "2023-01-21T17:29:21Z", "stargazers_count": 41, "topics": ["counter", "keypad", "last-motion", "timer", "variables"], "last_fetched": 1674378253.109886, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373101151": {"repository_manifest": {"name": "SunSpec", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2021.9.1"}, "full_name": "CJNE/ha-sunspec", "authors": ["@cjne"], "category": "integration", "description": "Home Assistant customcomponent for SunSpec modbus devices", "domain": "sunspec", "etag_repository": "W/\"dee823ab3e00fb2c7d76678f950e47760a38d85393aadc1ad2e80cd5fe9d28d1\"", "last_updated": "2023-01-03T05:03:32Z", "stargazers_count": 32, "topics": ["sunspec"], "last_fetched": 1672948030.35296, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256928191": {"repository_manifest": {"name": "GCE Eco-Devices", "country": "FR", "render_readme": true}, "full_name": "Aohzan/ecodevices", "authors": ["@Aohzan"], "category": "integration", "description": "Home Assistant custom component for GCE Eco-Devices", "domain": "ecodevices", "etag_repository": "W/\"cb9663ff3c4171a494882ad30a915867c170983819793b894ea58beec50bebb6\"", "last_updated": "2023-01-16T11:13:15Z", "stargazers_count": 10, "topics": ["domotique", "eco-devices", "ecodevices", "gce-electronics"], "last_fetched": 1674377818.148106, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "351604227": {"repository_manifest": {"name": "Brandrisk ute", "render_readme": true, "country": ["se"]}, "full_name": "Sha-Darim/brandriskute", "authors": ["@Sha-Darim"], "category": "integration", "description": "The custom compontnet will get fire risks and fire prohibition from the Brandrisk Ute API for the supplied position.", "domain": "brandriskute", "etag_repository": "W/\"a88ea5dcc9c7365be124bbf02b3807bf9a41469aa44a8c706161709cf62b8ea3\"", "last_updated": "2021-12-28T22:27:43Z", "stargazers_count": 4, "topics": ["fire-risks", "risks", "sensors"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "387055527": {"repository_manifest": {"name": "Waves"}, "full_name": "tgcowell/waves", "category": "theme", "description": "This is a blend of 2 themes found within the Home Assistant community. Inspired mostly by Noctis, I've adjust colours slightly and have also opted to pull some features from Caule Theme packs to build my own 'ultimate' theme. I will continue to update overtime and do my best to credit those whom I have 'referenced' ", "domain": "", "etag_repository": "W/\"3484612dee3d5749b3a665cc638ec3690a8ae6a5b7a50af84fd875ffbe41a930\"", "last_updated": "2023-01-09T23:58:39Z", "stargazers_count": 52, "last_fetched": 1674378484.52328, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "391372854": {"repository_manifest": {"name": "Alarmo Card", "render_readme": true, "filename": "alarmo-card.js"}, "full_name": "nielsfaber/alarmo-card", "category": "plugin", "description": "Home Assistant card for controlling the Alarmo component", "domain": "", "downloads": 10221, "etag_repository": "W/\"88dc1f5f36fadc8e97ee4e585190426ea8dc7ba28db090f501d27224fd6b7539\"", "last_updated": "2022-12-11T11:02:04Z", "stargazers_count": 57, "topics": ["alarm", "alarmo", "assistant", "card", "home", "security"], "last_fetched": 1671385430.842555, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362551242": {"repository_manifest": {"name": "Update Time Card", "content_in_root": true, "render_readme": true, "filename": "update-time-card.js"}, "full_name": "itobey/update-time-card", "category": "plugin", "description": "Simple last-updated card for Home assistant lovelace", "domain": "", "etag_repository": "W/\"fbabc715d84dd6195a2b5e1e361dd961460c3e0ceb50a8a5df74097594f73353\"", "last_updated": "2021-07-13T16:24:04Z", "stargazers_count": 5, "topics": ["clock", "dashboard", "e-ink", "last-updated", "lovelace-custom-card"], "last_fetched": 1656859571.76453, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "384434522": {"repository_manifest": {"name": "Hass Hue Icons", "render_readme": true}, "full_name": "arallsopp/hass-hue-icons", "category": "plugin", "description": "Additional vector icons for home assistant to model Philips Hue bulbs and fixtures. ", "domain": "", "downloads": 2161, "etag_repository": "W/\"b4d7d9a7ad63835317bf3e0ce7673accb5dfd14b418171bf85e8ac615c77ee79\"", "last_updated": "2023-01-20T16:42:59Z", "stargazers_count": 211, "topics": ["custom-icons", "hue", "hue-lights", "icons", "iconset", "philips-hue", "svg"], "last_fetched": 1674378277.501826, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "352169259": {"repository_manifest": {"name": "Neerslag App", "render_readme": true, "country": ["NL", "BE"]}, "full_name": "aex351/home-assistant-neerslag-app", "authors": ["@aex351"], "category": "integration", "description": "Neerslag app for Home Assistant. All-in-one package (Sensors + Card).", "domain": "neerslag", "etag_repository": "W/\"a681c0304465716cff1d18a260c7a0d98d71ba5a84e1b3b6f1aa0bcdba0e06dc\"", "last_updated": "2022-07-08T17:26:32Z", "stargazers_count": 31, "last_fetched": 1674377795.523844, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366713850": {"repository_manifest": {"name": "Pirate Weather", "render_readme": true, "homeassistant": "2021.1.0b0"}, "full_name": "alexander0042/pirate-weather-ha", "authors": ["@alexander0042"], "category": "integration", "description": "Replacement for the default Dark Sky Home Assistant integration using Pirate Weather ", "domain": "pirateweather", "etag_repository": "W/\"f88aab53034b23e2d97cba123e47c073c1cb5e71ed0188906ef00e36ef4d6844\"", "last_updated": "2023-01-10T18:41:14Z", "stargazers_count": 200, "topics": ["darksky-api", "weather-api"], "last_fetched": 1674377801.538529, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "363203831": {"repository_manifest": {"name": "SureHA", "content_in_root": true, "render_readme": true}, "full_name": "benleb/sureha", "authors": ["@benleb"], "category": "integration", "description": "SureHA \ud83d\udc3e monitor & control your Sure Petcare devices via Home Assistant", "domain": "sureha", "etag_repository": "W/\"2fea116835eeda11494a6f02a8b43afffb33090025a132b019b60cfa51954b69\"", "last_updated": "2021-09-20T15:35:49Z", "stargazers_count": 16, "topics": ["surepet", "surepetcare", "surepy"], "last_fetched": 1671384849.698955, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "378010382": {"repository_manifest": {"name": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043a\u0430\u0431\u0438\u043d\u0435\u0442 \u0422\u041d\u0421 \u042d\u043d\u0435\u0440\u0433\u043e", "render_readme": true, "country": "ru", "homeassistant": "2021.4.6"}, "full_name": "alryaz/hass-tns-energo", "authors": ["@alryaz"], "category": "integration", "description": "TNS Energo Integration", "domain": "tns_energo", "etag_repository": "W/\"39753dcd33f4ab848fc63c5d2c46bb1f2e6cea6e0f94875223a63ebf55672fd7\"", "last_updated": "2022-04-12T21:11:28Z", "stargazers_count": 10, "topics": ["moscow", "tns-energo"], "last_fetched": 1671384819.858583, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "376390299": {"repository_manifest": {"name": "KNMI", "homeassistant": "2022.7.0", "render_readme": true}, "full_name": "golles/ha-knmi", "authors": ["@golles"], "category": "integration", "description": "Custom component that integrates KNMI weather service in to Home Assistant", "domain": "knmi", "etag_repository": "W/\"fada7cd7d549480695c94ad2c1b7b7c2b1143629a4f2d87ddf5878cf8cece32c\"", "last_updated": "2023-01-03T15:05:41Z", "stargazers_count": 24, "topics": ["home-assistant-component", "home-assistant-integration", "knmi", "weather", "weerlive"], "last_fetched": 1672948139.673438, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "384704004": {"repository_manifest": {"name": "Trakt", "render_readme": true}, "full_name": "dylandoamaral/trakt-integration", "authors": ["@dylandoamaral"], "category": "integration", "description": "A Trakt integration for Home Assistant compatible with upcoming media card", "domain": "trakt_tv", "etag_repository": "W/\"4f72d52470f84cb25d38f0c44740a97ebd33f6ce6443674541bce8f11cdb994d\"", "last_updated": "2022-11-20T14:30:03Z", "stargazers_count": 18, "topics": ["custom", "movie", "show", "trakt", "upcoming-media-card"], "last_fetched": 1671384944.283211, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261277563": {"repository_manifest": {"name": "Open Source Routing Machine"}, "full_name": "edekeijzer/osrm_travel_time", "authors": ["@edekeijzer"], "category": "integration", "description": "OSRM travel time sensor for Home Assistant", "domain": "osrm_travel_time", "etag_repository": "W/\"f742f4cee51a6083470d534cc6f67a3e1c10639f5c8de8e8cdc5b7818f8e713a\"", "last_updated": "2022-03-11T11:58:30Z", "stargazers_count": 7, "topics": ["osrm", "python3", "self-hosted"], "last_fetched": 1661585061.2539, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "290261325": {"repository_manifest": {"name": "Adaptive Lighting", "render_readme": true}, "full_name": "basnijholt/adaptive-lighting", "authors": ["@basnijholt", "@RubenKelevra"], "category": "integration", "description": "Adaptive Lighting custom component for Home Assistant", "domain": "adaptive_lighting", "etag_repository": "W/\"1c907ece2402eef3d2a1365db917fabbe162191639d63f74fd7bbc1b7fac136e\"", "last_updated": "2023-01-19T06:56:45Z", "stargazers_count": 828, "topics": ["adaptive-lighting", "automation", "hue", "iot", "lights", "sunrise", "sunset", "zigbee"], "last_fetched": 1674377831.511632, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "377060365": {"repository_manifest": {"name": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043a\u0430\u0431\u0438\u043d\u0435\u0442 \u0418\u043d\u0442\u0435\u0440 \u0420\u0410\u041e (\u042d\u043d\u0435\u0440\u0433\u043e\u0441\u0431\u044b\u0442)", "render_readme": true, "country": "ru", "homeassistant": "2021.12.0"}, "full_name": "alryaz/hass-lkcomu-interrao", "authors": ["@alryaz"], "category": "integration", "description": "\u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f Home Assistant \u0441 \u041b\u041a \"\u0418\u043d\u0442\u0435\u0440 \u0420\u0410\u041e\"", "domain": "lkcomu_interrao", "etag_repository": "W/\"f0a78d1026660ff7edc1b26e4dd75b34198bb57c0d4f18b63d509a4778afcaa0\"", "last_updated": "2022-05-17T20:58:09Z", "stargazers_count": 27, "topics": ["altaienergosbyt", "bashelektrosbyt", "energosbyt", "esbvolga", "mosenergosbyt", "sevesk", "tambovenergosbyt", "tomskenergosbyt"], "last_fetched": 1671384815.585597, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "388918745": {"repository_manifest": {"name": "Creasol DomBus"}, "full_name": "CreasolTech/home-assistant-creasol-dombus", "authors": ["@CreasolTech"], "category": "integration", "description": "Home Assistant integration for Creasol DomBus RS485 modules (inputs, outputs, sensors).", "domain": "creasoldombus", "etag_repository": "W/\"d1fb7d5dbd83ae905361350a184f214c97096227948f1a15648ce1efcfe8eede\"", "last_updated": "2021-09-07T08:23:37Z", "stargazers_count": 1, "topics": ["dombus", "domotic", "rs485"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "355159299": {"repository_manifest": {"name": "Moscow PGU (\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 \u041c\u043e\u0441\u043a\u0432\u044b)", "render_readme": true, "country": "ru", "homeassistant": "2021.2.0"}, "full_name": "alryaz/hass-moscow-pgu", "authors": ["@alryaz"], "category": "integration", "description": "Moscow PGU services for HomeAssistant", "domain": "moscow_pgu", "etag_repository": "W/\"642a9b1f07a1267a71979f5db0e0bc04c53c90ad18be24eff3da371533541be9\"", "last_updated": "2021-11-10T06:44:41Z", "stargazers_count": 12, "topics": ["gosuslugi"], "last_fetched": 1661584943.396859, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362058414": {"repository_manifest": {"name": "Libratone Zipp", "render_readme": true}, "full_name": "Chouffy/home_assistant_libratone_zipp", "authors": ["@chouffy"], "category": "integration", "description": "Control a Libratone Zipp speaker within Home Assistant", "domain": "libratone_zipp", "etag_repository": "W/\"291eaf61836c69229654147e6d05057f40a699b92326ffd497a4a92a22d88fd9\"", "last_updated": "2021-10-16T07:48:11Z", "stargazers_count": 5, "topics": ["home-assistant-integration", "libratone", "python3"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "311536795": {"repository_manifest": {"hacs": "1.6.0", "name": "Frigate", "homeassistant": "2022.4.5"}, "full_name": "blakeblackshear/frigate-hass-integration", "authors": ["@blakeblackshear"], "category": "integration", "description": "Frigate integration for Home Assistant", "domain": "frigate", "etag_repository": "W/\"08d2b1a1a44a4da6fba0d3457448a9a059a4cd07f77f0c20cd5bd4012a698471\"", "last_updated": "2023-01-19T13:20:31Z", "stargazers_count": 339, "topics": ["ai", "camera", "frigate", "nvr", "object-detection"], "last_fetched": 1674377838.211692, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255258767": {"repository_manifest": {"name": "GCE IPX800 V4", "country": "FR", "render_readme": true}, "full_name": "Aohzan/ipx800", "authors": ["@Aohzan"], "category": "integration", "description": "IPX800 V4 integration for Home-Assistant", "domain": "ipx800v4", "etag_repository": "W/\"9a9f7d233bac7f61d5c869832fec46e44ca658931260c7ba1a81fc4019404923\"", "last_updated": "2023-01-18T18:13:46Z", "stargazers_count": 15, "topics": ["domotique", "gce-electronics", "ipx800"], "last_fetched": 1674377818.553047, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "384910725": {"repository_manifest": {"name": "XMR Pool Statistics", "render_readme": true}, "full_name": "hwmland/homeassistant-xmrpool_stat", "authors": ["@hwmland"], "category": "integration", "description": "XMR Pool Statistics integration for Home Assistant", "domain": "xmrpool_stat", "etag_repository": "W/\"38e059d78300889d265b8d68e504df5b5022dfe2e2ac98ab10544e7adebbc311\"", "last_updated": "2022-02-23T18:27:48Z", "stargazers_count": 2, "topics": ["cryptocurrency", "home-assistant-integration", "monero", "xmr"], "last_fetched": 1646496917.456487, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "322881712": {"repository_manifest": {"name": "Honor Router 3/X3 tracker", "render_readme": "true"}, "full_name": "juacas/honor_x3", "authors": ["@juacas"], "category": "integration", "description": "Honor X3 router Device tracker for Home Assistant", "domain": "honor_x3", "etag_repository": "W/\"6f34852345f2c8cc185d5c7a0b5c27cdb98f8821e4fcb8287adf14f463ce3c79\"", "last_updated": "2021-08-24T07:44:17Z", "stargazers_count": 9, "topics": ["device-tracker", "presence-detection", "router"], "last_fetched": 1671385042.412851, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "377012187": {"repository_manifest": {"name": "Weight Gurus", "render_readme": true}, "full_name": "jcgoette/weight_gurus_homeassistant", "authors": ["@jcgoette"], "category": "integration", "description": "This custom integration provides sensors for Weight Gurus API endpoints.", "domain": "weight_gurus", "etag_repository": "W/\"29195044d8866964cb3deef90919134fc12a89fdc7c22ade7059ab0c07e3f957\"", "last_updated": "2021-12-18T04:00:33Z", "stargazers_count": 3, "topics": ["health", "home-assistant-component", "weight"], "last_fetched": 1662801807.997134, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250488711": {"repository_manifest": {"name": "Niu Scooter Integration", "render_readme": true}, "full_name": "marcelwestrahome/home-assistant-niu-component", "authors": ["@mwestra"], "category": "integration", "description": "niu scooter integration for Home assistant.", "domain": "niu", "etag_repository": "W/\"e8bf378990646176c4b37f5a9c8d2cec993d317c235cae1d6be0adf9b97bed64\"", "last_updated": "2022-12-02T17:12:21Z", "stargazers_count": 23, "topics": ["niu", "scooters"], "last_fetched": 1671385096.287828, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279184610": {"repository_manifest": {"name": "Amber Electric", "country": "AU", "homeassistant": "2021.7.1"}, "full_name": "madpilot/hass-amber-electric", "authors": ["@madpilot"], "category": "integration", "description": "Home Assistant Component to pull the latest energy prices from Amber Electric", "domain": "amberelectric", "etag_repository": "W/\"21eaacc0c772ca66ea513bb31eb16d7db64b5fbf266d1611884cac63c6650351\"", "last_updated": "2021-10-07T09:01:00Z", "stargazers_count": 23, "topics": ["amber-electric", "electricity-market", "electricity-prices"], "last_fetched": 1674378074.638819, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "391413239": {"repository_manifest": {"name": "Teletask", "homeassistant": "0.109.0"}, "full_name": "Tiemooowh/homeassistant-teletask", "authors": ["@tiemooowh"], "category": "integration", "description": "Teletask (DoIP) Integration for Home Assistant Comunity Store (HACS)", "domain": "teletask", "etag_repository": "W/\"bacbf933b095af6f04141115fde84e40b6da53d230d953cb33e4564294a556df\"", "last_updated": "2022-06-25T09:47:37Z", "stargazers_count": 2, "topics": ["domotics", "homeassistant-custom-component", "teletask"], "last_fetched": 1656859407.490074, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "368653916": {"repository_manifest": {"name": "MOOX-Track", "render_readme": true}, "full_name": "moox-it/hass-moox-track", "authors": ["@moox-it"], "category": "integration", "description": "MOOX-Track Custom Component for HASS (hass-moox-track) is a custom component that connects your MOOX Track devices to Home Assistant as \"Device Trackers\"", "domain": "moox_track", "etag_repository": "W/\"6c795dfdc462f634bed1c5aa38a7cfb88f597c6e4bc6795fec0bdb1e34980edb\"", "last_updated": "2021-12-13T17:10:20Z", "topics": ["device", "gps", "moox", "track", "tracker"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "378213601": {"repository_manifest": {"name": "Argoclima", "homeassistant": "2022.7.0"}, "full_name": "nyffchanium/argoclima-integration", "authors": ["@nyffchanium"], "category": "integration", "description": "Home Assistant integration for Argoclima (Argo) climate control devices", "domain": "argoclima", "etag_repository": "W/\"a6b4f5fdf255ca8650a754c1149ac53b3cad1366fb0648c6a4d95d7785d17914\"", "last_updated": "2022-07-10T15:42:09Z", "stargazers_count": 9, "topics": ["argo", "argoclima", "climate-control"], "last_fetched": 1674378117.994259, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "336054515": {"repository_manifest": {"name": "Open Charge Point Protocol (OCPP)", "homeassistant": "2022.7.0", "render_readme": true, "zip_release": true, "filename": "ocpp.zip"}, "full_name": "lbbrhzn/ocpp", "authors": ["@lbbrhzn"], "category": "integration", "description": "Home Assistant integration for electric vehicle chargers that support the Open Charge Point Protocol (OCPP).", "domain": "ocpp", "downloads": 55, "etag_repository": "W/\"eebe3e72991b66fc3627bbaa6e4aea9fbc79dc866d183ef58a14cba45b3ce05e\"", "last_updated": "2023-01-21T18:57:09Z", "stargazers_count": 104, "topics": ["ocpp"], "last_fetched": 1674378055.20379, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "379688863": {"repository_manifest": {"name": "Thermal Vision", "country": "CA", "homeassistant": "2021.4", "render_readme": true}, "full_name": "TheRealWaldo/thermal", "authors": ["@TheRealWaldo"], "category": "integration", "description": "Thermal Vision Sensor and Camera for Home Assistant", "domain": "thermal_vision", "etag_repository": "W/\"7f4c4f223744ab079b1abb9b7af08a43ffc379af7a0c5720646e1848732d11ea\"", "last_updated": "2023-01-12T16:10:36Z", "stargazers_count": 42, "topics": ["homeassistant-custom-component", "thermal-camera"], "last_fetched": 1674378212.443562, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "388979130": {"repository_manifest": {"name": "NSW Covid Data", "country": ["AU"], "homeassistant": "2021.9.0", "zip_release": true, "filename": "nswcovid.zip"}, "full_name": "troykelly/homeassistant-au-nsw-covid", "authors": ["@troykelly"], "category": "integration", "description": "A group of sensors for Home Assistant that tracks New South Wales COVID-19 Data", "domain": "nswcovid", "etag_repository": "W/\"e4f82a00278417c26669528a148fd1bf4d88282c014255fad61cf23a156ed0c5\"", "last_updated": "2021-10-02T04:15:42Z", "stargazers_count": 1, "topics": ["covid-19", "nsw-government", "nsw-health"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "227452940": {"repository_manifest": {"name": "Wyze"}, "full_name": "JoshuaMulliken/ha-wyzeapi", "authors": ["@JoshuaMulliken"], "category": "integration", "description": "Home Assistant Integration for Wyze devices.", "domain": "wyzeapi", "etag_repository": "W/\"6f203aefa2371c69c1523e7637ab7effb37b875b9409464b4de4e07f54e38cb6\"", "last_updated": "2023-01-19T20:17:59Z", "stargazers_count": 523, "topics": ["bulb", "switch", "wyze", "wyze-bulbs", "wyze-switchs"], "last_fetched": 1674378022.444571, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "379781545": {"repository_manifest": {"name": "Netgear WAX", "hacs": "1.6.0", "homeassistant": "2021.4.0", "render_readme": true}, "full_name": "rroller/netgear", "authors": ["@rroller"], "category": "integration", "description": "Netgear Home Assistant Integration", "domain": "netgear_wax", "etag_repository": "W/\"4bb34fe1694fb47134bce44a88cc62d2c4678c00c0478ea52c4cc610805adf24\"", "last_updated": "2022-03-17T18:38:10Z", "stargazers_count": 11, "topics": ["netgear", "wax", "wax-610", "wax-620", "wi-fi"], "last_fetched": 1674378164.73548, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "396695907": {"repository_manifest": {"name": "Gree Extension for Home-Assistant built in integration", "render_readme": true}, "full_name": "mullerdavid/hass_GreeExt", "authors": ["@mullerdavid"], "category": "integration", "description": "Gree Extension for built in integration", "domain": "gree_ext", "etag_repository": "W/\"2b4a8e743b0810cffca02e70a47c52ddeabef53aeccfd8d30abc5b863a3920a6\"", "last_updated": "2022-04-18T15:47:02Z", "stargazers_count": 2, "topics": ["gree"], "last_fetched": 1671385122.533739, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325329098": {"repository_manifest": {"homeassistant": "2021.7.0", "name": "Sleep As Android", "render_readme": true, "zip_release": true, "filename": "sleep_as_android.zip"}, "full_name": "IATkachenko/HA-SleepAsAndroid", "authors": ["@IATkachenko"], "category": "integration", "description": "Sleep As Android integration for Home Assistant", "domain": "sleep_as_android", "downloads": 1308, "etag_repository": "W/\"c3fc99e48cda39a225296b569421959dfdae0e94a40560bd83173c041002f54a\"", "last_updated": "2022-12-09T17:59:53Z", "stargazers_count": 89, "topics": ["mqtt", "sleep-analysis", "sleep-as-android", "sleep-tracker"], "last_fetched": 1674377991.607998, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "290193894": {"repository_manifest": {"name": "Rollease Acmeda Automate Pulse Hub v2", "render_readme": true}, "full_name": "sillyfrog/Automate-Pulse-v2", "authors": ["@sillyfrog"], "category": "integration", "description": "Rollease Acmeda Automate Pulse Hub v2 integration for Home Assistant", "domain": "automate", "etag_repository": "W/\"ede7de2fbf539f2d895e6473ffd5bd24513ea7dae8aa43bf9734f5cc2ca4cf4c\"", "last_updated": "2023-01-03T22:05:28Z", "stargazers_count": 22, "last_fetched": 1672948359.423554, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "394082552": {"repository_manifest": {"name": "Frigate Card", "render_readme": true, "filename": "frigate-hass-card.js", "homeassistant": "2022.3.0"}, "full_name": "dermotduffy/frigate-hass-card", "category": "plugin", "description": "A Lovelace card for Frigate in Home Assistant", "domain": "", "downloads": 13865, "etag_repository": "W/\"9003c283b54e41c4056df9c62e28387f0daaca25b06082c0f412e94ca3ea25c2\"", "last_updated": "2023-01-16T22:16:38Z", "stargazers_count": 200, "topics": ["cctv", "frigate", "nvr"], "last_fetched": 1674378316.480461, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "395991055": {"repository_manifest": {"name": "Anniversary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/anniversary", "authors": ["@amaximus"], "category": "integration", "description": "Anniversary integration for Home Assistant", "domain": "anniversary", "downloads": 3, "etag_repository": "W/\"265e2d11323904bbfa20e49ba141ac9aad063c4d063c650ec5d19e773dfd33d6\"", "last_updated": "2022-06-03T06:24:59Z", "stargazers_count": 12, "last_fetched": 1671384820.029426, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362700564": {"repository_manifest": {"name": "Tesla", "hacs": "1.6.0", "homeassistant": "2022.11.0", "zip_release": true, "filename": "tesla_custom.zip"}, "full_name": "alandtse/tesla", "authors": ["@alandtse"], "category": "integration", "description": "Tesla custom integration for Home Assistant. This requires a refresh token be generated by third-party apps to login.", "domain": "tesla_custom", "downloads": 4614, "etag_repository": "W/\"bcdeff47895fd07ff2841a7445f7c7c56b8b0299a4ff03846a9c59d9767a36fa\"", "last_updated": "2023-01-17T21:20:52Z", "stargazers_count": 251, "topics": ["home-assistant-component", "tesla"], "last_fetched": 1674377796.027652, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "383732864": {"repository_manifest": {"name": "Garmin Connect", "render_readme": true}, "full_name": "cyberjunky/home-assistant-garmin_connect", "authors": ["@cyberjunky"], "category": "integration", "description": "The Garmin Connect integration allows you to expose data from Garmin Connect to Home Assistant.", "domain": "garmin_connect", "etag_repository": "W/\"31f9644fd651d0db93972d0048d9313b0acf88b37a4583e20b4113c6b9edb7d2\"", "last_updated": "2023-01-20T20:13:13Z", "stargazers_count": 87, "topics": ["garmin-connect", "home-assistant-component"], "last_fetched": 1674377893.063979, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "346474804": {"repository_manifest": {"name": "Toyota Connected Services", "homeassistant": "2022.6.0", "zip_release": true, "filename": "toyota.zip"}, "full_name": "DurgNomis-drol/ha_toyota", "authors": ["@DurgNomis-drol"], "category": "integration", "description": "Toyota Connected Services integration for Home Assistant.", "domain": "toyota", "downloads": 907, "etag_repository": "W/\"e1fa421579c990849c21be51be597bf5d7a89cc534d2654a6d9ab1cd469114be\"", "last_updated": "2022-12-09T06:40:43Z", "stargazers_count": 68, "topics": ["car", "toyota", "vehicle"], "last_fetched": 1674377928.16031, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "382335433": {"repository_manifest": {"name": "SAJ eSolar"}, "full_name": "djansen1987/SAJeSolar", "authors": ["@djansen1987"], "category": "integration", "description": "SAJ eSolar Portal Sensors", "domain": "saj_esolar", "etag_repository": "W/\"866ed2a73574e39c20132d8876bd05917aaa6abe95d38006b2041ad9b3367a3a\"", "last_updated": "2022-11-25T21:47:17Z", "stargazers_count": 11, "topics": ["esolar", "intergration", "saj", "solar", "solar-system"], "last_fetched": 1672948080.46077, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "398739214": {"repository_manifest": {"render_readme": true, "homeassistant": "2021.8.1"}, "full_name": "HCookie/Webhook-Service-home-assistant", "category": "integration", "description": "Add a Webhook service to HomeAssistant, originally designed for use with Discord Webhooks", "domain": "webhook_service", "etag_repository": "W/\"054963c02e08b59521a46327f3853ad28cc1107a7cb731e83babce5670b29b1d\"", "last_updated": "2021-08-25T02:24:45Z", "stargazers_count": 5, "topics": ["webhooks"], "last_fetched": 1643571232.765068, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "383608593": {"repository_manifest": {"name": "Toshiba AC", "render_readme": true, "homeassistant": "2022.11.0"}, "full_name": "h4de5/home-assistant-toshiba_ac", "authors": ["@h4de5"], "category": "integration", "description": "Toshiba AC integration into home-assistant.io", "domain": "toshiba_ac", "downloads": 19, "etag_repository": "W/\"adc9f0375780f91c03a8bd12096c3706be5336cd424f1aafbad41975a5aa7fa8\"", "last_updated": "2023-01-12T00:19:11Z", "stargazers_count": 66, "topics": ["climate", "toshiba"], "last_fetched": 1674377977.455797, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "382905556": {"repository_manifest": {"name": "Cover Time Based Synced", "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "kotborealis/home-assistant-custom-components-cover-time-based-synced", "authors": ["@kotborealis"], "category": "integration", "description": "\u231b Time-based cover. Install it via HACS.", "domain": "cover_time_based_synced", "etag_repository": "W/\"90b1543d82b0e9097931a3129cd7d8be1d053cb1dd405b733cdad2147525c872\"", "last_updated": "2022-02-19T12:15:59Z", "stargazers_count": 8, "topics": ["cover", "roller-shutters", "service", "shutter", "trigger"], "last_fetched": 1661585167.435329, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "402799177": {"repository_manifest": {"name": "Blind Card", "filename": "hass-blind-card.js", "render_readme": true, "homeassistant": "2021.11.0"}, "full_name": "tungmeister/hass-blind-card", "category": "plugin", "description": "Blind card for Home Assistant Lovelace UI", "domain": "", "etag_repository": "W/\"1832b9fea6da6bbf80aa444f8ae60b97695f1aee93a875c1fa7dbdfde6d087ad\"", "last_updated": "2022-01-31T18:19:37Z", "stargazers_count": 26, "last_fetched": 1671387207.840001, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "395770920": {"repository_manifest": {"name": "OpenEI", "homeassistant": "2021.8.0", "zip_release": true, "filename": "openei.zip"}, "full_name": "firstof9/ha-openei", "authors": ["@firstof9"], "category": "integration", "description": "OpenEI integration for Home Assistant", "domain": "openei", "downloads": 90, "etag_repository": "W/\"372be3eb847d99070b53b1f73064613f68cc8a1447862ad24f400471e0ed5fdf\"", "last_updated": "2022-05-27T13:22:07Z", "stargazers_count": 11, "topics": ["api", "energy", "rates"], "last_fetched": 1656859176.716358, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "402156016": {"repository_manifest": {"name": "Kamstrup 403", "homeassistant": "2022.11.0", "render_readme": true}, "full_name": "golles/ha-kamstrup_403", "authors": ["@golles"], "category": "integration", "description": "Custom component that integrates the Kamstrup 403 heating system into Home Assistant. This component does also support a few other heating system", "domain": "kamstrup_403", "etag_repository": "W/\"ddfff8cff96d669e652452ac9e723bc0dd80f04f9f3377aacf22dfdc6f690d8b\"", "last_updated": "2023-01-15T15:38:16Z", "stargazers_count": 31, "topics": ["home-assistant-component", "home-assistant-integration", "kamstrup", "kamstrup403", "stadsverwarming"], "last_fetched": 1674377971.108043, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403401396": {"repository_manifest": {"name": "HERE Destination Weather", "hacs": "1.6.0", "homeassistant": "2021.12.0"}, "full_name": "eifinger/hass-here-weather", "authors": ["@eifinger"], "category": "integration", "description": "Custom Home Assistant Integration for the HERE Destination Weather API", "domain": "here_weather", "etag_repository": "W/\"d268a414280129a1ec73fb2939dc3706ab323020ae0624fe750f2badf29b091d\"", "last_updated": "2023-01-21T15:46:01Z", "stargazers_count": 4, "topics": ["here-maps-api", "herepy", "homeassistant-custom-component", "pyton"], "last_fetched": 1674377933.986231, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "213346369": {"repository_manifest": {"name": "ECHONETLite Platform", "render_readme": true, "homeassistant": "2021.9.2"}, "full_name": "scottyphillips/echonetlite_homeassistant", "authors": ["@scottyphillips"], "category": "integration", "description": "A Home Assistant custom component for use with ECHONET enabled Mitsubishi HVAC systems. ", "domain": "echonetlite", "etag_repository": "W/\"261f3f00a616c505a2d8620395674229aefc3612f5c75e584e5deb9fcbe82709\"", "last_updated": "2023-01-15T02:27:35Z", "stargazers_count": 73, "last_fetched": 1674378182.10171, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334448958": {"repository_manifest": {"name": "bootstrap-grid-card", "render_readme": true}, "full_name": "ownbee/bootstrap-grid-card", "category": "plugin", "description": "Bootstrap grid in Lovelace UI", "domain": "", "downloads": 6203, "etag_repository": "W/\"a59904fe6749909f729540a2ad8790b5806bfbb858eb973be08a0f3b61af99ba\"", "last_updated": "2022-03-19T12:02:28Z", "stargazers_count": 26, "topics": ["bootstrap", "bootstrap-grid-card", "card", "grid", "layout"], "last_fetched": 1674378393.971506, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403381222": {"repository_manifest": {"name": "Noctis-Solarized"}, "full_name": "williamahartman/noctis-solarized", "category": "theme", "description": "Noctis theme made Solarized", "domain": "", "etag_repository": "W/\"f47981d81251d2ab2bddf1b5ff4caa14ef05d6848055104148d3f983e967a5c6\"", "last_updated": "2021-09-29T22:53:08Z", "stargazers_count": 2, "topics": ["home-assistant-theme"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403123516": {"repository_manifest": {"name": "Ecowater Softener", "render_readme": true}, "full_name": "barleybobs/homeassistant-ecowater-softener", "authors": ["@barleybobs"], "category": "integration", "description": "A Homeassistant custom component to integrate Ecowater water softeners", "domain": "ecowater_softener", "etag_repository": "W/\"39dbac23008a45129eedee8e7da5214118e20bf520c69ca3d89dacc29dbb3d89\"", "last_updated": "2022-12-22T13:56:54Z", "stargazers_count": 17, "topics": ["ecowater"], "last_fetched": 1672947996.289082, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "323155307": {"repository_manifest": {"name": "Duepi Evo", "render_readme": true}, "full_name": "aceindy/Duepi_EVO", "authors": ["@aceindy"], "category": "integration", "description": "Control Duepi_evo based pellet stoves with Home Assistant over wifi using ESPLink", "domain": "duepi_evo", "etag_repository": "W/\"2291212d6b78899326fea4621784479c489a83517fe01c148a7aa874ceb4c958\"", "last_updated": "2022-03-24T15:10:33Z", "stargazers_count": 8, "topics": ["heating-systems"], "last_fetched": 1648398841.232792, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "392188182": {"repository_manifest": {"name": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043a\u0430\u0431\u0438\u043d\u0435\u0442 \u042d\u043d\u0435\u0440\u0433\u043e\u0441\u0431\u044b\u0422 \u041f\u043b\u044e\u0441", "render_readme": true, "country": "ru", "homeassistant": "2021.2.0"}, "full_name": "alryaz/hass-energosbyt-plus", "authors": ["@alryaz"], "category": "integration", "description": "\u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u042d\u043d\u0435\u0440\u0433\u043e\u0441\u0431\u044b\u0422.\u041f\u043b\u044e\u0441 \u0434\u043b\u044f Home Assistant", "domain": "energosbyt_plus", "etag_repository": "W/\"95178c809e2838b288e5b2edb5af7a6414b2d30c4be53ef62709578fe64d1a7f\"", "last_updated": "2021-11-03T19:32:31Z", "stargazers_count": 8, "topics": ["energosbyt", "energosbyt-plus"], "last_fetched": 1653229577.244483, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "407627914": {"repository_manifest": {"name": "Google Dark Theme", "render_readme": true}, "full_name": "pacjo/google_dark_animated", "category": "theme", "description": "A fork of popular Home Assistant Google dark theme with animated icons", "domain": "", "etag_repository": "W/\"ed419db2b426cee9d55eb14499bdb3239d4ee769f3762fac2539d83607fb7446\"", "last_updated": "2021-11-22T17:05:56Z", "stargazers_count": 4, "topics": ["ha"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403062943": {"repository_manifest": {"name": "battery_consumption"}, "full_name": "jugla/battery_consumption", "authors": ["@jugla"], "category": "integration", "description": "Home Assistant Component to compute battery consumption", "domain": "battery_consumption", "etag_repository": "W/\"79917970988d8d21ed1a148faab22749bc004f9575062205e93951d145196b7c\"", "last_updated": "2022-05-28T18:34:54Z", "stargazers_count": 9, "topics": ["battery", "consumption"], "last_fetched": 1671385043.6004, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "408429126": {"repository_manifest": {"name": "MQTT DiscoveryStream", "render_readme": true}, "full_name": "koying/mqtt_discoverystream_ha", "authors": ["@koying"], "category": "integration", "description": "Extension of HA mqtt_statestream integration with discovery config publishing", "domain": "mqtt_discoverystream", "etag_repository": "W/\"f0ffe8f5a6fad126fefdb9f71a0a9aba82019e32ee7969baa3fe26fcc4a012b0\"", "last_updated": "2022-10-12T11:24:45Z", "stargazers_count": 6, "topics": ["mqtt"], "last_fetched": 1671275537.303641, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "401454435": {"repository_manifest": {"name": "battery_sim", "country": ["GB"], "render_readme": true}, "full_name": "hif2k1/battery_sim", "authors": ["@hif2k1"], "category": "integration", "description": "Home assistant home battery simulator - allows you to model how much energy you would save with a home battery", "domain": "battery_sim", "etag_repository": "W/\"dfc7c0176bf707411313e5be0d8ccd974f4ce2475db9e290fb722536fd2dda80\"", "last_updated": "2023-01-16T21:12:33Z", "stargazers_count": 51, "topics": ["energy-storage", "environmental"], "last_fetched": 1674377985.017436, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319608056": {"repository_manifest": {"homeassistant": "2022.4.0b0", "name": "Bodymiscale", "render_readme": true}, "full_name": "dckiller51/bodymiscale", "authors": ["@dckiller51"], "category": "integration", "description": "Custom_components Body Metrics for Xiaomi Miscale 1 and 2 (esphome or BLE monitor for Homeassistant)", "domain": "bodymiscale", "etag_repository": "W/\"d7b735116286888bf6d6ba839cde1091023c1e99324ec688680cd388907db253\"", "last_updated": "2023-01-17T04:17:24Z", "stargazers_count": 129, "topics": ["ble-monitor", "esphome", "miscale", "mitemp-bt", "xiaomi"], "last_fetched": 1674377905.314, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "401145616": {"repository_manifest": {"name": "myenergi", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2021.9.1"}, "full_name": "CJNE/ha-myenergi", "authors": ["@cjne"], "category": "integration", "description": "Home Assistant integration for MyEnergi devices", "domain": "myenergi", "etag_repository": "W/\"7b8df6f96ae2ff36b9ef23bd0c27a59eac74c9b64a19a548cd5941b640586b71\"", "last_updated": "2023-01-20T07:04:20Z", "stargazers_count": 74, "topics": ["ev-charging", "green-energy", "myenergi"], "last_fetched": 1674377863.572413, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "401856574": {"repository_manifest": {"name": "Windcentrale", "zip_release": true, "filename": "windcentrale.zip", "homeassistant": "2022.8.0"}, "full_name": "jobvk/Home-Assistant-Windcentrale", "authors": ["@jobvk"], "category": "integration", "description": "Provides Home Assistant sensors for multiple wind turbines from the Windcentrale", "domain": "windcentrale", "downloads": 83, "etag_repository": "W/\"a9aeaf89c78f8318fe276b772a97078fd2fedd5374092a935d55e56dfb75e8d7\"", "last_updated": "2022-12-11T16:39:59Z", "stargazers_count": 10, "topics": ["dutch", "wind-turbines", "windcentrale"], "last_fetched": 1672948184.561033, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246549747": {"repository_manifest": {"name": "Atomic Calendar Revive", "filename": "atomic-calendar-revive.js", "country": ["GB"]}, "full_name": "totaldebug/atomic-calendar-revive", "category": "plugin", "description": "An advanced calendar card for Home Assistant Lovelace.", "domain": "", "etag_repository": "W/\"89666a3f29fa9e27d327a840cf211b6e7a6fe8f3c8adc14e5be1023335671936\"", "last_updated": "2023-01-20T21:05:26Z", "stargazers_count": 236, "topics": ["calendar", "card", "javascript", "module"], "last_fetched": 1674378427.887659, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356033332": {"repository_manifest": {"name": "Crypto Tracker", "render_readme": true}, "full_name": "BigNocciolino/CryptoTracker", "authors": ["@PepegaBruh"], "category": "integration", "description": "Integration for Home Assistant to implement a crypto tracking system", "domain": "cryptostate", "etag_repository": "W/\"969199bb51d37e93f0ce2636deece31679e65497889de6ba5a361b032d44363f\"", "last_updated": "2022-05-24T10:41:30Z", "stargazers_count": 24, "topics": ["automation", "currency", "tracker"], "last_fetched": 1662801655.950226, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "417802358": {"repository_manifest": {"name": "TooGoodToGo", "render_readme": true}, "full_name": "Chouffy/home_assistant_tgtg", "authors": ["@chouffy"], "category": "integration", "description": "TooGoodToGo items stock as sensor in Home Assistant", "domain": "tgtg", "etag_repository": "W/\"18691d46d8fe77c6a81b1df0c053b6b08e88fd82c95ef03f52fde2a6c49a462f\"", "last_updated": "2023-01-20T22:48:57Z", "stargazers_count": 24, "topics": ["home-assistant-integration", "python3", "toogoodtogo"], "last_fetched": 1674377862.470645, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "420504770": {"repository_manifest": {"name": "Water Quality FVM", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/water_quality_fvm", "authors": ["@amaximus"], "category": "integration", "description": "Water quality integration for Home Assistant with data provided by Budapest FVM", "domain": "water_quality_fvm", "etag_repository": "W/\"cb1071a78f1f29048f8ce24d2c6510b5b2f0b128b3982683d9565fb6b715f731\"", "last_updated": "2021-12-23T12:36:22Z", "stargazers_count": 3, "topics": ["budapest", "homeassistant-custom-component", "hungary"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "326352749": {"repository_manifest": {"name": "MasterLink Gateway", "country": "US", "render_readme": true}, "full_name": "giachello/mlgw", "authors": ["@giachello", "@Lele-72"], "category": "integration", "description": "This components integrates Bang & Olufsen Master Link Gateway and Beolink Gateway to Home Assistant, the open-source home automation platform.", "domain": "mlgw", "etag_repository": "W/\"3702ed1e7983803130671028e3ef4684758ba3f51c47c555e2895220162511d4\"", "last_updated": "2022-05-23T12:11:29Z", "stargazers_count": 20, "topics": ["bang-olufsen", "beolink-gateway", "masterlink-gateway", "mlgw-configuration"], "last_fetched": 1665325547.534637, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "302122266": {"repository_manifest": {"name": "Cover Icon Element", "render_readme": true, "filename": "cover-icon-element.js"}, "full_name": "queimadus/cover-icon-element", "category": "plugin", "description": "Improved cover icon for home assistant picture element", "domain": "", "etag_repository": "W/\"8e19f0610153a5ebae6ef311aa9b559fb7d936fe5aab8fcbb15efb862663055b\"", "last_updated": "2021-11-17T20:04:06Z", "stargazers_count": 5, "topics": ["cover"], "last_fetched": 1671387203.949405, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "423082071": {"repository_manifest": {"name": "Flipdown Timer Card", "render_readme": true, "filename": "flipdown-timer-card.js"}, "full_name": "pmongloid/flipdown-timer-card", "category": "plugin", "description": "Flipdown Timer Card for Home Assistant Lovelace", "domain": "", "downloads": 2841, "etag_repository": "W/\"637f9cb6c1018c7bbf45b13d940e4584bfad6793eace742a451af8a3e6763947\"", "last_updated": "2022-11-18T16:12:38Z", "stargazers_count": 45, "topics": ["timer"], "last_fetched": 1674378400.263079, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "420365062": {"repository_manifest": {"name": "Last Changed Element", "render_readme": true, "filename": "last-changed-element.js"}, "full_name": "queimadus/last-changed-element", "category": "plugin", "description": "Display when entity was last changed in home assistant picture element", "domain": "", "etag_repository": "W/\"d44a2de2e9fc4504eaa91b6fbacffb86c3bddb23ac0177865a7b43fef06ecc3a\"", "last_updated": "2021-10-23T09:37:59Z", "stargazers_count": 6, "last_fetched": 1653230094.131601, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "413430860": {"repository_manifest": {"name": "Person", "filename": "person-entity-card-bundle.js", "render_readme": "true"}, "full_name": "gerardag/person-entity-card", "category": "plugin", "description": "Minimalist plugin which allows users to add person entity in order to show the location with a beutiful and clean interface.", "domain": "", "downloads": 3678, "etag_repository": "W/\"97ca6e3b666a292fd8ebfc6915bf7e2af01e467c2ecf35ab124a1cfa2298627b\"", "last_updated": "2022-07-13T13:46:36Z", "stargazers_count": 16, "last_fetched": 1661584838.301955, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "402612874": {"repository_manifest": {"name": "WeatherAPI", "render_readme": true}, "full_name": "iprak/weatherapi", "authors": ["@iprak"], "category": "integration", "description": "HomeAssistant custom integration to fetch data from weatherapi", "domain": "weatherapi", "etag_repository": "W/\"d4c88ea21e3e5ef98914261e0c6f839ede59879441a39434ad99eff56398919e\"", "last_updated": "2022-07-11T11:39:59Z", "stargazers_count": 5, "topics": ["custom", "weather", "weatherapi"], "last_fetched": 1661585122.889001, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "411736321": {"repository_manifest": {"name": "DWD Pollenflug", "render_readme": true}, "full_name": "mampfes/hacs_dwd_pollenflug", "authors": ["@mampfes"], "category": "integration", "description": "Adds pollen forecasts from DWD to Home Assistant.", "domain": "dwd_pollenflug", "etag_repository": "W/\"0241d9a28856b53804acfd3d7ed8d397d23ae077271eb93ef2fcfb5c65e2d02c\"", "last_updated": "2022-12-22T10:15:35Z", "stargazers_count": 31, "topics": ["dwd", "pollen", "pollenflug"], "last_fetched": 1674378075.376496, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "390073284": {"repository_manifest": {"name": "Sonos Cloud", "country": "US", "homeassistant": "2022.6.0", "render_readme": true}, "full_name": "jjlawren/sonos_cloud", "authors": ["@jjlawren"], "category": "integration", "description": "Sonos cloud API integration for Home Assistant with improved TTS/alerts handling", "domain": "sonos_cloud", "etag_repository": "W/\"a7e0c704236aa2c8ffcaefbb9cc322c32972049ececa672d3f0c14a50452730a\"", "last_updated": "2023-01-10T04:05:42Z", "stargazers_count": 87, "topics": ["sonos"], "last_fetched": 1674378015.943703, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "422834940": {"repository_manifest": {"name": "Kef Connector", "render_readme": true}, "full_name": "N0ciple/hass-kef-connector", "authors": ["@n0ciple"], "category": "integration", "description": "A Home Assistant integration for the Kef LS50W2", "domain": "kef_connector", "etag_repository": "W/\"ba2029d8d74a83484b2c1cf73b586f0fd9addb438301f604f786dcf703903a18\"", "last_updated": "2022-03-03T14:43:11Z", "stargazers_count": 1, "topics": ["kef", "ls50", "ls50w2", "speaker"], "last_fetched": 1662801898.037772, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "398781181": {"repository_manifest": {"name": "Candy Simply-Fi", "render_readme": true}, "full_name": "ofalvai/home-assistant-candy", "authors": ["@ofalvai"], "category": "integration", "description": "Unofficial Candy/Haier appliance integration for Home Assistant ", "domain": "candy", "etag_repository": "W/\"795c88d9deeb44246403597ca73688dfcd606ab2d2ddc841f1f6fb5b6acdd4cc\"", "last_updated": "2023-01-20T23:04:13Z", "stargazers_count": 64, "topics": ["candy", "haier", "home-assistant-component", "home-assistant-integration"], "last_fetched": 1674378119.401208, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "410667735": {"repository_manifest": {"name": "Reaper DAW", "homeassistant": "2021.9.0", "zip_release": true, "filename": "reaper.zip", "render_readme": true}, "full_name": "kubawolanin/ha-reaper", "authors": ["@kubawolanin"], "category": "integration", "description": "Reaper DAW custom integration for Home Assistant", "domain": "reaper", "downloads": 145, "etag_repository": "W/\"0f553e9de8fcf265bf414e18c838b416dfb5ea3eb93bf8f8b19a88083608131c\"", "last_updated": "2021-11-12T16:36:27Z", "stargazers_count": 12, "topics": ["daw", "digital-audio-workstation", "reaper"], "last_fetched": 1671385067.279709, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "418810115": {"repository_manifest": {"name": "pfSense integration for Home Assistant", "homeassistant": "2022.4.0", "render_readme": true}, "full_name": "travisghansen/hass-pfsense", "authors": ["@travisghansen"], "category": "integration", "description": "pfSense integration with Home Assistant", "domain": "pfsense", "etag_repository": "W/\"ce81e648f92e6207a5a760d5228b6ed77c978812182beedbd1b4dd21676461b1\"", "last_updated": "2023-01-20T14:44:00Z", "stargazers_count": 108, "topics": ["hassio-integration", "pfsense"], "last_fetched": 1674378233.271039, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "251039581": {"repository_manifest": {"name": "Ginlong Solis PV portal integration", "homeassistant": "2021.9"}, "full_name": "hultenvp/solis-sensor", "authors": ["@hultenvp"], "category": "integration", "description": "HomeAssistant integration for the Ginlong Solis PV Monitoring portal. This integration supports the current Platform v2.0 portal (m.ginlong.com) which supports Solis and Solarman PV inverter brands. Also supports new SolisCloud platform", "domain": "solis", "etag_repository": "W/\"bf2a1d2f1a200a1113aeaf1638c96072fc4b8f9c630135f4db38c0bad6e9824d\"", "last_updated": "2023-01-20T12:53:21Z", "stargazers_count": 90, "topics": ["ginlong", "solarman", "solis", "soliscloud"], "last_fetched": 1674377989.200588, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "407205510": {"repository_manifest": {"name": "\u041f\u0418\u041a \u0414\u043e\u043c\u043e\u0444\u043e\u043d / PIK Intercom", "render_readme": true, "country": "ru", "homeassistant": "2021.12.0"}, "full_name": "alryaz/hass-pik-intercom", "authors": ["@alryaz"], "category": "integration", "description": "\u041f\u0418\u041a \u0414\u043e\u043c\u043e\u0444\u043e\u043d \u0434\u043b\u044f Home Assistant", "domain": "pik_intercom", "etag_repository": "W/\"14577fba59c4e47537d11d24e30ad680b61185f1b6e1c37abaa06bd11b53ff8e\"", "last_updated": "2022-09-06T10:04:50Z", "stargazers_count": 27, "topics": ["intercom", "pik-group"], "last_fetched": 1671384819.86999, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "408074547": {"repository_manifest": {"name": "Acer Air Monitor", "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "sugoi-wada/acer-air-monitor-2018", "authors": ["@sugoi-wada"], "category": "integration", "description": "Acer air monitor for Home Assistant", "domain": "acer_air_monitor", "etag_repository": "W/\"791b5242c50e889abae2cf6648b9be67b340e7ca9f0d14dab5db83b9497d1210\"", "last_updated": "2022-12-18T05:09:07Z", "stargazers_count": 1, "last_fetched": 1671385220.407259, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "302985427": {"repository_manifest": {"name": "Zidoo Media Player", "homeassistant": "2022.5"}, "full_name": "wizmo2/zidoo-player", "authors": ["@wizmo2"], "category": "integration", "description": "Home-assistant custom component and api wrapper for Zidoo Media Players", "domain": "zidoo", "etag_repository": "W/\"1e55ab22e1f4067e7925d8d52548c74835aa970095a28c134699d7779fe5f223\"", "last_updated": "2022-11-10T01:46:09Z", "stargazers_count": 8, "topics": ["media", "player", "video-player", "zidoo"], "last_fetched": 1674378258.728137, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "301509152": {"repository_manifest": {"name": "Novus 300 Bus", "render_readme": true}, "full_name": "BenPru/novus300_Rs485", "authors": ["@BenPru"], "category": "integration", "description": "Home Assistant HACS component to readout values from a Paul Novus 300 ventilation system", "domain": "novus300bus", "etag_repository": "W/\"9f805cb5c6848dc1fbc011e131a161d76ab320a105b56c53b74fd77c72be698a\"", "last_updated": "2021-11-03T20:21:00Z", "stargazers_count": 4, "last_fetched": 1674377835.453844, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "417400028": {"repository_manifest": {"name": "Smart thermostat (PID)", "render_readme": true, "homeassistant": "0.104.2"}, "full_name": "ScratMan/HASmartThermostat", "authors": ["@ScratMan"], "category": "integration", "description": "Smart Thermostat with PID controller for HomeAssistant", "domain": "smart_thermostat", "etag_repository": "W/\"5ab747eda8256e8f318dba9b9f64cd5975deaefdbcd4d66111075d167444ae66\"", "last_updated": "2022-12-23T18:46:32Z", "stargazers_count": 184, "topics": ["air-conditioner", "heater", "heater-control", "heater-controller", "heating", "heating-control", "heating-controller", "pid-controller", "smart-thermostat", "thermostat"], "last_fetched": 1674378182.088185, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "422954081": {"repository_manifest": {"filename": "deebot.zip", "homeassistant": "2022.10.0b0", "name": "Deebot 4 Home Assistant", "render_readme": true, "zip_release": true}, "full_name": "DeebotUniverse/Deebot-4-Home-Assistant", "authors": ["@DeebotUniverse", "@edenhaus"], "category": "integration", "description": "Home Assistant integration for deebot vacuums", "domain": ["binary_sensor", "camera", "select", "sensor", "vacuum"], "downloads": 6175, "etag_repository": "W/\"2d44170efb46712318829ed6baf9635f64134a5357f007f01ccfe884561cfbfc\"", "last_updated": "2023-01-16T23:00:29Z", "stargazers_count": 104, "topics": ["deebot", "ecovacs", "vacuum"], "last_fetched": 1674377910.915752, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "386049746": {"repository_manifest": {"name": "Virage Dashboard", "render_readme": "true"}, "full_name": "viragelabs/virage_dashboard", "authors": ["@viragelabs"], "category": "integration", "description": "A Home Assistant integration to keep track of Virage Laboratories devices, and set up and properly label rf sensors and door contacts", "domain": "virage_dashboard", "etag_repository": "W/\"5aeefec95d7d6f8c76eae2094639f7e164753d03d2def2f76a96692c4a4ce7d8\"", "last_updated": "2022-03-04T16:24:20Z", "stargazers_count": 1, "topics": ["virage", "viragelaboratories", "viragelabs"], "last_fetched": 1665325778.184628, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "422931599": {"repository_manifest": {"name": "Better Thermostat", "render_readme": true, "homeassistant": "2021.12.0", "hide_default_branch": true}, "full_name": "KartoffelToby/better_thermostat", "authors": ["@kartoffeltoby"], "category": "integration", "description": "This custom component for Home Assistant will add crucial features to your climate-controlling TRV (Thermostatic Radiator Valves) to save you the work of creating automations to make it smart. It combines a room-temperature sensor, window/door sensors, weather forecasts, or an ambient temperature probe to decide when it should call for heat and automatically calibrate your TRVs to fix the imprecise measurements taken in the radiator's vicinity.", "domain": "ai_thermostat", "etag_repository": "W/\"f4e6b910117ae90dde46f545dcaeb3362461ede8ec6feb91476b473ba6861703\"", "last_updated": "2023-01-21T11:31:17Z", "stargazers_count": 323, "topics": ["climate", "energy-efficiency", "moes", "sea801", "sea802", "spzb0001", "thermostat", "ts0601", "tuya", "zigbee", "zigbee2mqtt"], "last_fetched": 1674378034.664785, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "439367892": {"repository_manifest": {"name": "Better Thermostat UI", "render_readme": true, "filename": "better-thermostat-ui-card.js"}, "full_name": "KartoffelToby/better-thermostat-ui-card", "category": "plugin", "description": "a custom card for a better thermostat in home assistant based on ai_thermostat intigration", "domain": "", "downloads": 7524, "etag_repository": "W/\"8070348dd9ee18fbfc5098fee698214c9a4a0c14071095b011d65e5b101661fc\"", "last_updated": "2023-01-11T08:04:43Z", "stargazers_count": 81, "topics": ["thermostat"], "last_fetched": 1674378363.445477, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "406939721": {"repository_manifest": {"name": "Hik-Connect", "country": ["EN"], "render_readme": true}, "full_name": "tomasbedrich/home-assistant-hikconnect", "authors": ["@tomasbedrich"], "category": "integration", "description": "A Home Assistant integration to communicate with Hikvision smart doorbells via Hik-Connect cloud.", "domain": "hikconnect", "etag_repository": "W/\"79fb9f319a3750cef6b572bacfd7a278bcd2edf7ee5755c360b72f39cb82771e\"", "last_updated": "2022-07-28T05:39:36Z", "stargazers_count": 31, "topics": ["hikvision"], "last_fetched": 1674378227.693808, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "433577603": {"repository_manifest": {"name": "Config Editor Card", "filename": "config-editor-card.js", "render_readme": true}, "full_name": "htmltiger/config-editor-card", "category": "plugin", "description": "Home Assistant Configuration Files Editor for Lovelace", "domain": "", "etag_repository": "W/\"030003e05aeabfc4768ce66f77da61ce4ef8541a427bdec0e5d53bd2eca38392\"", "last_updated": "2022-10-18T15:49:35Z", "stargazers_count": 31, "topics": ["homeassistant-addons", "homeassistant-config", "homeassistant-configuration", "yaml"], "last_fetched": 1672947861.172861, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "427867835": {"repository_manifest": {"name": "WeatherFlow Integration", "homeassistant": "2023.1.0"}, "full_name": "briis/hass-weatherflow", "authors": ["@briis"], "category": "integration", "description": "Home Assistant Integration for WeatherFlow Stations", "domain": "weatherflow", "etag_repository": "W/\"6834ee21b965951882439b02722b19766f1e2ff78f41cbfd655a0c0b135c2606\"", "last_updated": "2023-01-08T15:33:59Z", "stargazers_count": 51, "topics": ["python3", "weatherflow"], "last_fetched": 1674377850.055976, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "427773030": {"repository_manifest": {"name": "TuneBlade", "render_readme": true}, "full_name": "spycle/tuneblade", "authors": ["@spycle"], "category": "integration", "description": "Home Assistant custom integration for controlling AirPlay devices connected to a TuneBlade server", "domain": "tuneblade", "etag_repository": "W/\"acb0d1effd1c1159af72795a161fdf7326e7972db3f72a101508063e4025ce18\"", "last_updated": "2021-12-18T13:26:21Z", "topics": ["tuneblade"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "433577406": {"repository_manifest": {"name": "Config Editor", "render_readme": "true"}, "full_name": "htmltiger/config-editor", "authors": ["@htmltiger"], "category": "integration", "description": "Home Assistant Configuration Editor Helper", "domain": "config_editor", "etag_repository": "W/\"2e918fab32f599a64f809b5a776807e2ee6cff57e968d98ab63c26d01616eacf\"", "last_updated": "2022-10-07T10:50:39Z", "stargazers_count": 15, "topics": ["homeassistant-config"], "last_fetched": 1672948156.211027, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180032210": {"repository_manifest": {"name": "Thermal Comfort", "homeassistant": "2023.1.0", "render_readme": true, "filename": "thermal_comfort.zip"}, "full_name": "dolezsa/thermal_comfort", "authors": ["@dolezsa"], "category": "integration", "description": "Thermal Comfort sensor for HA (absolute humidity, heat index, dew point, thermal perception)", "domain": "thermal_comfort", "downloads": 14, "etag_repository": "W/\"36a96a44cdbf65bc3a1ada552ed9ce6e95f3e914e5153cc3b94f5c16c4de2bf3\"", "last_updated": "2023-01-20T20:24:17Z", "stargazers_count": 294, "topics": ["absolute-humidity", "comfort-model", "comfort-zone", "dew-point", "dew-point-perception", "heat-index", "thermal-comfort", "thermal-perception", "thermal-stress"], "last_fetched": 1674377922.577723, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "424574671": {"repository_manifest": {"name": "SP110E RGB LED BLE Controller Integration", "homeassistant": "2021.11.0", "render_readme": true}, "full_name": "roslovets/SP110E-HASS", "authors": ["@roslovets"], "category": "integration", "description": "Control SP110E RGB LED BLE Controller from Home Assistant", "domain": "sp110e", "etag_repository": "W/\"e61312074c66fa879b2fa601b40f6564db79570c967a12938631661fb95d698e\"", "last_updated": "2022-09-04T12:58:32Z", "stargazers_count": 8, "topics": ["ble", "rgb", "sp110e"], "last_fetched": 1672948330.418305, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222687548": {"repository_manifest": {"name": "Dwains Dashboard", "render_readme": true, "homeassistant": "2022.3.0"}, "full_name": "dwainscheeren/dwains-lovelace-dashboard", "authors": ["@dwainscheeren"], "category": "integration", "description": "An fully auto generating Home Assistant UI dashboard for desktop, tablet and mobile by Dwains for desktop, tablet, mobile", "domain": "dwains_dashboard", "etag_repository": "W/\"0fa2be245ff4198594b4794da63948f949874a3122e54b5b43382121485b8ab5\"", "last_updated": "2023-01-12T10:10:54Z", "stargazers_count": 1286, "topics": ["dashboard", "dwains-lovelace-dashboard", "home-assistant-dashboard"], "last_fetched": 1674377928.346406, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "405007807": {"repository_manifest": {"name": "FoxESS Cloud", "country": "NO"}, "full_name": "macxq/foxess-ha", "category": "integration", "description": "Home Assistant & FoxESS integration. Monitor you photovoltaic installation directly from HA \u2600\ufe0f \u26a1\ufe0f ", "domain": "foxess", "etag_repository": "W/\"9c863fb5f70969d4cb87d8d65f965e770f5d3aa4d0a0f9ed740be702b6ded2ca\"", "last_updated": "2023-01-22T02:05:47Z", "stargazers_count": 52, "topics": ["energy-monitor", "foxess", "photovoltaics", "pv"], "last_fetched": 1674378074.645435, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "432522624": {"repository_manifest": {"name": "GCE IPX800 V5", "country": "FR", "render_readme": true}, "full_name": "Aohzan/ipx800v5", "authors": ["@Aohzan"], "category": "integration", "description": "IPX800 V5 integration for Home-Assistant", "domain": "ipx800v5", "etag_repository": "W/\"34c1627c841e7ad7c4d53ced3d52667f219305bdb96a37351b3ec70d13b3df88\"", "last_updated": "2023-01-01T18:15:47Z", "stargazers_count": 2, "topics": ["domotique", "gce-electronics", "home-assistant-integration", "ipx800", "ipx800-v5", "ipx800v5"], "last_fetched": 1674377818.840336, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "431440766": {"repository_manifest": {"name": "HASS.Agent Notifier", "homeassistant": "2021.4", "render_readme": true}, "full_name": "LAB02-Research/HASS.Agent-Notifier", "authors": ["@LAB02-Admin"], "category": "integration", "description": "HASS.Agent Notifier integration. Adds notifications to HASS.Agent - a Windows based client for Home Assistant.", "domain": "hass_agent_notifier", "etag_repository": "W/\"a84f0dfe1948e88d983920ab12434794aa02569c1d028cb11f57ad5d7178c90e\"", "last_updated": "2022-11-17T13:29:03Z", "stargazers_count": 67, "topics": ["notifications"], "last_fetched": 1674378051.860287, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "398601732": {"repository_manifest": {"name": "FlexpoolInfo", "render_readme": true, "homeassistant": "0.100.0"}, "full_name": "ThomasPrior/FlexpoolInfo", "authors": ["@thomasprior"], "category": "integration", "description": "Provides data from Flexpool.io on a specified miner.", "domain": "flexpoolinfo", "etag_repository": "W/\"b787a8a3264128a623b98fcb6fc4407f604d3794b5c7fc0d97c5de1a55c20e45\"", "last_updated": "2022-09-15T02:28:10Z", "stargazers_count": 7, "topics": ["flexpool", "flexpool-api", "miner", "statistics"], "last_fetched": 1665325775.028993, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334925385": {"repository_manifest": {"name": "RCT Power", "hacs": "1.6.0", "homeassistant": "2021.12.0"}, "full_name": "weltenwort/home-assistant-rct-power-integration", "authors": ["@weltenwort"], "category": "integration", "description": "A Home Assistant custom component to integrate with RCT Power inverters.", "domain": "rct_power", "etag_repository": "W/\"6e967c31970d617cbc26ab68488e282460a94e6ed7799d49e58432955228d040\"", "last_updated": "2023-01-10T17:11:08Z", "stargazers_count": 27, "topics": ["rct-power"], "last_fetched": 1674378252.249919, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "380367845": {"repository_manifest": {"name": "Eufy Security", "render_readme": true}, "full_name": "fuatakgun/eufy_security", "authors": ["@fuatakgun"], "category": "integration", "description": "Home Assistant integration to manage Eufy Security devices as cameras, home base stations, doorbells, motion and contact sensors.", "domain": "eufy_security", "etag_repository": "W/\"c22c781615f303f57c23c8a02d5c5267342a6d7a9292177bba71979095857d8c\"", "last_updated": "2023-01-16T13:57:02Z", "stargazers_count": 448, "topics": ["camera", "eufy", "eufycam", "eufysecurity", "rtsp", "security"], "last_fetched": 1674377958.631535, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "439467929": {"repository_manifest": {"name": "Midea Air Appliances (LAN)", "homeassistant": "2022.5.0"}, "full_name": "nbogojevic/homeassistant-midea-air-appliances-lan", "authors": ["@nbogojevic"], "category": "integration", "description": "This Home Assistant custom component adding support for controlling Midea air conditioners and dehumidifiers on local network. ", "domain": "midea_dehumidifier_lan", "etag_repository": "W/\"990a417bdd8bfa149829df0d853ce230f5737d200fdd5d97979b590d23ad7086\"", "last_updated": "2023-01-20T23:21:46Z", "stargazers_count": 101, "topics": ["air-conditioner", "airconditioning", "dehumidifier", "midea"], "last_fetched": 1674378109.1611, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250498561": {"repository_manifest": {"name": "SecuritySpy for Home Assistant", "render_readme": true, "homeassistant": "2021.11.0"}, "full_name": "briis/securityspy", "authors": ["@briis"], "category": "integration", "description": "SecuritySpy Integration for Home Assistant with Camera Streams and Motion Detection", "domain": "securityspy", "etag_repository": "W/\"6a28cae0114a6a69d1ea267f18cbe692c76388de906129e11906339b8b2fb506\"", "last_updated": "2023-01-04T07:07:33Z", "stargazers_count": 29, "topics": ["home-assistant-component", "securityspy"], "last_fetched": 1674377852.005596, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292390011": {"repository_manifest": {"name": "Peloton", "render_readme": true}, "full_name": "edwork/homeassistant-peloton-sensor", "authors": ["@edwork"], "category": "integration", "description": "A platform which allows you to get current and past ride data from Peloton into HomeAssistant", "domain": "peloton", "downloads": 2, "etag_repository": "W/\"d2498a063ce7aa589a1bce9307c70de01f800d6fbfb272d3aa85cf9933d5ba6e\"", "last_updated": "2023-01-17T01:42:21Z", "stargazers_count": 61, "topics": ["peloton", "peloton-api", "peloton-client"], "last_fetched": 1674377932.796735, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "425931056": {"repository_manifest": {"name": "HA Kia/Hyundai", "render_readme": true, "country": ["US", "CA"], "homeassistant": "2021.10.0b0"}, "full_name": "dahlb/ha_kia_hyundai", "authors": ["@dahlb"], "category": "integration", "description": "A Home Assistant HACS integration that supports Kia Connect(Uvo). The integration supports the USA.", "domain": "ha_kia_hyundai", "etag_repository": "W/\"35d933aa578c74c70a02c2b94dc55fd4928a9d439c281cb6ad5c0132f1321176\"", "last_updated": "2022-11-11T18:00:08Z", "stargazers_count": 13, "topics": ["car", "kia", "python3", "uvo"], "last_fetched": 1671384913.822705, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "137126619": {"repository_manifest": {"name": "Visonic Intruder Alarm - PowerMax and PowerMaster Series", "homeassistant": "2022.3.3"}, "full_name": "davesmeghead/visonic", "authors": ["@davesmeghead"], "category": "integration", "description": "Visonic Custom Component for integration with Home Assistant", "domain": "visonic", "etag_repository": "W/\"f4079a527cac54706a7bfd25a2c4ab8887edb02ab019ea7ae7da3321433ccaa6\"", "last_updated": "2022-10-26T12:49:22Z", "stargazers_count": 63, "topics": ["visonic"], "last_fetched": 1674377905.116632, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "344446335": {"repository_manifest": {"name": "Office 365 Integration", "zip_release": true, "filename": "o365.zip", "homeassistant": "2022.5.0", "persistent_directory": ".O365-token-cache", "render_readme": true}, "full_name": "RogerSelwyn/O365-HomeAssistant", "authors": ["@RogerSelwyn"], "category": "integration", "description": "Office 365 integration for Home Assistant", "domain": "o365", "downloads": 764, "etag_repository": "W/\"9d814c4203ef2f6154e08851f832493f5e1dc494326c74ae5683219a9d45b03b\"", "last_updated": "2023-01-17T11:55:10Z", "stargazers_count": 69, "topics": ["homeassistant-custom-component", "microsoft", "o365"], "last_fetched": 1674378160.544385, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441738040": {"repository_manifest": {"name": "Soft Theme", "render_readme": true, "homeassistant": "2021.6", "country": "US"}, "full_name": "KTibow/lovelace-soft-theme", "category": "theme", "description": "\ud83c\udfa8 A new, simple soft theme for Home Assistant.", "domain": "", "etag_repository": "W/\"c0aeeaf696c79a1dc4201f2f090247892d15c053eec81d277fe8b1f3cfbce3c6\"", "last_updated": "2021-12-25T19:04:42Z", "stargazers_count": 20, "topics": ["soft-ui"], "last_fetched": 1666451582.150079, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441028036": {"repository_manifest": {"name": "Hilo", "hacs": "1.6.0", "country": "CA", "render_readme": true, "homeassistant": "2022.9.0"}, "full_name": "dvd-dev/hilo", "authors": ["@valleedelisle"], "category": "integration", "description": "Home Assistant Hilo Integration via HACS", "domain": "hilo", "etag_repository": "W/\"59ecc4e79ac4fe45e6d939da4782baf745ceabb27c4f218bd51ebd14fe7f50a8\"", "last_updated": "2023-01-20T10:36:59Z", "stargazers_count": 69, "topics": ["hilo", "home-automation-system", "hydro-quebec", "signalr-client"], "last_fetched": 1674377928.290373, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "424346523": {"repository_manifest": {"name": "Centrometal Boiler System", "render_readme": true, "homeassistant": "2021.11.3"}, "full_name": "9a4gl/hass-centrometal-boiler", "authors": ["@9a4gl"], "category": "integration", "description": "Home Assistant custom component integration for Centrometal Boiler System", "domain": "centrometal_boiler", "etag_repository": "W/\"8759f1cbdef82dd4d7f379293f917f88374104c5eb1fd75a43df8ee58f416800\"", "last_updated": "2022-08-24T20:25:08Z", "stargazers_count": 2, "topics": ["centrometal", "peltec"], "last_fetched": 1674377790.693257, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "437989480": {"repository_manifest": {"name": "Centrometal Boiler Display Card", "render_readme": true, "homeassistant": "2021.11.3", "filename": "centrometal-boiler-card.js"}, "full_name": "9a4gl/lovelace-centrometal-boiler-card", "category": "plugin", "description": "Lovelace Centrometal Boiler Card", "domain": "", "etag_repository": "W/\"620418477b3f1e88c83f779cb5ae636acda726b29e8beb927c414ae44a91c36e\"", "stargazers_count": 1, "topics": ["centrometal", "homeassitant", "pellet", "peltec"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "413680511": {"repository_manifest": {"name": "Toyota (North America)", "homeassistant": "2021.12.0", "render_readme": true, "zip_release": true, "filename": "ha_toyota_na.zip"}, "full_name": "widewing/ha-toyota-na", "authors": ["@widewing"], "category": "integration", "description": "Home Assistant integration for Toyota Motor (North America) connected services", "domain": "toyota_na", "downloads": 612, "etag_repository": "W/\"f85bf3750d550247e4f9b902d2b6b4d5c7e81edab0b1cfee631f0571e28373b1\"", "last_updated": "2022-05-01T23:09:25Z", "stargazers_count": 23, "topics": ["car", "toyota", "vehicle"], "last_fetched": 1672948418.581905, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441920613": {"repository_manifest": {"name": "Thermia Heat Pump", "render_readme": true}, "full_name": "klejejs/ha-thermia-heat-pump-integration", "authors": ["@klejejs"], "category": "integration", "description": "Thermia Heat Pump Integration for Home Assistant", "domain": "thermia", "etag_repository": "W/\"63eaffdf9e74e0d0b4f13be629dbca232f3097fa2f851816ef27ed0ffa595a55\"", "last_updated": "2023-01-20T00:52:15Z", "stargazers_count": 10, "topics": ["heat-pump", "thermia"], "last_fetched": 1674378037.948449, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441942093": {"repository_manifest": {"name": "keyatome", "homeassistant": "2021.12.0"}, "full_name": "jugla/keyatome", "authors": ["@jugla", "@baqs"], "category": "integration", "description": "Home Assistant component to handle key atome (linky) -conso live feature-", "domain": "keyatome", "etag_repository": "W/\"de2f00f1c5d32a3d0e3e456419a69a4def4c2dae8181e53650960be8a1e75521\"", "last_updated": "2022-12-10T14:44:45Z", "stargazers_count": 18, "topics": ["atome", "keyatome", "linky"], "last_fetched": 1672948195.212742, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "440374794": {"repository_manifest": {"name": "history-explorer-card", "filename": "history-explorer-card.js"}, "full_name": "alexarch21/history-explorer-card", "category": "plugin", "description": "A card for Home Assistant Lovelace for exploring the history of your entities interactively and in real time.", "domain": "", "downloads": 3310, "etag_repository": "W/\"822974ee5c15f6930505e118e96a57181b1621a0011db454ce2e884f113a8be4\"", "last_updated": "2023-01-22T00:33:22Z", "stargazers_count": 178, "topics": ["history"], "last_fetched": 1674378271.703118, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443651710": {"repository_manifest": {"name": "Midnight Teal", "render_readme": true}, "full_name": "Neekster/MidnightTeal", "category": "theme", "description": "A dark teal theme for HomeAssistant.", "domain": "", "etag_repository": "W/\"fb129ed4ffd3f4be380c15808c71b735acd26067dfe74960bb261f26fde16622\"", "last_updated": "2022-02-05T21:39:51Z", "stargazers_count": 1, "topics": ["dark-theme"], "last_fetched": 1645379977.498263, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "413812496": {"repository_manifest": {"name": "Plotly Graph Card", "render_readme": true, "filename": "plotly-graph-card.js"}, "full_name": "dbuezas/lovelace-plotly-graph-card", "category": "plugin", "description": "Highly customisable Lovelace card to plot interactive graphs. Brings scrolling, zooming, and much more!", "domain": "", "downloads": 4167, "etag_repository": "W/\"ca7245a88de79acc0dc254edaf6cf3ef8b64a6792864760e89606a82a543636b\"", "last_updated": "2023-01-17T08:52:51Z", "stargazers_count": 98, "topics": ["graphs", "history", "lovelace-custom-card", "navigate", "plotly", "plotlyjs", "plots", "scroll", "zoom"], "last_fetched": 1674378312.898513, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "426814988": {"repository_manifest": {"name": "Schedule State", "render_readme": true}, "full_name": "aneeshd/schedule_state", "authors": ["@aneeshd"], "category": "integration", "description": "HA sensor that returns a string based on a defined schedule, enabling further automations", "domain": "schedule_state", "etag_repository": "W/\"806944bfe3a95cec467f1e8e48da90f7c6e849c37993be1e32cb8f91cbcd0205\"", "last_updated": "2023-01-09T18:43:44Z", "stargazers_count": 26, "topics": ["automation", "scheduler", "timetable"], "last_fetched": 1674377813.789716, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "445609628": {"repository_manifest": {"name": "PID Controller", "zip_release": true, "homeassistant": "2021.9", "render_readme": true, "persistent_directory": "codes", "filename": "pid_controller.zip"}, "full_name": "soloam/ha-pid-controller", "authors": ["@Soloam"], "category": "integration", "description": "PID Controller to Home Assistant", "domain": "pid_controller", "downloads": 706, "etag_repository": "W/\"040c6ecbced673393376dbe94cf0cb8984512da4413ca7449220473925d79853\"", "last_updated": "2022-11-09T00:39:55Z", "stargazers_count": 48, "topics": ["pid", "thermostat"], "last_fetched": 1674378198.440194, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443529332": {"repository_manifest": {"name": "Bobcat Miner 300", "render_readme": true}, "full_name": "ardevd/ha-bobcatminer", "authors": ["@ardevd"], "category": "integration", "description": "Home Assistant integration for the Bobcat Helium Miner", "domain": "bobcatminer", "etag_repository": "W/\"8ec5a2ee34a20c83732a7f4f97b293b342ed41c29ffcf838e69a6ad02f844b5b\"", "last_updated": "2023-01-09T12:17:31Z", "stargazers_count": 11, "topics": ["bobcatminer", "cryptocurrency", "helium", "mining"], "last_fetched": 1674377819.527919, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "419786466": {"repository_manifest": {"name": "SolarEdge Modbus Multi Device", "homeassistant": "2022.11.0"}, "full_name": "WillCodeForCats/solaredge-modbus-multi", "authors": ["@WillCodeForCats"], "category": "integration", "description": "A Home Assistant custom integration for SolarEdge inverters using Modbus/TCP. Supports single inverters, multiple inverters, meters, batteries, and a lot more.", "domain": "solaredge_modbus", "etag_repository": "W/\"093ca17484404f64b04ffcc2549b4112787d2f0a94a698ee6c0aa1ddccec91a9\"", "last_updated": "2023-01-21T17:15:53Z", "stargazers_count": 54, "topics": ["modbus-tcp", "solaredge", "solaredge-inverter"], "last_fetched": 1674378253.769836, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "432434646": {"repository_manifest": {"name": "Securitas Direct Alarm", "homeassistant": "2021.9.0"}, "full_name": "guerrerotook/securitas-direct-new-api", "authors": ["@guerrerotook"], "category": "integration", "description": "This repository contains the new securitas direct API that can be integrated in Home Assistant", "domain": "securitas", "etag_repository": "W/\"a17549d028efd6a221497b2e10d50b6a919817b101b6fffd653d9751963b188c\"", "last_updated": "2022-10-11T17:36:57Z", "stargazers_count": 36, "last_fetched": 1674377973.377139, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448355900": {"repository_manifest": {"name": "Vastayan Bond", "render_readme": true}, "full_name": "SnakeFist007/ha_vastayan_bond", "category": "theme", "description": "Inspired by the color schemes of Xayah & Rakan. Still work-in-progress, feedback is much appreciated!", "domain": "", "etag_repository": "W/\"549af3ee6486c7fbe02957c17e09d3433086c13f6b8560a7160d964ce2d07571\"", "last_updated": "2022-01-28T13:15:16Z", "stargazers_count": 2, "topics": ["bond", "rakan", "vastayan", "xayah"], "last_fetched": 1644064204.694865, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "449416816": {"repository_manifest": {"name": "Sonos Card", "render_readme": true, "filename": "custom-sonos-card.js"}, "full_name": "johanfrick/custom-sonos-card", "category": "plugin", "description": "Home Assistant custom lovelace sonos card", "domain": "", "downloads": 2381, "etag_repository": "W/\"227232b84ec765d048e8615b3a4b707da93ea078114005c6ababb8e10ea7468c\"", "last_updated": "2023-01-13T19:09:08Z", "stargazers_count": 45, "topics": ["lovelace-custom-card", "sonos"], "last_fetched": 1674378356.904815, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "452251255": {"repository_manifest": {"name": "Browser Control Card", "content_in_root": true, "filename": "browser-control-card.js", "render_readme": "true"}, "full_name": "mathoudebine/homeassistant-browser-control-card", "category": "plugin", "description": "Control your browser from a Home Assistant lovelace card: full screen, disable screen lock, zoom, reload page...", "domain": "", "downloads": 1655, "etag_repository": "W/\"0e16db9a95398cedeb70c00a3b08e979c8dc0599bc0bf33f5a1d9ced02c73ed6\"", "last_updated": "2022-04-15T16:22:59Z", "stargazers_count": 8, "topics": ["browser", "browser-control", "card", "fullscreen", "lock", "refresh", "reload", "sleep", "wake-on-lan", "zoom"], "last_fetched": 1662898060.887969, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "449218690": {"repository_manifest": {}, "full_name": "rautesamtr/thermal_comfort_icons", "category": "plugin", "description": "Thermal Comfort custom icons for Home Assistant to accompany the MDI icons", "domain": "", "etag_repository": "W/\"f0f672aeac95ecf0ab5ea8786bf074366f27ee21b11daca9cc4f71e8c92f6fc6\"", "last_updated": "2022-01-29T15:14:16Z", "stargazers_count": 14, "topics": ["absolute-humidity", "dew-point", "dew-point-perception", "frost-point", "frost-risk", "heat-index", "icons", "iconset", "simmer-index", "simmer-zone", "thermal-perception"], "last_fetched": 1674378404.474726, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442001863": {"repository_manifest": {"name": "TP-Link Deco", "hacs": "1.6.0", "homeassistant": "0.118.0", "render_readme": true}, "full_name": "amosyuen/ha-tplink-deco", "authors": ["@amosyuen"], "category": "integration", "description": "Home Assistant TP-Link Deco Custom Component", "domain": "tplink_deco", "etag_repository": "W/\"0480cfc98df205ab8fae6e3dc9d29c197bef4df2009fe9841e9c315ee733b63f\"", "last_updated": "2023-01-21T23:06:42Z", "stargazers_count": 80, "topics": ["router", "tp-link"], "last_fetched": 1674377812.687129, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "380330823": {"repository_manifest": {"name": "Eldes Alarm", "render_readme": true}, "full_name": "augustas2/eldes", "authors": ["@augustas2"], "category": "integration", "description": "Home Assistant custom component for Eldes Alarm system", "domain": "eldes_alarm", "etag_repository": "W/\"c7ea6247e432c0d0af626558ae72ad63c9b80e32ccad56063c7ab1df26312cc7\"", "last_updated": "2023-01-13T16:03:45Z", "stargazers_count": 10, "topics": ["alarm", "alarm-panel", "alarm-system", "eldes", "esim364", "esim384", "output", "pitbull-alarm-pro", "switch"], "last_fetched": 1674377825.803275, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "450192057": {"repository_manifest": {"name": "SkyKettle", "homeassistant": "2022.8.1", "render_readme": true, "country": ["RU"]}, "full_name": "ClusterM/skykettle-ha", "authors": ["@clusterm"], "category": "integration", "description": "Redmond SkyKettle integration for Home Assistant", "domain": "skykettle", "etag_repository": "W/\"6c912a61a0d36cec84a4d73be924bed9235f6c0e2d85fa7921f0467c1a40679b\"", "last_updated": "2023-01-11T18:21:27Z", "stargazers_count": 50, "topics": ["kettle", "redmond", "skykettle"], "last_fetched": 1674377867.36778, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "447307317": {"repository_manifest": {"name": "Holidays", "zip_release": true, "filename": "holidays.zip", "homeassistant": "2022.12.0"}, "full_name": "bruxy70/Holidays", "authors": ["@bruxy70"], "category": "integration", "description": "\ud83d\udcc5 Custom Home Assistant integration for public holidays - also used for garbage_collection integration to automatically move scheduled events that fall on a public holiday (by an automation blueprint)", "domain": "holidays", "downloads": 1657, "etag_repository": "W/\"c5adc207ac32e48afef8fb7e46ed0c3605523b7525df206897d918e8354973cf\"", "last_updated": "2023-01-17T20:39:26Z", "stargazers_count": 31, "topics": ["calendar", "country-holidays", "garbage-collection", "holidays", "public-holidays"], "last_fetched": 1674377853.981735, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441294260": {"repository_manifest": {"name": "Auto Areas", "render_readme": true}, "full_name": "c-st/auto_areas", "authors": ["@c-st"], "category": "integration", "description": "\ud83e\udd16 A custom component for Home Assistant which automates your areas.", "domain": "auto_areas", "etag_repository": "W/\"dd2a4b786c3f4f8283e43bc99281e8734d8927020d547f59bff66ae6c12c3283\"", "last_updated": "2023-01-10T20:56:55Z", "stargazers_count": 18, "last_fetched": 1674377855.987682, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "431901513": {"repository_manifest": {"name": "Fluid Level Background Card", "render_readme": true, "filename": "fluid-level-background-card.js"}, "full_name": "swingerman/lovelace-fluid-level-background-card", "category": "plugin", "description": "This card wraps any other cards and renders a fluid background behind them.", "domain": "", "downloads": 1284, "etag_repository": "W/\"36307910e78857f53869c2769333bb62e21d2f3b4f7af1a351d1fb1aa8f7c0ab\"", "last_updated": "2022-12-12T01:23:40Z", "stargazers_count": 16, "topics": ["lovelace-card"], "last_fetched": 1671387205.726772, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "440617082": {"repository_manifest": {"name": "NYC 311 Public Services Calendar", "render_readme": true}, "full_name": "elahd/ha-nyc311", "authors": ["@elahd"], "category": "integration", "description": "Home Assistant integration for NYC trash collection, school, and alternate side parking schedules.", "domain": "nyc311", "etag_repository": "W/\"9d1b0bffbe86b0e6aa0e72d121faecc52f66f3dd9b9a17bf4f5244e827171b64\"", "last_updated": "2023-01-03T22:17:24Z", "stargazers_count": 4, "topics": ["community", "government-data", "nyc", "nyc-opendata"], "last_fetched": 1672948105.266002, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "267583249": {"repository_manifest": {"name": "Omnik Solar integration", "homeassistant": "2021.9"}, "full_name": "hultenvp/home_assistant_omnik_solar", "authors": ["@hultenvp"], "category": "integration", "description": "Home Assistant Omnik Solar sensor component", "domain": "omnik", "etag_repository": "W/\"b14b36c385d342856ddf7583af2f06229004e1b4855a54cf649fdf54f815b363\"", "last_updated": "2022-01-29T20:42:45Z", "stargazers_count": 5, "topics": ["home-assistant-component", "omnik", "solar"], "last_fetched": 1665325571.797845, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "447878635": {"repository_manifest": {"name": "Yandex weather", "country": "RU", "zip_release": true, "filename": "yandex_weather.zip", "homeassistant": "2022.8.0"}, "full_name": "IATkachenko/HA-YandexWeather", "authors": ["@IATkachenko"], "category": "integration", "description": "Yandex weather intergration for Home Assistant", "domain": "yandex_weather", "downloads": 2181, "etag_repository": "W/\"3a86e7ca1f2ce24d13ab912a15534f7000c5e5187368932709ae847b75e009a9\"", "last_updated": "2022-12-07T06:26:04Z", "stargazers_count": 100, "topics": ["weather", "yandex-weather"], "last_fetched": 1674377992.771765, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "451209586": {"repository_manifest": {"name": "Flagdays DK", "country": ["DK"], "render_readme": true}, "full_name": "J-Lindvig/Flagdays_DK", "authors": ["@J-Lindvig"], "category": "integration", "description": "\ud83c\udde9\ud83c\uddf0 Official flagdays in Denmark with a lot of useful logic and attributes. It is possible to add your own anniversaries \ud83c\udf82 or special flags \ud83c\udff3\ufe0f\u200d\ud83c\udf08 \ud83c\udff4\u200d\u2620\ufe0f", "domain": "flagdays_dk", "etag_repository": "W/\"5f19d15deda08f053cb8abd93022ecad40b542da1ae29b8e0aced55b9773e9ee\"", "last_updated": "2023-01-16T18:16:35Z", "stargazers_count": 4, "topics": ["anniversaries", "denmark", "flagdays", "pride"], "last_fetched": 1674377999.296874, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448980525": {"repository_manifest": {"name": "\ud83e\uddf0 ZHA Toolkit - Service for advanced Zigbee Usage", "zip_release": true, "render_readme": true, "persistent_directory": "local", "homeassistant": "2021.1"}, "full_name": "mdeweerd/zha-toolkit", "authors": ["@mdeweerd"], "category": "integration", "description": "\ud83e\uddf0 Zigbee Home Assistant Toolkit - service for \"rare\" Zigbee operations using ZHA on Home Assistant", "domain": "zha_toolkit", "downloads": 1727, "etag_repository": "W/\"a581a6bfa7604813e51449100e3d971af020519006e82721d096c0ccc3c93c88\"", "last_updated": "2023-01-20T23:31:29Z", "stargazers_count": 58, "topics": ["home-assistant-component", "zha", "zigbee", "zigpy"], "last_fetched": 1674378086.347258, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "446609758": {"repository_manifest": {"name": "Nicehash Excavator API", "render_readme": true, "homeassistant": "2021.12.1"}, "full_name": "MesserschmittX/ha-nicehash-excavator-monitor", "authors": ["@MesserschmittX"], "category": "integration", "description": "Home Assistant integration for Nicehash Excavator miner API", "domain": "nicehash_excavator", "etag_repository": "W/\"845b01985cfbc19334531d36e73ae4e3e2a6c4e4f8f3221bf17678c869e39f4d\"", "last_updated": "2022-05-15T07:11:45Z", "stargazers_count": 4, "topics": ["excavator", "mining", "nicehash"], "last_fetched": 1661585203.898022, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319401286": {"repository_manifest": {"name": "Rademacher HomePilot Bridge", "zip_release": true, "filename": "rademacher.zip", "country": "PT", "homeassistant": "2021.12.8", "render_readme": true}, "full_name": "peribeir/homeassistant-rademacher", "authors": ["@peribeir"], "category": "integration", "description": "This custom integration provides access to Rademacher Devices connected to a HomePilot (or Start2Smart) bridge.", "domain": "rademacher", "downloads": 599, "etag_repository": "W/\"9a0539132621d77d3ca08c43b52d71a54cfd40985c431903b17a8bf4342b0284\"", "last_updated": "2023-01-20T20:09:04Z", "stargazers_count": 26, "topics": ["homepilot", "iot", "rademacher"], "last_fetched": 1674378127.343333, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269113518": {"repository_manifest": {"name": "xcomfort"}, "full_name": "plamish/xcomfort", "authors": ["@plamish"], "category": "integration", "description": "Eaton xComfort SHC integration for Home Assistant", "domain": "xcomfort", "etag_repository": "W/\"bf861935632fee59892a88303ee95d460335fac654e904e7bee1bfee17148e19\"", "last_updated": "2022-04-02T15:21:34Z", "stargazers_count": 10, "topics": ["eaton", "xcomfort"], "last_fetched": 1671385162.406292, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "323923603": {"repository_manifest": {"name": "Tapo Controller", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2022.12.8"}, "full_name": "petretiandrea/home-assistant-tapo-p100", "authors": ["@petretiandrea"], "category": "integration", "description": "A custom integration to control Tapo devices from home assistant.", "domain": "tapo", "etag_repository": "W/\"4db72ab12c64e05bb6c4d7536cf02a3af13fc6a8e5f1678a7486f709497530fb\"", "last_updated": "2023-01-16T20:13:39Z", "stargazers_count": 303, "topics": ["energy", "l510", "l530", "l900", "monitoring", "p100", "p105", "p110", "smart-plug", "tapo", "tapo-device", "tapo-light-bulb"], "last_fetched": 1674378129.613018, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "427902632": {"repository_manifest": {"name": "Solarman Integration"}, "full_name": "StephanJoubert/home_assistant_solarman", "authors": ["@StephanJoubert"], "category": "integration", "description": "Home Assistant component for Solarman collectors used with a variety of inverters. ", "domain": "solarman", "etag_repository": "W/\"69c25b3121d6db8538e48e8b5e2971b8fb5599731079221d3a593a229f73ad35\"", "last_updated": "2023-01-19T14:59:13Z", "stargazers_count": 173, "topics": ["deye", "energy", "inverter", "sofar", "sol-ark", "solar", "solarman", "solis", "sunsynk"], "last_fetched": 1674378199.672714, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442181774": {"repository_manifest": {"name": "Daikin Altherma", "render_readme": true}, "full_name": "tadasdanielius/daikin_altherma", "authors": ["@tadasdanielius"], "category": "integration", "description": "Daikin Altherma custom component for home assistant", "domain": "daikin_altherma", "etag_repository": "W/\"18b255b6e788088c5c9465bc8253d71b8431d936554cc20868f1dd26e0e8d53e\"", "last_updated": "2022-12-30T08:52:12Z", "stargazers_count": 34, "topics": ["altherma", "brp069a61", "brp069a62", "daikin", "daikin-altherma", "homeassistant-custom-component"], "last_fetched": 1674378209.135917, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448604854": {"repository_manifest": {"name": "Cardiff Waste", "homeassistant": "2021.12.0", "render_readme": true, "country": "GB"}, "full_name": "TomBrien/cardiffwaste-ha", "authors": ["@tombrien"], "category": "integration", "description": "A Home Assistant integration to provide sensors for waste collections in Cardiff, UK", "domain": "cardiffwaste", "etag_repository": "W/\"e6ce808ba6b71b61eb10ed65d248e01c7e97bfbbc60df2a63995658cc581388d\"", "last_updated": "2022-12-22T23:22:44Z", "stargazers_count": 9, "topics": ["cardiff", "waste-collection"], "last_fetched": 1674378228.164966, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "389366750": {"repository_manifest": {"name": "Rental Control", "hacs": "1.13.2", "zip_release": true, "filename": "rental_control.zip", "homeassistant": "2022.5.0"}, "full_name": "tykeal/homeassistant-rental-control", "authors": ["@tykeal"], "category": "integration", "description": "Rental Control system for Home Assistant", "domain": "rental_control", "downloads": 145, "etag_repository": "W/\"26fe1be89ad37e3c61de3dd93c5f80e5533453669d38ad9c5794107df60a4cc4\"", "last_updated": "2023-01-18T23:30:30Z", "stargazers_count": 17, "topics": ["airbnb", "ical", "locks"], "last_fetched": 1674378240.387054, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "413798425": {"repository_manifest": {"name": "UI Lovelace Minimalist", "render_readme": true, "homeassistant": "2021.5.0", "zip_release": true, "filename": "ui_lovelace_minimalist.zip"}, "full_name": "UI-Lovelace-Minimalist/UI", "authors": ["@stokkie90"], "category": "integration", "description": "UI-Lovelace-Minimalist is a \"theme\" for HomeAssistant", "domain": "ui_lovelace_minimalist", "downloads": 19670, "etag_repository": "W/\"b15eb618905d9c9cbd0ed41559cb31d15f1a1a413a8541ca7771d9958a815281\"", "last_updated": "2023-01-15T18:57:13Z", "stargazers_count": 1028, "last_fetched": 1674378241.034648, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "444350375": {"repository_manifest": {"name": "Mushroom", "filename": "mushroom.js", "homeassistant": "2022.11.0", "render_readme": true}, "full_name": "piitaya/lovelace-mushroom", "category": "plugin", "description": "Mushroom Cards - Build a beautiful dashboard easily \ud83c\udf44", "domain": "", "downloads": 9745, "etag_repository": "W/\"d9fb8a15a718bdce2841c5f2f3e2b1ccaa222ef12e2a39bf50c93516c2a4253d\"", "last_updated": "2023-01-21T14:17:07Z", "stargazers_count": 1955, "topics": ["card", "mushroom"], "last_fetched": 1674378397.327099, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "453143227": {"repository_manifest": {"name": "Juwel Helialux Smart Controller", "country": "GB", "render_readme": true}, "full_name": "MrSleeps/Juwel-HeliaLux-Home-Assistant-Custom-Component", "authors": ["@mrsleeps"], "category": "integration", "description": "A custom component for Home Assistant to monitor your Juwel HeliaLux light states", "domain": "juwel_helialux", "etag_repository": "W/\"203150006fba877ea08bccd3beb9d1add02128dda6d31969c109fd266c81946c\"", "last_updated": "2022-11-24T15:37:37Z", "stargazers_count": 7, "topics": ["aquarium", "home-assistant-component", "lightning"], "last_fetched": 1672948268.581335, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "453890532": {"repository_manifest": {"name": "Ontario Energy Board", "render_readme": true, "country": "CA"}, "full_name": "jrfernandes/ontario_energy_board", "authors": ["@jrfernandes"], "category": "integration", "description": "Home Assistant component that installs a sensor with the current energy rate for Ontario energy companies", "domain": "ontario_energy_board", "etag_repository": "W/\"e0e5b6fccb53ab547fb7524beb37d555d8221bc32fee61631bae81e7cb33a243\"", "last_updated": "2023-01-18T04:57:24Z", "stargazers_count": 15, "topics": ["canada", "electricity", "energy-prices", "hydro", "ontario"], "last_fetched": 1674378022.454182, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441369133": {"repository_manifest": {"name": "SmartRent", "render_readme": true, "zip_release": true, "filename": "smartrent.zip"}, "full_name": "ZacheryThomas/homeassistant-smartrent", "authors": ["@zacherythomas"], "category": "integration", "description": "Home Assistant Custom Component for SmartRent Locks \ud83d\udd10, Thermostats \ud83c\udf21, Sensors \ud83d\udca7 and Switches\ud83d\udca1", "domain": "smartrent", "downloads": 171, "etag_repository": "W/\"01bd73ebc3cea4c8d5383a331a23ac0ea908a84743d6660f471319d59899085e\"", "last_updated": "2022-12-08T16:32:58Z", "stargazers_count": 30, "topics": ["smartrent"], "last_fetched": 1674378265.303979, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "453785158": {"repository_manifest": {"name": "gogs", "render_readme": true, "country": "FR"}, "full_name": "youdroid/home-assistant-gogs", "authors": ["@youdroid"], "category": "integration", "description": "Gogs component to follow your repositories", "domain": "gogs", "etag_repository": "W/\"05b31b54506f886c3a089cee6719ab0985b318a301c185baa21ece884aff16b8\"", "last_updated": "2022-04-24T20:35:04Z", "stargazers_count": 1, "topics": ["gogs", "home-assistant-component"], "last_fetched": 1653229967.488259, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454951296": {"repository_manifest": {"name": "Raspberry Pi GPIO", "homeassistant": "2022.7.0"}, "full_name": "thecode/ha-rpi_gpio", "authors": ["@thecode"], "category": "integration", "description": "Home Assistant Raspberry Pi GPIO Integration", "domain": "rpi_gpio", "etag_repository": "W/\"d8b4212a254583ad0e1628fc58fab48e9050ba20ba6c3e133e8954bb9e66d26f\"", "last_updated": "2023-01-13T18:32:09Z", "stargazers_count": 103, "topics": ["iot", "raspberry-pi", "rpi-gpio"], "last_fetched": 1674378212.292993, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "452272431": {"repository_manifest": {"name": "bemfa", "render_readme": true, "country": "CN", "homeassistant": "2021.12.10"}, "full_name": "larry-wong/bemfa", "authors": ["@larry-wong"], "category": "integration", "description": "\u5c06 Home Assistant \u5b9e\u4f53\u540c\u6b65\u81f3\u5df4\u6cd5\u4e91\uff0c\u5e76\u4f7f\u7528\u5c0f\u7231\u540c\u5b66/\u5929\u732b\u7cbe\u7075/\u5c0f\u5ea6\u97f3\u7bb1\u63a7\u5236\u3002", "domain": "bemfa", "etag_repository": "W/\"f79a9e0132f45c7b3ed615274956d3b7bdf3da677cee3dc6475dafc3fee4fcf1\"", "last_updated": "2022-11-23T15:17:33Z", "stargazers_count": 156, "last_fetched": 1674378053.266137, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454942078": {"repository_manifest": {"name": "Tenda AC23 Router Device Tracker", "render_readme": true}, "full_name": "sakowicz/home-assistant-tenda-tracker", "authors": ["@sakowicz"], "category": "integration", "description": "Track your devices via Tenda AC23 router using Home Assistant's device tracker", "domain": "tenda_tracker", "etag_repository": "W/\"7bf84aa4c1582136f50c936bbbb10fc60f6e9805a6aa09b443689e53f0dc0c0a\"", "last_updated": "2022-06-01T06:10:25Z", "stargazers_count": 3, "topics": ["device-tracker", "home", "tenda", "tenda-ac23", "tracker"], "last_fetched": 1671385198.637087, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "455217528": {"repository_manifest": {"name": "systemd notifier", "render_readme": true}, "full_name": "brianegge/home-assistant-sdnotify", "authors": ["@brianegge"], "category": "integration", "description": "systemd service for Home Assistant", "domain": "sdnotify", "etag_repository": "W/\"a2872bb3d4742e2946f1a3a94e1242cee5571e6905207d108e9c6f389751c214\"", "last_updated": "2022-05-29T10:15:45Z", "stargazers_count": 11, "topics": ["systemd"], "last_fetched": 1674377849.657529, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443297453": {"repository_manifest": {"name": "hasslife", "country": "CN", "render_readme": true}, "full_name": "Blear/HassLife", "category": "integration", "description": "\u5929\u732b\u7cbe\u7075\u3001\u5c0f\u7231\u540c\u5b66\u63a7\u5236HomeAssistant\u8bbe\u5907\u548c\u5c5e\u6027\u4e0a\u62a5\u67e5\u8be2", "domain": "hasslife", "etag_repository": "W/\"14417ee9ca63bc825288c17dc79eddc2270ca55af39939fb61a62c06048a67ff\"", "last_updated": "2022-10-26T05:29:56Z", "stargazers_count": 66, "topics": ["miiot", "tmall", "tmall-genie"], "last_fetched": 1672948004.558348, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "398767994": {"repository_manifest": {"name": "Wibeee (and Mirubee) energy monitor", "render_readme": true, "zip_release": true, "filename": "hass_wibeee.zip", "homeassistant": "2022.2.0"}, "full_name": "luuuis/hass_wibeee", "authors": ["@luuuis"], "category": "integration", "description": "Home Assistant: Wibeee energy monitor custom component", "domain": "wibeee", "downloads": 316, "etag_repository": "W/\"10c9b13485b61ea318bcc3221e23b7755233970789d729717abafa914970c9a5\"", "last_updated": "2022-10-05T10:38:18Z", "stargazers_count": 10, "topics": ["circutor", "mirubee", "smilics", "wibeee"], "last_fetched": 1671385092.164211, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "450898706": {"repository_manifest": {"name": "Only Lock Lock Row", "filename": "content.js", "render_readme": true}, "full_name": "frozenwizard/onlylocklock", "category": "plugin", "description": "Custom entity rows that prevent users from unlocking a lock, disarming a security system(alarm), opening a cover(garage door).", "domain": "", "etag_repository": "W/\"b14b259fe810db7d7ec311f20bcfac1e1bbae6e5605e7a67df8d1e786ed20d26\"", "last_updated": "2022-11-15T19:42:05Z", "stargazers_count": 4, "topics": ["alarm", "cover", "frontend", "lock"], "last_fetched": 1671385359.044607, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458636658": {"repository_manifest": {"name": "iOS Theme - Based on the system-wide light and dark mode UI", "render_readme": true}, "full_name": "JuanMTech/ios-theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- Theme based on the iOS system-wide light and dark mode interface", "domain": "", "etag_repository": "W/\"c845c3e7bd917e8959aaa974733bdde114eef664a8a99ad93036a0df06b2ba50\"", "last_updated": "2023-01-13T19:19:48Z", "stargazers_count": 15, "topics": ["darkmode", "darktheme", "lightmode", "lighttheme"], "last_fetched": 1674378468.78693, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "457458731": {"repository_manifest": {"name": "Material 3 Dark & Light Theme 07: DarkOliveGreen", "filename": "m3-07-darkolivegreen.yaml", "render_readme": "true"}, "full_name": "AmoebeLabs/HA-Theme_M3-07-DarkOliveGreen", "category": "theme", "description": "Material Design 3 based theme (dark olive green) for Home Assistant", "domain": "", "etag_repository": "W/\"19e4ee2d162d0bd1899f5f3f094309d95f400a7fe0a097d9c32f48fca1515217\"", "last_updated": "2022-06-15T07:56:39Z", "stargazers_count": 1, "topics": ["dark-mode", "dark-theme", "home-assistant-theme", "light-mode", "light-theme", "material-3"], "last_fetched": 1671387209.575237, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "456201687": {"repository_manifest": {"name": "Mushroom Themes", "homeassistant": "2022.11.0b0", "render_readme": true}, "full_name": "piitaya/lovelace-mushroom-themes", "category": "theme", "description": "Additional themes for Lovelace Mushroom Cards \ud83c\udf44", "domain": "", "etag_repository": "W/\"ac72fbf9e793133d6ac1b70394453d45b12333ae62ff25e413023c85195f8d73\"", "last_updated": "2022-11-03T11:39:08Z", "stargazers_count": 134, "topics": ["mushroom"], "last_fetched": 1674378480.273148, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458817847": {"repository_manifest": {"name": "Material 3 Dark & Light Theme xx: yyyy", "filename": "m3-xx-yyyy.yaml", "render_readme": "true"}, "full_name": "AmoebeLabs/HA-Theme_M3-04-Magenta", "category": "theme", "description": "Material Design 3 / Material YOU theme for Home Assistant", "domain": "", "etag_repository": "W/\"9e78952d7b6f519645cc7ed69a1b2a61a7bfbdf1d1333c2d39d946738c353466\"", "topics": ["dark-mode", "home-assistant-theme", "light-mode", "material-3"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458491675": {"repository_manifest": {"name": "Nicehash Excavator Monitor Card", "filename": "nicehash-excavator-monitor-card.js", "render_readme": true}, "full_name": "MesserschmittX/lovelace-nicehash-excavator-monitor-card", "category": "plugin", "description": "Home Assistant UI Card for Nicehash Excavator Monitor integration", "domain": "", "etag_repository": "W/\"01f7f45a1708db4f5c7f844ba7a71edd964af811d0121ecad5a11f8861d09766\"", "topics": ["excavator", "mining", "nicehash"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458664750": {"repository_manifest": {"name": "Google Theme - Based on the Android light and dark interface", "render_readme": true}, "full_name": "JuanMTech/google-theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- Theme based on the Google Android light and dark mode interface", "domain": "", "etag_repository": "W/\"94063579c9b4cc9c13758a740fc42426b455854ddb971f2ef580823bce267d64\"", "last_updated": "2023-01-13T19:49:35Z", "stargazers_count": 52, "topics": ["darkmode", "googletheme", "lightmode"], "last_fetched": 1674378468.766674, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316396217": {"repository_manifest": {"name": "Mjpeg Timelapse", "homeassistant": "0.118.0", "render_readme": true}, "full_name": "evilmarty/mjpeg-timelapse", "authors": ["@evilmarty"], "category": "integration", "description": "Mjpeg Timelapse integration for Home Assistant", "domain": "mjpeg_timelapse", "etag_repository": "W/\"d6624383fb6a38f265339186b3a485dca0f03e53dfcf69315e2fd18af57a83e4\"", "last_updated": "2022-06-10T09:00:09Z", "stargazers_count": 14, "topics": ["camera"], "last_fetched": 1674377944.128807, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442878365": {"repository_manifest": {"name": "Golden Security Alarm", "render_readme": true}, "full_name": "hostcc/hass-gs-alarm", "authors": ["@hostcc"], "category": "integration", "description": "Custom Home Assistant integration for G90 security systems", "domain": "gs_alarm", "etag_repository": "W/\"22262c0e6d22196d7dc31222c946a02da65b3e334a9765e204cc33d0a442d865\"", "last_updated": "2022-12-10T16:34:22Z", "stargazers_count": 1, "last_fetched": 1671385003.642298, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "460392242": {"repository_manifest": {"name": "Svensk Postutdelning", "country": "SE", "homeassistant": "2022.03.0"}, "full_name": "DSorlov/swemail", "authors": ["@dsorlov"], "category": "integration", "description": "Swedish Post Delivery integration for Home Assistant", "domain": "swemail", "etag_repository": "W/\"19618c64c9a5ccde9fa9d0b1512149e3498e3d83dc390990c20f43ff83e84124\"", "last_updated": "2022-12-21T23:22:36Z", "stargazers_count": 16, "topics": ["citymail", "postnord"], "last_fetched": 1674377926.5184, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "387116237": {"repository_manifest": {"name": "XMRIG integration", "render_readme": true}, "full_name": "hwmland/homeassistant-xmrig", "authors": ["@hwmland"], "category": "integration", "description": "XMRIG integration for homeassistant", "domain": "xmrig", "etag_repository": "W/\"b37a16317da0f8b09e27054669e0f4a1433f51b3a5704db9e6c42b7dc3bb8c5c\"", "last_updated": "2022-03-05T08:36:08Z", "stargazers_count": 2, "topics": ["cryptocurrency", "monero-mining", "xmrig"], "last_fetched": 1646496916.660526, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "419381725": {"repository_manifest": {"name": "Huawei Solar", "content_in_root": true, "render_readme": true, "homeassistant": "2022.7.0"}, "full_name": "wlcrs/huawei_solar", "authors": ["@wlcrs"], "category": "integration", "description": "Home Assistant integration for Huawei Solar inverters via Modbus", "domain": "huawei_solar", "etag_repository": "W/\"54a2f4cc363fd836abddb246a64dd69393c53212d75612176c6f079f1e20d11e\"", "last_updated": "2023-01-21T19:13:18Z", "stargazers_count": 164, "topics": ["home-assistant-integration", "huawei", "huawei-solar", "modbus", "modbus-rtu", "modbus-tcp", "solar-energy"], "last_fetched": 1674378258.718481, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "294037465": {"repository_manifest": {"name": "Dual Smart Thermostat", "render_readme": true, "hide_default_branch": true, "homeassistant": "0.118.0", "filename": "ha-dual-smart-thermostat.zip"}, "full_name": "swingerman/ha-dual-smart-thermostat", "authors": ["@swingerman"], "category": "integration", "description": "The `dual_smart_thermostat` is an enhaced verion of generic thermostat implemented in Home Assistant. It uses several sensors and dedicated switches connected to a heater and air conditioning under the hood.", "domain": "dual_smart_thermostat", "etag_repository": "W/\"ceb8ce97b9d745ae7213f437c8fa8591aa208e153799b5fe3d1fdd65e5c44370\"", "last_updated": "2022-12-08T09:27:23Z", "stargazers_count": 55, "topics": ["thermostat"], "last_fetched": 1674378203.827432, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "466196192": {"repository_manifest": {"name": "Header Cards", "render_readme": true}, "full_name": "gadgetchnnel/lovelace-header-cards", "category": "plugin", "description": "Header Cards", "domain": "", "etag_repository": "W/\"7d3925204980a6972bc520cb6282335e53c3e3d0c0838a3bd8923fd31be9e12b\"", "last_updated": "2022-10-30T09:52:23Z", "stargazers_count": 25, "topics": ["cards", "header"], "last_fetched": 1674378333.983593, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "461936688": {"repository_manifest": {"name": "Whatsapp Theme", "render_readme": true}, "full_name": "robinwittebol/whatsapp-theme", "category": "theme", "description": "Home Assistant theme based on Whatsapp's colors", "domain": "", "etag_repository": "W/\"f002af664963b2968c9b6654ee5d91a52a0585331dcd08b93cf348dc9414f460\"", "last_updated": "2022-07-17T12:43:07Z", "stargazers_count": 5, "topics": ["darkmode", "green", "lightmode", "whatsapp", "whatsapptheme"], "last_fetched": 1661584769.237383, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "464998514": {"repository_manifest": {"name": "Cyberpunk 2077 Theme"}, "full_name": "flejz/hass-cyberpunk-2077-theme", "category": "theme", "description": "Cyberpunk 2077 GUI inspied Home Assistant theme", "domain": "", "etag_repository": "W/\"ac27bf658cd02b3c2d7753b085bcb54ec8be793f358ac0304a60d0434344df6d\"", "last_updated": "2023-01-16T22:05:43Z", "stargazers_count": 16, "topics": ["cyberpunk", "cyberpunk-2077"], "last_fetched": 1674378451.93173, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "462430932": {"repository_manifest": {"name": "Fire Protection Hungary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/fire_protection_hu", "authors": ["@amaximus"], "category": "integration", "description": "Fire protection integration for Home Assistant with data provided by N\u00c9BIH", "domain": "fire_protection_hu", "etag_repository": "W/\"179635695490e9293195c45dfbe41e0ac549a433c26345cedd90f3b233da74e4\"", "last_updated": "2022-02-22T19:44:56Z", "stargazers_count": 1, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1648398860.290217, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259900367": {"repository_manifest": {"name": "AbfallPlus", "country": "DE", "render_readme": true}, "full_name": "Bouni/abfallplus", "authors": ["@bouni"], "category": "integration", "description": "AbfallPlus component for Home Assistant ", "domain": "abfallplus", "etag_repository": "W/\"d81aa7d8f25061859b13b4ba6104340e72136dd95856423cff612b35c7722cc3\"", "last_updated": "2022-06-27T13:14:57Z", "stargazers_count": 7, "topics": ["abfallplus"], "last_fetched": 1674377843.52062, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "463624702": {"repository_manifest": {"name": "Hatch Rest Mini Sound Machine", "render_readme": true, "country": ["US"], "homeassistant": "2021.10.0b0"}, "full_name": "dahlb/ha_hatch", "authors": ["@dahlb"], "category": "integration", "description": "Home Assistant Integration for Hatch Rest Mini", "domain": "ha_hatch", "etag_repository": "W/\"0be5d2c3dc2746fa785c26c06f649df66c87348e2ab5248bf1fe6ab5a91510f5\"", "last_updated": "2023-01-08T23:53:45Z", "stargazers_count": 23, "topics": ["hatch-baby-rest", "python3"], "last_fetched": 1674377898.798357, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "455174197": {"repository_manifest": {"name": "Watchman", "render_readme": true}, "full_name": "dummylabs/thewatchman", "authors": ["@dummylabs"], "category": "integration", "description": "Home Assistant custom integration to keep track of missing entities and services in your config files", "domain": "watchman", "etag_repository": "W/\"7de91a29a7982aca4c1034e5f4793b5ca9f18ec794984952a85a5751dbd1883a\"", "last_updated": "2023-01-17T22:00:42Z", "stargazers_count": 193, "topics": ["automation"], "last_fetched": 1674377927.663869, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "462065554": {"repository_manifest": {"name": "Life Time Fitness", "render_readme": true, "zip_release": true, "filename": "lifetime_fitness.zip"}, "full_name": "GuyLewin/home-assistant-lifetime-fitness", "authors": ["@GuyLewin"], "category": "integration", "description": "Life Time Fitness integration for Home Assistant", "domain": "lifetime_fitness", "etag_repository": "W/\"59b9690605bc869d6a097e087db1cfea099feeee0b1144ef36ea38d145458e6b\"", "topics": ["lifetime"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448323715": {"repository_manifest": {"name": "Nest Protect", "homeassistant": "2022.11.0", "render_readme": "true"}, "full_name": "iMicknl/ha-nest-protect", "authors": ["@imicknl"], "category": "integration", "description": "Nest Protect integration for Home Assistant. This will allow you to integrate your smoke, heat, co and occupancy status real-time in HA.", "domain": "nest_protect", "etag_repository": "W/\"474a622ea7823fe342bd1443a7343ccbda0762b58fbc742862e22cd7248e17d9\"", "last_updated": "2022-11-30T08:45:36Z", "stargazers_count": 182, "topics": ["google", "nest", "nest-protect"], "last_fetched": 1674377992.940257, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "456292486": {"repository_manifest": {"name": "Dabbler.dk reader for Echelon/NES smart power meter", "render_readme": true, "country": "DK"}, "full_name": "jnxxx/homeassistant-dabblerdk_powermeterreader", "authors": ["@jnxxx"], "category": "integration", "description": "Home Assistant integration for reading Echelon/NES smart power meter, by utilizing the Dabbler.dk MEP module ", "domain": "dabblerdk_powermeterreader", "etag_repository": "W/\"1697886349404b92a0a64fdbe160f62b5bbbc5992723b8e51f627d12576749a5\"", "last_updated": "2023-01-15T20:27:04Z", "stargazers_count": 13, "topics": ["83331-3i", "dabbler-dk", "echelon", "energy", "nes", "powermeter"], "last_fetched": 1674378016.0548, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "461906076": {"repository_manifest": {"name": "Raspberry Pi RF", "homeassistant": "2022.7.0"}, "full_name": "markvader/ha-rpi_rf", "authors": ["@markvader"], "category": "integration", "description": "Home Assistant Raspberry Pi GPIO RF Integration", "domain": "rpi_rf", "etag_repository": "W/\"ee6d40e09285c85e023fb4aaef90d24b45263ff9ee00b18ecb306d20d577ed63\"", "last_updated": "2023-01-13T20:05:22Z", "stargazers_count": 23, "topics": ["home-assistant-component", "rpi-gpio", "rpi-rf"], "last_fetched": 1674378078.70721, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442225646": {"repository_manifest": {"name": "London TfL", "country": "GB", "homeassistant": "2021.12.0", "render_readme": true}, "full_name": "morosanmihail/HA-LondonTfL", "authors": ["@morosanmihail"], "category": "integration", "description": "Simple sensor for Home Assistant to retrieve departures from Transport for London stations.", "domain": "london_tfl", "etag_repository": "W/\"36bc5bc2ac388e3634fda3aaa345bc9ccd3f5d6d303aea122ba3d55b70b1a574\"", "last_updated": "2022-05-29T15:26:45Z", "stargazers_count": 8, "topics": ["london", "tfl", "transport"], "last_fetched": 1665938967.24098, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "460167330": {"repository_manifest": {"name": "Pod Point", "hacs": "1.6.0", "homeassistant": "2021.8.0", "country": "GB"}, "full_name": "mattrayner/pod-point-home-assistant-component", "authors": ["@mattrayner"], "category": "integration", "description": "A simple Home Assistant integration that shows basic information from Pod Point and allows the control of charging schedules to disable and enable the pod.", "domain": "pod_point", "etag_repository": "W/\"fbd40788c4953ec85807aa2a3d5189cdfeabf93e7d09719c02331acafecf91b4\"", "last_updated": "2023-01-03T18:15:51Z", "stargazers_count": 20, "topics": ["energy-consumption", "ev-charging"], "last_fetched": 1672948249.979077, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "459761427": {"repository_manifest": {"name": "PGNIG sensor", "country": "PL", "render_readme": true}, "full_name": "pawelhulek/pgnig-sensor", "category": "integration", "description": "This sensor is gathering gas usage data from PGNIG ebok page.", "domain": "pgnig_gas_sensor", "downloads": 8, "etag_repository": "W/\"ad16aac1659dbf08b91481dcacfb9dd2b78abfeeaa6dad6e77e0f2cf516b9148\"", "last_updated": "2022-09-19T05:48:29Z", "stargazers_count": 20, "topics": ["gas-sensor"], "last_fetched": 1674378125.599384, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "459709817": {"repository_manifest": {"name": "Tedee", "render_readme": true, "hide_default_branch": true}, "full_name": "patrickhilker/tedee_hass_integration", "authors": ["@patrickhilker"], "category": "integration", "description": "Control your tedee smart lock from Home Assistant", "domain": "tedee", "etag_repository": "W/\"c2df46019a9ab3de71f1990dc36b7e499b5a108ce2275a9099b3d04056aa3287\"", "last_updated": "2022-03-14T16:16:35Z", "stargazers_count": 7, "topics": ["customcomponent", "lock", "security", "smart-lock", "smartlock", "tedee"], "last_fetched": 1671385138.168391, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319820836": {"repository_manifest": {"name": "Coway IoCare", "render_readme": true, "homeassistant": "2022.11.0b0"}, "full_name": "RobertD502/home-assistant-iocare", "authors": ["@RobertD502"], "category": "integration", "description": "Home Assistant custom component for monitoring and controlling Coway Airmega Purifiers", "domain": "coway", "etag_repository": "W/\"c451bed2303b4c0b3774f41593a285fbe1c3e682a196173f4f5e1299ef094be5\"", "last_updated": "2022-12-30T20:30:19Z", "stargazers_count": 18, "topics": ["coway", "coway-iocare", "home-assistant-component", "iocare"], "last_fetched": 1674378155.241914, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "400108978": {"repository_manifest": {"name": "FitX Gym Utilization Rate Sensor for Home Assistant", "render_readme": true, "zip_release": true, "filename": "fitx.zip", "country": "DE"}, "full_name": "Raukze/home-assistant-fitx", "authors": ["@Raukze"], "category": "integration", "description": "\ud83c\udfcb\ufe0f FitX Gym Utilization Rate Sensor for Home Assistant", "domain": "fitx", "downloads": 51, "etag_repository": "W/\"b5cf16642e3b1a3a7be553fb07fbc7fc4a8c7700391889519f5c9b70de3490fd\"", "last_updated": "2022-12-12T12:24:35Z", "stargazers_count": 8, "topics": ["fitx", "gym"], "last_fetched": 1671385168.65098, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232813686": {"repository_manifest": {"name": "SkyQ", "zip_release": true, "homeassistant": "2022.11.0", "filename": "skyq.zip", "render_readme": true}, "full_name": "RogerSelwyn/Home_Assistant_SkyQ_MediaPlayer", "authors": ["@rogerselwyn"], "category": "integration", "description": "Home Assistant SkyQ Media player component", "domain": "skyq", "downloads": 772, "etag_repository": "W/\"0554b4f307116d772fd4ae9dce13b9dfcac38a0fa7b584165ec0344bf941eeb1\"", "last_updated": "2023-01-18T12:26:55Z", "stargazers_count": 77, "topics": ["homeassistant-custom-component", "sky", "skyq"], "last_fetched": 1674378159.676461, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "460108030": {"repository_manifest": {"name": "go-eCharger integration for Home Assistant using the MQTT API", "render_readme": true, "homeassistant": "2022.7.0"}, "full_name": "syssi/homeassistant-goecharger-mqtt", "authors": ["@syssi"], "category": "integration", "description": "go-eCharger integration for Home Assistant using the MQTT API", "domain": "goecharger_mqtt", "etag_repository": "W/\"24986b26fce97d21eba1fc2fe6d13c054e2099c4eb1a12c08f37a8e2dd90bd43\"", "last_updated": "2022-11-16T20:24:18Z", "stargazers_count": 24, "topics": ["go-echarger", "goe-charger"], "last_fetched": 1672948373.995157, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "394704821": {"repository_manifest": {"name": "SolaX Inverter Modbus", "render_readme": true}, "full_name": "wills106/homeassistant-solax-modbus", "authors": ["@wills106"], "category": "integration", "description": "SolaX Power Modbus custom_component for Home Assistant (Supports some Ginlong Solis, Sofar Solar & Qcells Q.Volt Hyb)", "domain": "solax_modbus", "etag_repository": "W/\"0c2c6fd4ba2d733caa3f60d855ff0db3bb487472fe0ff10437457544c68643ca\"", "last_updated": "2023-01-21T10:05:31Z", "stargazers_count": 68, "topics": ["ginlong-solis", "modbus", "modbus-serial", "modbus-tcp", "qcells", "qvolt-inverter", "rs485", "sofar", "sofar-hyd", "sofarsolar", "solax", "solax-inverter", "solis-pv-inverters"], "last_fetched": 1674378258.228123, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "124766061": {"repository_manifest": {"name": "Sbanken", "render_readme": true, "zip_release": true, "filename": "sbanken.zip"}, "full_name": "toringer/home-assistant-sbanken", "authors": ["@toringer"], "category": "integration", "description": "Sbanken sensor for Home Assistant", "domain": "sbanken", "etag_repository": "W/\"921873adcd5a4e64298d7db8a57e19bcaad47350f57c5c4cf84a75259b1d7778\"", "stargazers_count": 2, "topics": ["sbanken"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "465062337": {"repository_manifest": {"name": "Electrolux Care Integration (Not Official)", "hacs": "1.23.0", "homeassistant": "2022.2.9"}, "full_name": "mauro-midolo/homeassistant_electrolux_status", "authors": ["@mauro-midolo"], "category": "integration", "description": "Get the status from your Electrolux Care devices", "domain": "electrolux_status", "etag_repository": "W/\"e237795e6c548c102c00fdc9d94bfd01a170bcd882bc80b9c27959a4f022bfa7\"", "last_updated": "2023-01-21T23:29:32Z", "stargazers_count": 48, "topics": ["aeg", "electrolux", "home-assistant-integration"], "last_fetched": 1674378082.435265, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "470262899": {"repository_manifest": {"name": "Nordic Theme", "render_readme": true}, "full_name": "coltondick/nordic-theme-main", "category": "theme", "description": "Nordic theme for home assistant.", "domain": "", "etag_repository": "W/\"df83444286697bddb4df649736d17f8c6ac37d9d0fc3716a92a8aa708237f86d\"", "last_updated": "2022-04-30T13:38:21Z", "stargazers_count": 7, "last_fetched": 1656859455.390556, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "479056577": {"repository_manifest": {"name": "Green and Dark Theme: Simple, clean, and green", "render_readme": true, "homeassistant": "2022.3"}, "full_name": "Matt-PMCT/Green-and-Dark-HA-Theme", "category": "theme", "description": "A dark theme with green accents for Home Assistant based off green_dark_mode by JuanMTech, with mods by dmyoung9", "domain": "", "etag_repository": "W/\"33c0436ddf98260475bacc6a7aa3be5aa6a038a52aee7cacba32fd51696083e7\"", "last_updated": "2022-04-07T16:57:33Z", "stargazers_count": 1, "topics": ["dark-theme", "green"], "last_fetched": 1665938535.453388, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "294609880": {"repository_manifest": {"name": "BOM Radar Card", "render_readme": true, "filename": "bom-radar-card.js"}, "full_name": "Makin-Things/bom-radar-card", "category": "plugin", "description": "A rain radar card using the new tiled images from the Australian BOM", "domain": "", "downloads": 2145, "etag_repository": "W/\"2662e5934b9fc5efbdef2fe364b5fd3c0a920d2eed1a3c12532af96045b774cd\"", "last_updated": "2022-11-04T00:54:57Z", "stargazers_count": 69, "topics": ["bom", "frontend", "meteorology", "radar", "weather"], "last_fetched": 1674378375.446366, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "468093553": {"repository_manifest": {"name": "Radioactivity Hungary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/radioactivity_hu", "authors": ["@amaximus"], "category": "integration", "description": "Radioactivity data for Hungary", "domain": "radioactivity_hu", "etag_repository": "W/\"05c1b7d4232e611f1fca0221f5fc56728546e634ec89d564bb13f87bc5119cf8\"", "last_updated": "2022-12-14T08:55:19Z", "stargazers_count": 4, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1671384821.787535, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "467638459": {"repository_manifest": {"name": "Niko Home Control II", "render_readme": true, "homeassistant": "0.114.1"}, "full_name": "joleys/niko-home-control-II", "authors": ["@filipvh", "@joleys"], "category": "integration", "description": "Home Assistant Custom Integration for Niko Home Control II", "domain": "nhc2", "etag_repository": "W/\"b76b595cf8ca050219396ffc8b87880ef3a007e55caf7610ccf36b55d0980da6\"", "last_updated": "2023-01-20T13:10:32Z", "stargazers_count": 32, "topics": ["automation", "domotics", "niko"], "last_fetched": 1674378020.119834, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "478745957": {"repository_manifest": {"name": "Ile de france Mobilite", "hacs": "1.0.0", "homeassistant": "0.118.0", "render_readme": true, "country": ["FR"]}, "full_name": "droso-hass/idfm", "authors": ["@drosocode"], "category": "integration", "description": "Custom component for ile de france mobilit\u00e9s", "domain": "idfm", "etag_repository": "W/\"43cbd82642eb083fe3f8392b268d0da845670b44924f6a38667c4a13efbfe044\"", "last_updated": "2022-12-18T18:43:18Z", "stargazers_count": 6, "topics": ["time", "transports"], "last_fetched": 1672948090.9906, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366332990": {"repository_manifest": {"name": "Electrolux Wellbeing", "hacs": "1.6.0", "homeassistant": "2021.12.0"}, "full_name": "JohNan/homeassistant-wellbeing", "authors": ["@JohNan"], "category": "integration", "description": "Get the status from your Electrolux devices connected to Wellbeing", "domain": "wellbeing", "etag_repository": "W/\"4ecb4c3a7ce99892d7b9bf549bd68e4885b6a55708d0bc7395a2606629927992\"", "last_updated": "2023-01-13T20:27:34Z", "stargazers_count": 42, "last_fetched": 1674378016.338087, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224258177": {"repository_manifest": {"name": "Heatzy", "country": "FR", "homeassistant": "0.109", "render_readme": true}, "full_name": "Cyr-ius/hass-heatzy", "authors": ["@cyr-ius"], "category": "integration", "description": "Climate Home Assistant component for Heatzy Pilot", "domain": "heatzy", "etag_repository": "W/\"51217f105e32257b11016d04cfa6c5087bb879a326514c544a933762d6fe86c7\"", "last_updated": "2022-12-18T12:39:49Z", "stargazers_count": 20, "topics": ["heatzy"], "last_fetched": 1671384910.360699, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "346329169": {"repository_manifest": {"name": "MiWiFi", "render_readme": true, "homeassistant": "2022.4.0"}, "full_name": "dmamontov/hass-miwifi", "authors": ["@dmamontov"], "category": "integration", "description": "MiWiFi for Home Assistant", "domain": "miwifi", "etag_repository": "W/\"efc5695abceadbe1bdc4657de8cf0bd2a1e5c88120f0bd1e0a0a60b4c121b491\"", "last_updated": "2022-12-19T19:53:02Z", "stargazers_count": 120, "topics": ["mi", "miwifi", "redmi", "xiaomi"], "last_fetched": 1674377921.874227, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "474183846": {"repository_manifest": {"name": "HA-Mila", "render_readme": true}, "full_name": "sanghviharshit/ha-mila", "authors": ["@sanghviharshit"], "category": "integration", "description": "\ud83c\udfe1 \ud83d\udca8 Home Assistant custom component for Mila Air Purifier (Unofficial)", "domain": "mila", "etag_repository": "W/\"8a6345a70b557a8455746865a6558717d95dc6b4dd7589d2cb1c9fd0fc4aa8c3\"", "last_updated": "2022-11-29T17:39:41Z", "stargazers_count": 25, "topics": ["air-purifier", "air-quality", "air-quality-sensor", "mila"], "last_fetched": 1674378181.811909, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233289477": {"repository_manifest": {"name": "Greenely Sensors", "render_readme": true, "country": ["SE"]}, "full_name": "linsvensson/sensor.greenely", "authors": ["@linsvensson"], "category": "integration", "description": "Custom component to get usage data and prices from Greenely for Home Assistant", "domain": "greenely", "etag_repository": "W/\"b7699fb2c9564d528fbf786fb4d02958af74b1c5f26b4368357b85e8fbf00b6f\"", "last_updated": "2023-01-02T21:20:56Z", "stargazers_count": 41, "last_fetched": 1672948233.885561, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442594482": {"repository_manifest": {"name": "Kontomierz sensor", "country": "PL", "render_readme": true}, "full_name": "pawelhulek/kontomierz-sensor", "category": "integration", "description": "A sensor that integrates all your bank balance gathered in kontomierz app", "domain": "kontomierz_sensor", "etag_repository": "W/\"a505405bba4e2d378d47bfed61aba1eb1411db0f8292762452875d9f1eab4b2b\"", "last_updated": "2022-03-10T06:49:41Z", "stargazers_count": 4, "topics": ["finance", "financial-analysis", "fintech", "kontomierz"], "last_fetched": 1661585240.307366, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "463623003": {"repository_manifest": {"name": "Rainforest EMU-2", "homeassistant": "2021.8.0", "render_readme": "true"}, "full_name": "ryanwinter/hass-rainforest-emu-2", "authors": ["@ryanwinter"], "category": "integration", "description": "Intergration for the Rainforest EMU-2 energy monitor", "domain": "rainforest_emu_2", "etag_repository": "W/\"b0db9d8f6ac4cd1ca3e93804163f755e37e38302b30d8b2f4ff707eb4b440486\"", "last_updated": "2022-07-31T21:22:16Z", "stargazers_count": 18, "topics": ["energy"], "last_fetched": 1674378176.727185, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "472497355": {"repository_manifest": {"name": "Energi Data Service", "render_readme": true, "homeassistant": "2022.8.0", "zip_release": true, "filename": "energidataservice.zip"}, "full_name": "MTrab/energidataservice", "authors": ["@MTrab"], "category": "integration", "description": "Fetches spot prices from Energi Data Service", "domain": "energidataservice", "downloads": 947, "etag_repository": "W/\"ca9f47ae1396cc396d7c346dabc4cea9fc0040459585366c396d7d232530891a\"", "last_updated": "2023-01-21T22:12:56Z", "stargazers_count": 81, "topics": ["energi", "spotprice", "statistics"], "last_fetched": 1674378102.571613, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "198794376": {"repository_manifest": {"name": "Met.no Nowcast", "render_readme": true, "zip_release": true, "filename": "metnowcast.zip"}, "full_name": "toringer/home-assistant-metnowcast", "authors": ["@toringer"], "category": "integration", "description": "Met.no Nowcast component for Home Assistant", "domain": "metnowcast", "downloads": 361, "etag_repository": "W/\"c00dba6ff5814052ba30d5a7e810c93494958bb2bbf67dc2bfbdbc2774f35fdb\"", "last_updated": "2022-09-03T09:48:52Z", "stargazers_count": 5, "topics": ["metno", "nowcast", "nowcasting-precipitation"], "last_fetched": 1671385256.25932, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "336798340": {"repository_manifest": {"name": "TrueNAS", "homeassistant": "2022.8.0", "zip_release": true, "filename": "truenas.zip"}, "full_name": "tomaae/homeassistant-truenas", "authors": ["@tomaae"], "category": "integration", "description": "TrueNAS integration for Home Assistant ", "domain": "truenas", "downloads": 4034, "etag_repository": "W/\"2c5d12e62f9fe1d5adbefe93ef4b91fcc2def5f0bbf847d000f207fffe13d778\"", "last_updated": "2023-01-14T10:32:28Z", "stargazers_count": 53, "topics": ["homeassistant-custom-component", "truenas"], "last_fetched": 1674378227.028518, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "481763130": {"repository_manifest": {"name": "Generic Water Heater", "hacs": "1.6.0", "homeassistant": "2021.12", "render_readme": true}, "full_name": "dgomes/ha_generic_water_heater", "authors": ["@dgomes"], "category": "integration", "description": "Home Assistant Custom Component - Generic Water Heater", "domain": "generic_water_heater", "etag_repository": "W/\"00433a0342e0a6baefab0921f86ac6ea46e3d8da9c945ac0a83092157a5be347\"", "last_updated": "2022-12-02T16:25:58Z", "stargazers_count": 8, "topics": ["home-assistant-integration"], "last_fetched": 1674377911.575021, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "483269510": {"repository_manifest": {"name": "OilFox Sensor", "render_readme": true}, "full_name": "chises/ha-oilfox", "authors": ["@chises"], "category": "integration", "description": "HomeAssistant Sensor for Oilfox ", "domain": "oilfox", "etag_repository": "W/\"70d050b29674cfe104735d362753c3daa9b9e0db75cbfffa47033a823cb18669\"", "last_updated": "2022-12-25T15:34:21Z", "stargazers_count": 10, "topics": ["homeassistant-custom-component", "oiflox"], "last_fetched": 1672948027.250819, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "485895021": {"repository_manifest": {"name": "Blueair Filters", "render_readme": true, "country": ["US"], "homeassistant": "2021.10.0b0"}, "full_name": "dahlb/ha_blueair", "authors": ["@dahlb"], "category": "integration", "description": "Home Assistant Integration for Blueair Class Filters", "domain": "ha_blueair", "etag_repository": "W/\"5c0edebecdb9a3acb3976dace739e8ba1413e410ecf23a7bae1ea0ed7963f1a1\"", "last_updated": "2023-01-05T18:04:12Z", "stargazers_count": 3, "topics": ["blueair", "hassio-integration", "python3"], "last_fetched": 1674377898.664702, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "341046872": {"repository_manifest": {"name": "BlueAir Integration"}, "full_name": "aijayadams/hass-blueair", "authors": ["@aijayadams"], "category": "integration", "description": "BlueAir sensor integration for HomeAssistant", "domain": "blueair", "etag_repository": "W/\"d359bb75ef5e69a21fd13a837cb5a9324a75304fcced5087f72ec9daa7f8297e\"", "last_updated": "2022-05-11T15:59:28Z", "stargazers_count": 19, "topics": ["blueair"], "last_fetched": 1671384808.256173, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "485971293": {"repository_manifest": {"name": "Super Soco Custom", "hacs": "1.6.0", "homeassistant": "2022.3.0", "render_readme": true}, "full_name": "drakhart/ha-super-soco-custom", "authors": ["@Drakhart"], "category": "integration", "description": "Custom component for integrating your Super Soco motorcycle into Home Assistant. It provides meaningful data like power status, battery percentage, location and a lot more.", "domain": "super_soco_custom", "etag_repository": "W/\"28395e029e73dd6b46db1c7de82ae3bc031809b6120579ceb01db18d4386d153\"", "last_updated": "2022-09-05T21:03:56Z", "stargazers_count": 12, "topics": ["super-soco"], "last_fetched": 1674377923.783657, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454859084": {"repository_manifest": {"name": "Home Connect Alt", "hacs": "1.25.0", "homeassistant": "2022.7.0"}, "full_name": "ekutner/home-connect-hass", "authors": ["@ekutner"], "category": "integration", "description": "Alternative (and improved) Home Connect integration for Home Assistant", "domain": "home_connect_alt", "etag_repository": "W/\"cf9de484a48d5ef3da1a7caa95b2f60ae387f5be0b48038b02de1511169225a2\"", "last_updated": "2022-12-15T15:40:30Z", "stargazers_count": 78, "topics": ["home-assistant-component", "home-assistant-integration", "home-connect", "homeconnect"], "last_fetched": 1674377934.574544, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "490422137": {"repository_manifest": {"name": "IPCamLive", "homeassistant": "2022.5.3"}, "full_name": "ddanssaert/home-assistant-ipcamlive", "authors": ["@ddanssaert"], "category": "integration", "description": "IPCamLive integration for Home Assistant", "domain": "ipcamlive", "etag_repository": "W/\"b42ab7214f29d6eb63d587b60fa2708d44ca0134f3bbe21a1e4e04a89b940234\"", "last_updated": "2022-05-22T18:14:31Z", "topics": ["ipcamera", "ipcamlive"], "last_fetched": 1671384922.78884, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373750934": {"repository_manifest": {"name": "Taipower Bimonthly Energy Cost", "render_readme": true, "homeassistant": "2022.12.0", "country": ["TW"]}, "full_name": "cnstudio/Taipower-Bimonthly-Energy-Cost-homeassistant", "authors": ["@cnstudio", "@tsunglung"], "category": "integration", "description": "Calculate Taipower (Taiwan Power Company) bi-monthly bill amount from kWh sensor on Home Assistant.", "domain": "taipower_bimonthly_cost", "etag_repository": "W/\"52eaf7c9c3533db6e678b95db5338449b4a8637e76c91a7a6eaf8cb87a4c47f8\"", "last_updated": "2022-12-22T12:32:50Z", "stargazers_count": 43, "topics": ["bill", "bimonthly", "power", "taipower"], "last_fetched": 1674377869.193665, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "483187645": {"repository_manifest": {"name": "Microsoft Graph", "country": "GB"}, "full_name": "geoffreylagaisse/Hass-Microsoft-Graph", "authors": ["@jlweston", "@geoffreylagaisse"], "category": "integration", "description": "Microsoft Graph API Presence Integration for Home Assistant", "domain": "microsoft_graph", "etag_repository": "W/\"a4c7a1e22594fd088bf958be8edcc04e184be51e847c9e0e8dcf32cd742da507\"", "last_updated": "2022-10-27T17:32:38Z", "stargazers_count": 21, "topics": ["custom", "graphapi"], "last_fetched": 1674377962.585765, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "471000066": {"repository_manifest": {"name": "Peaqev ev-Charging", "homeassistant": "2022.10.5", "country": ["SE", "BE", "NO"], "zip_release": true, "filename": "peaqev.zip", "render_readme": true}, "full_name": "elden1337/hass-peaq", "authors": ["@elden1337"], "category": "integration", "description": "Home Assistant custom component to help ev-chargers stay below peak hourly energy levels.", "domain": "peaqev", "downloads": 42, "etag_repository": "W/\"0d5554dfaa78ff1be860157a3d69ff05cd614e8b404f78a8452d9ae2c8b9d62f\"", "last_updated": "2023-01-03T20:06:21Z", "stargazers_count": 35, "topics": ["chargeamps", "easee", "ev-charging", "peak-shaving", "smart-pricing", "zaptec"], "last_fetched": 1672948105.595701, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "461802716": {"repository_manifest": {"name": "Skolmat Integration", "country": ["SE"], "render_readme": true}, "full_name": "Kaptensanders/skolmat", "authors": ["@kaptensanders"], "category": "integration", "description": "Skolmat Home Assistant custom component for the food menu in Swedish schools", "domain": "skolmat", "etag_repository": "W/\"85b40adce82d210283d31d7574043d38b16aae5bb249a546a598146955c89add\"", "last_updated": "2022-08-29T21:27:37Z", "stargazers_count": 5, "topics": ["food", "food-menu", "school", "skola"], "last_fetched": 1674378034.276466, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "437278224": {"repository_manifest": {"name": "Dell Printer", "render_readme": true}, "full_name": "kongo09/hass-dell-printer", "authors": ["@kongo09"], "category": "integration", "description": "Support DELL printers in Home Assistant", "domain": "dell_printer", "etag_repository": "W/\"1d112d157ae4612b5aa63fc58c501f1c53a3aa55a674e84841d15bdc83a12af6\"", "last_updated": "2022-06-26T17:26:42Z", "stargazers_count": 4, "topics": ["dell", "printer"], "last_fetched": 1671385061.152309, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "375838748": {"repository_manifest": {"name": "Selve NG"}, "full_name": "Kannix2005/homeassistant-selve", "authors": ["@Kannix2005"], "category": "integration", "description": "Home Assistant Custom component to manage Selve devices", "domain": "selve", "etag_repository": "W/\"09b79e4b909907d2a478036850fdc97573255e245af3bcce2ea439beb574a8dc\"", "last_updated": "2022-12-15T10:34:21Z", "stargazers_count": 4, "topics": ["selve"], "last_fetched": 1672948201.036547, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "485281791": {"repository_manifest": {"name": "HASS.Agent MediaPlayer", "homeassistant": "2022.5", "render_readme": true}, "full_name": "LAB02-Research/HASS.Agent-MediaPlayer", "authors": ["@LAB02-Admin"], "category": "integration", "description": "HASS.Agent MediaPlayer integrations. Adds TTS and the ability to control local media to HASS.Agent - a Windows based client for Home Assistant.", "domain": "hass_agent_mediaplayer", "etag_repository": "W/\"1c5cb0fcac78678080862099ccc8119a61c71dd7dbefaf4cbfb0718ef59be9fc\"", "last_updated": "2022-11-17T13:28:30Z", "stargazers_count": 16, "last_fetched": 1674378050.953698, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "480112024": {"repository_manifest": {"name": "Sj\u00f6fartsverket ViVa"}, "full_name": "patrickribbing/sjofartsverket_viva-component", "authors": ["@patrickribbing"], "category": "integration", "description": "Get wind information from the Swedish Sj\u00f6farsverket's ViVa service.", "domain": "sjofartsverket_viva", "etag_repository": "W/\"06aac2da110791dfd17697ba432e1a79fd3f9a4527607cc4161f9221e49cef4e\"", "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "479221839": {"repository_manifest": {"hacs": "1.6.0", "name": "Swatch", "homeassistant": "2021.12.0b2"}, "full_name": "NickM-27/swatch-hass-integration", "authors": ["@NickM-27"], "category": "integration", "description": "HomeAssistant Integration For Swatch: Color detection in images to capture presense of known objects.", "domain": "swatch", "etag_repository": "W/\"389072e81fd418f6bd82e2382e2699bd0b7fa52f09c37071af71dcd6b3345698\"", "last_updated": "2022-07-09T13:19:11Z", "stargazers_count": 7, "topics": ["ai", "camera", "home-assistant-integration", "object-detection", "opencv"], "last_fetched": 1662801904.249256, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "480127478": {"repository_manifest": {"name": "ecotrend_ista", "country": "DE", "render_readme": true, "homeassistant": "2022.4.1", "hacs": "1.25.1"}, "full_name": "Ludy87/ecotrend-ista", "authors": ["@Ludy87"], "category": "integration", "description": "ecotrend-ista Home Assistant Integration", "domain": "ecotrend_ista", "etag_repository": "W/\"b1ddee6df40ffbaec2529e87db9dc8d40823bbcc1e7c27483c995e874d4c7215\"", "last_updated": "2022-12-29T21:55:58Z", "stargazers_count": 15, "topics": ["ecotrend", "hassio-integration", "hassos", "home-assistant-component", "ista"], "last_fetched": 1672948238.837279, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "471478227": {"repository_manifest": {"name": "ChargePoint", "render_readme": true}, "full_name": "mbillow/ha-chargepoint", "authors": ["@mbillow"], "category": "integration", "description": "Home Assistant ChargePoint EV Charger Integration", "domain": "chargepoint", "etag_repository": "W/\"4a4b0427f2ec56373c7ce71e0e9094ded1bc78b7783940eb4ae749610199567f\"", "last_updated": "2022-12-04T18:30:02Z", "stargazers_count": 14, "topics": ["chargepoint", "hassio-integration"], "last_fetched": 1674378084.963361, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "480281490": {"repository_manifest": {"name": "Lektrico Charging Station"}, "full_name": "mtarjoianu/ha_lektrico", "authors": ["@mtarjoianu"], "category": "integration", "description": "Manage your Lektrico EV Charger", "domain": "lektrico_custom", "etag_repository": "W/\"9f4cca3700dc55b39be1a69ab665a88bdcaed10a48e308e9fce30a8dbf3aebb1\"", "last_updated": "2022-06-02T07:26:51Z", "stargazers_count": 2, "topics": ["lektrico"], "last_fetched": 1656859303.84849, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443905243": {"repository_manifest": {"name": "Xplora\u00ae Watch", "country": ["DE", "US"], "render_readme": true, "homeassistant": "2023.1.6", "hacs": "1.29.1"}, "full_name": "Ludy87/xplora_watch", "authors": ["@Ludy87"], "category": "integration", "description": "Xplora\u00ae Watch Home Assistant Integration", "domain": "xplora_watch", "etag_repository": "W/\"8cdf1a5dfd3d593b1fc4612db1fdc2a8ada03af54d6840928530e2540b6f5154\"", "last_updated": "2023-01-20T16:55:06Z", "stargazers_count": 30, "topics": ["devicetracker", "hassio-addons", "hassio-integration", "hassos", "homeassistant-custom-component", "notify", "watch", "xplora", "xplora-watch"], "last_fetched": 1674378073.147657, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "476357279": {"repository_manifest": {"name": "Music Assistant", "render_readme": true, "zip_release": true, "filename": "mass.zip", "hide_default_branch": true, "homeassistant": "2022.12.0"}, "full_name": "music-assistant/hass-music-assistant", "authors": ["@marcelveldt"], "category": "integration", "description": "Turn your Home Assistant instance into a jukebox, hassle free streaming of your favorite media to Home Assistant media players.", "domain": "mass", "downloads": 10217, "etag_repository": "W/\"01ed06daa0d2207202589c861482d778f161de71cc1034bc7480d778aadde342\"", "last_updated": "2023-01-16T12:04:29Z", "stargazers_count": 463, "topics": ["music-library", "music-player"], "last_fetched": 1674378104.171104, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "459336824": {"repository_manifest": {"name": "hass-lacrosseview", "country": "US", "render_readme": true}, "full_name": "regulad/hass-lacrosseview", "authors": ["@regulad"], "category": "integration", "description": "La Crosse view for Home Assistant", "domain": "lacrosseview", "etag_repository": "W/\"75f67634f00c586814c3853f13483fcbf24fe16812a4f2b382e97876b98ac067\"", "last_updated": "2022-10-05T16:00:25Z", "stargazers_count": 5, "topics": ["home-assistant-config", "lacrosseview"], "last_fetched": 1665325717.982272, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "481715988": {"repository_manifest": {"name": "Kia Connected Services", "country": "NL"}, "full_name": "PimDoos/kia_connect", "authors": ["@PimDoos"], "category": "integration", "description": "Home Assistant Custom Component: MijnKia Connected Services", "domain": "kia_connect", "etag_repository": "W/\"ea86769d300c989f194e912d164897188d96aee161611912954f04ac60565433\"", "last_updated": "2022-10-05T18:48:33Z", "stargazers_count": 8, "topics": ["api-wrapper", "connected-vehicle", "home-assistant-custom-component", "kia"], "last_fetched": 1674378132.192662, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "360213486": {"repository_manifest": {"name": "yi-hack Home Assistant integration", "render_readme": true}, "full_name": "roleoroleo/yi-hack_ha_integration", "authors": ["@roleoroleo"], "category": "integration", "description": "Home Assistant custom integration for Yi cameras: yi-hack-MStar, yi-hack-Allwinner, yi-hack-Allwinner-v2, yi-hack-v5 and sonoff-hack", "domain": "yi_hack", "etag_repository": "W/\"c95eb024d7b1f10381d0ee9971198c1a0099d568660c5a28173db22f47305164\"", "last_updated": "2023-01-16T08:01:57Z", "stargazers_count": 135, "topics": ["camera", "custom", "firmware", "hack", "rtsp", "yi"], "last_fetched": 1674378161.565961, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "488091347": {"repository_manifest": {"name": "2minersInfo", "render_readme": true, "homeassistant": "0.100.0"}, "full_name": "ThomasPrior/2minersInfo", "authors": ["@thomasprior"], "category": "integration", "description": "Provides data from 2miners.com on a specified miner.", "domain": "2minersinfo", "etag_repository": "W/\"420e8696501fa2318e9ad2ae9a9542b3439354aedccd2c088a30f92af8c674c2\"", "last_updated": "2022-05-24T18:49:52Z", "stargazers_count": 4, "topics": ["2miners", "2miners-api", "miner", "statistics"], "last_fetched": 1665325775.045592, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "491303842": {"repository_manifest": {"name": "Datetime Card", "render_readme": true}, "full_name": "a-p-z/datetime-card", "category": "plugin", "description": "A minimalistic card for Home Assistant Lovelace UI which shows how many days it has been between any input_datetime and today.", "downloads": 1850, "etag_repository": "W/\"54c4dee9d992de17fa2b60e8a55328587349ab2192f6dd9472d50d3e665329e2\"", "last_updated": "2023-01-08T17:56:58Z", "stargazers_count": 14, "topics": ["lovelace-custom-card", "svelte"], "last_fetched": 1674378269.658309, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "434912125": {"repository_manifest": {"name": "Load Shedding", "render_readme": true, "country": "ZA", "homeassistant": "2022.7.0"}, "full_name": "wernerhp/ha.integration.load_shedding", "authors": ["@wernerhp"], "category": "integration", "description": "A Home Assistant integration to track your load schedding schedule.", "domain": "load_shedding", "etag_repository": "W/\"2529935f21efa9f4bf57d79886296dd7fe9156601137323e8898c648648ca865\"", "last_updated": "2023-01-14T12:53:29Z", "stargazers_count": 47, "topics": ["eskom", "load-shedding"], "last_fetched": 1674378252.438939, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "484708274": {"repository_manifest": {"name": "AsusRouter", "homeassistant": "2023.1.0"}, "full_name": "Vaskivskyi/ha-asusrouter", "authors": ["@vaskivskyi"], "category": "integration", "description": "Monitor and control your AsusWRT-powered router from Home Assistant", "domain": "asusrouter", "etag_repository": "W/\"1069c7ca659b48bc1e3c2510e8b0a493e1a76ebd0521fcf3b0c78bab8d61e983\"", "last_updated": "2023-01-21T15:30:46Z", "stargazers_count": 82, "topics": ["asus", "asuswrt", "asuswrt-merlin", "router"], "last_fetched": 1674378244.667335, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "430818561": {"repository_manifest": {"name": "Tekmar Gateway 482", "homeassistant": "2022.8.0"}, "full_name": "WillCodeForCats/tekmar-482", "authors": ["@WillCodeForCats"], "category": "integration", "description": "Home Assistant integration for the Tekmar Gateway 482", "domain": "tekmar_482", "etag_repository": "W/\"8a80a7493ac4217047b3b8b353b490253c2a57b64a10222578de14e4681a305e\"", "last_updated": "2022-12-16T23:17:22Z", "stargazers_count": 1, "topics": ["tekmar"], "last_fetched": 1671385279.235064, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "489295753": {"repository_manifest": {"name": "Navbar Position", "render_readme": true}, "full_name": "javawizard/ha-navbar-position", "category": "plugin", "description": "Moves the Home Assistant dashboard navigation bar to the bottom of the screen", "etag_repository": "W/\"2aca4568301161c873ce9108f918f73a14eef9c9798c89198708ebd890cd8e35\"", "last_updated": "2022-05-08T08:28:38Z", "stargazers_count": 10, "last_fetched": 1672947873.650873, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "457767453": {"repository_manifest": {"name": "Skolmat Card", "filename": "skolmat-card.js", "content_in_root": true, "render_readme": true}, "full_name": "Kaptensanders/skolmat-card", "category": "plugin", "description": "Home Assistant Lovelace card to display the food menu in Swedish schools.", "etag_repository": "W/\"78083de9a307a71d8d75c9caa6e8363f03b4d61e959a933bf8c575e58b32cbd2\"", "last_updated": "2023-01-18T11:56:18Z", "stargazers_count": 4, "topics": ["home-assistant-component", "lovelace-card", "lovelace-custom-card", "skola", "skollunch", "skolmat"], "last_fetched": 1674378362.670178, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "487680971": {"repository_manifest": {"name": "Weather Radar Card", "render_readme": true, "filename": "weather-radar-card.js"}, "full_name": "Makin-Things/weather-radar-card", "category": "plugin", "description": "A rain radar card using the tiled images from RainViewer", "downloads": 9176, "etag_repository": "W/\"810883818e339fd91d8bfbf482d0a8da7d50df7bad9e91dcf8ac5173bdf74f63\"", "last_updated": "2022-11-04T00:34:52Z", "stargazers_count": 53, "topics": ["frontend", "home-assistant-config", "meteorology", "radar", "rainviewer", "weather"], "last_fetched": 1674378376.112888, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "267558148": {"repository_manifest": {"name": "Custom-ui", "homeassistant": "2021.6.0", "render_readme": true}, "full_name": "Mariusthvdb/custom-ui", "category": "plugin", "description": "Adapted Custom-ui for HA 110+ / HA 2021.6", "downloads": 2730, "etag_repository": "W/\"284463c2fd7a1015ce3a033cdeb7ee75e6668feaa6c0720ef47beb62b02c4687\"", "last_updated": "2023-01-06T22:16:46Z", "stargazers_count": 118, "topics": ["customization", "icon-color", "more-info", "templates"], "last_fetched": 1674378381.526963, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "489457357": {"repository_manifest": {"name": "Minimalistic Area Card", "render_readme": true, "filename": "minimalistic-area-card.js"}, "full_name": "junalmeida/homeassistant-minimalistic-area-card", "category": "plugin", "description": "A minimalistic area card with sensors and buttons.", "downloads": 2789, "etag_repository": "W/\"d41632d13ce3f2840d82fdd3dfcc776047f764ee7bd8351dcc28fe741aad2a18\"", "last_updated": "2023-01-05T18:50:22Z", "stargazers_count": 39, "topics": ["area-card"], "last_fetched": 1674378358.313244, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "455846088": {"repository_manifest": {"name": "Sankey Chart Card", "render_readme": true, "filename": "ha-sankey-chart.js"}, "full_name": "MindFreeze/ha-sankey-chart", "category": "plugin", "description": "A Home Assistant lovelace card to display a sankey chart. For example for power consumption", "downloads": 981, "etag_repository": "W/\"01293e33fc0e805914ad65b2c7978fe58b122aa20f08b65ed8ed4f8302813565\"", "last_updated": "2023-01-19T10:01:54Z", "stargazers_count": 101, "topics": ["energy-consumption", "lovelace-card"], "last_fetched": 1674378387.054566, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "491465538": {"repository_manifest": {"name": "custom-icons", "render_readme": true}, "full_name": "Mariusthvdb/custom-icons", "category": "plugin", "description": "Several custom made and legacy icons, and icons collected all over the internet in 1 set, UI selectable.", "downloads": 3740, "etag_repository": "W/\"c59e481c75e5e88c708256dd67332080073d333d30b7634d6b922c5c99e11dd8\"", "last_updated": "2022-10-04T18:02:24Z", "stargazers_count": 14, "topics": ["custom", "customization", "icons", "iphone", "light", "shutter", "vacuum"], "last_fetched": 1674378381.524877, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "447474061": {"repository_manifest": {"name": "Irrigation Unlimited Card", "render_readme": true, "filename": "irrigation-unlimited-card.js"}, "full_name": "rgc99/irrigation-unlimited-card", "category": "plugin", "description": "A companion card for the Irrigation Unlimited integration", "downloads": 972, "etag_repository": "W/\"e5918f26b4bf3052fa098e5db188a83aec94611aa954a1911f0f5f7257f08010\"", "last_updated": "2022-10-08T01:44:20Z", "stargazers_count": 6, "topics": ["irrigation", "irrigation-controller", "sprinkler-controller", "watering"], "last_fetched": 1674378406.626466, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "484538222": {"repository_manifest": {"name": "Power Flow Card", "render_readme": true, "homeassistant": "2021.8.0"}, "full_name": "ulic75/power-flow-card", "category": "plugin", "description": "A power distribution card inspired by the official Energy Distribution card for Home Assistant", "downloads": 5487, "etag_repository": "W/\"d42e03ca08297e57a7caed900cf8f3c48b1bc517eaea86d1e7f507e7273b299e\"", "last_updated": "2023-01-13T21:01:24Z", "stargazers_count": 76, "topics": ["dashboard"], "last_fetched": 1674378432.944444, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "484333657": {"repository_manifest": {"name": "Lovelace Wallpanel Screensaver", "render_readme": true, "zip_release": true, "filename": "wallpanel-screensaver.js"}, "full_name": "Shreyas-R/lovelace-wallpanel-screensaver", "category": "plugin", "description": "Wall panel mode for your Home Assistant Lovelace dashboard with more focus on screensaver. Configurable extension which features a fullscreen kiosk mode, image and weather-clock screensaver, screen wake lock and the ability to hide side and top bar.", "downloads": 4212, "etag_repository": "W/\"6cbc7bde4dda137364e9ef4b074a85ae0e7adf20282ca786b55585d0340533e1\"", "last_updated": "2022-09-08T12:24:08Z", "stargazers_count": 23, "topics": ["configurable", "css", "fullscreen", "hide-side-bar", "hide-top-bar", "javascript", "kiosk", "photo-screensaver", "screensaver", "wallclock", "wallpanel", "weather"], "last_fetched": 1672947929.936615, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "486045869": {"repository_manifest": {"name": "Metrology - Metro + Fluent + Windows Themes - by mmak.es", "render_readme": true}, "full_name": "Madelena/Metrology-for-Hass", "category": "theme", "description": "\ud83c\udfa8 Give your Home Assistant a modern and clean facelift. \ud83d\udfe5\ud83d\udfe7\ud83d\udfe9\ud83d\udfe6\ud83d\udfea 24 Variations with 2 Styles + 6 Colors (Magenta Red / Orange / Green / Blue / Purple) + \ud83c\udf1e Light and \ud83c\udf1a Dark modes included. Based on Metro and Fluent UI Design Systems from Microsoft Windows.", "etag_repository": "W/\"827b0fc589ffa214a965bc996a8e17ef6d81a28e91c6edf9016301107bae74b6\"", "last_updated": "2023-01-14T11:37:45Z", "stargazers_count": 264, "topics": ["home-assistant-config", "lovelace-theme"], "last_fetched": 1674378474.053246, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "480992848": {"repository_manifest": {"name": "macOS Theme - Based on the system-wide light and dark mode UI", "render_readme": true}, "full_name": "JuanMTech/macOS-Theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- Theme based on the macOS system-wide light and dark mode interface", "etag_repository": "W/\"1b63bb426bddef4b95fc2000b4af6dc10c1f4b37fceefd8990e3bdaf06f94449\"", "last_updated": "2023-01-13T19:20:50Z", "stargazers_count": 28, "topics": ["darktheme", "lighttheme"], "last_fetched": 1674378473.980863, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199718799": {"repository_manifest": {"name": "Escea Fires"}, "full_name": "snikch/climate.escea", "authors": ["@snikch"], "category": "integration", "description": "\ud83c\udfe1Home Assistant Custom Component for Escea Fires \ud83d\udd25", "domain": "escea", "etag_repository": "W/\"e172e6a6d4f9196ab8061ffa1afb5b3df0d3c6adae9343bddfef7727e0758962\"", "last_updated": "2022-05-28T03:05:48Z", "stargazers_count": 8, "topics": ["climate", "fireplace"], "last_fetched": 1653733585.668934, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "125756318": {"repository_manifest": {"name": "BKK Stop Information", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/bkk_stop", "authors": ["@amaximus"], "category": "integration", "description": "HomeAssistant custom component for Budapest public transportation", "domain": "bkk_stop", "downloads": 2, "etag_repository": "W/\"558a608cc6d07c4b98aca40db9f963aa59f1f9ac3ac6ec4de9a8b342a02a492b\"", "last_updated": "2022-12-11T08:06:49Z", "stargazers_count": 16, "topics": ["bkk", "budapest", "transportation"], "last_fetched": 1674377807.585388, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "495607253": {"repository_manifest": {"name": "Nordnet investments API sensors", "render_readme": true, "country": ["DK", "NO", "SE", "FI"]}, "full_name": "jippi/hass-nordnet", "authors": ["@jippi"], "category": "integration", "description": "Home Assistant + Nordnet API = awesome sensors with for your investments & holdings", "domain": "nordnet", "etag_repository": "W/\"4cfd16d7c24ad2cedd8756b326fb166e472a5be2de30b337ead8beb711ef4bf3\"", "last_updated": "2022-05-29T09:42:20Z", "stargazers_count": 5, "topics": ["finance", "stock-market", "stocks"], "last_fetched": 1657788996.720346, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "456340193": {"repository_manifest": {"name": "Innova 2.0 HVAC", "homeassistant": "2022.10.0", "country": "CA"}, "full_name": "danielrivard/homeassistant-innova", "authors": ["@danielrivard"], "category": "integration", "description": "Home Assistant Integration for Innova 2.0 Heat Pump", "domain": "innova", "etag_repository": "W/\"ad341765efa90c97c447be909580546275e6d9d0bdababc4bcfd0a95c0f3c271\"", "last_updated": "2023-01-05T07:07:36Z", "stargazers_count": 13, "topics": ["climate", "innova", "innovaenergie"], "last_fetched": 1672948067.591542, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "410867791": {"repository_manifest": {"name": "Microsoft Edge TTS", "render_readme": true}, "full_name": "hasscc/hass-edge-tts", "category": "integration", "description": "\ud83d\udde3\ufe0f Microsoft Edge TTS for Home Assistant, no need for app_key", "domain": "edge_tts", "etag_repository": "W/\"acae95d53631dc76e58de12f6c3238cfb7f530df5a5a3b1c3dc9ecccbdde9fb4\"", "last_updated": "2023-01-10T07:55:28Z", "stargazers_count": 160, "topics": ["tts"], "last_fetched": 1674377978.999995, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497924778": {"repository_manifest": {"name": "elkbledom", "render_readme": true}, "full_name": "dave-code-ruiz/elkbledom", "authors": ["@dave-code-ruiz"], "category": "integration", "description": "Home Assistant custom component for LED STRIP NAME ELK BLEDOM", "domain": "elkbledom", "etag_repository": "W/\"45694356108a6068c5d4f20425d3573e937bde16ae6cf706f4511c895f919331\"", "last_updated": "2023-01-02T19:48:54Z", "stargazers_count": 17, "topics": ["hacs-custom", "led-controller", "ledstrips", "light"], "last_fetched": 1674377904.71217, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "482473793": {"repository_manifest": {"name": "Prix Carburant", "country": "FR", "render_readme": true, "homeassistant": "2022.5.0"}, "full_name": "Aohzan/hass-prixcarburant", "authors": ["@Aohzan"], "category": "integration", "description": "R\u00e9cup\u00e9ration des prix des stations en France", "domain": "prix_carburant", "etag_repository": "W/\"5b074dd39b6f1f668227a6ae142f851db289796a754601f057e2bb3f30dd4afc\"", "last_updated": "2022-06-30T06:29:50Z", "stargazers_count": 14, "topics": ["carburant", "gas", "price"], "last_fetched": 1674377818.376108, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "503045365": {"repository_manifest": {"name": "Senertec Energy System", "render_readme": true, "homeassistant": "2021.11.0"}, "full_name": "Kleinrotti/hass-senertec", "authors": ["@Kleinrotti"], "category": "integration", "description": "Home Assistant custom component integration for Senertec energy units.", "domain": "senertec", "etag_repository": "W/\"f3475eef51231521cf69ac62d3d40c672fc5d5076c5e80f5391145768677de3d\"", "topics": ["senertec"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "501368149": {"repository_manifest": {"name": "Fuelprices DK", "country": ["DK"], "render_readme": true}, "full_name": "J-Lindvig/Fuelprices_DK", "authors": ["@J-Lindvig"], "category": "integration", "description": "Scraping of 5 types of fuel :fuelpump: from 8 different fuelcompanies in Denmark :denmark:.", "domain": "fuelprices_dk", "etag_repository": "W/\"d37086fd1fd2401b339be6f91c75aef3740978d0c14d95c229bc5ab944ec3dbb\"", "last_updated": "2023-01-04T20:05:03Z", "stargazers_count": 13, "topics": ["denmark", "economy", "fuel-prices", "scraping"], "last_fetched": 1674377999.324398, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "499901994": {"repository_manifest": {"name": "Solarfocus eco manager-touch", "country": ["DE", "AT", "CH"], "homeassistant": "2021.12.8", "hacs": "1.18.0", "render_readme": true}, "full_name": "LavermanJJ/home-assistant-solarfocus", "authors": ["@lavermanjj"], "category": "integration", "description": "\ud83c\udfe1 Solarfocus eco manager touch integration for Home Assistant", "domain": "solarfocus", "etag_repository": "W/\"047c31ca6f1cbdc6d5df4ffc8e3d5cd65f3d5d567eeddbd72f17c7fa22bfa67d\"", "last_updated": "2022-11-07T18:56:45Z", "stargazers_count": 4, "topics": ["home-assistant-component", "solarfocus"], "last_fetched": 1672948222.413637, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "488931467": {"repository_manifest": {"name": "BVG (Berlin Public Transport)", "hacs": "1.6.0", "country": ["DE"], "homeassistant": "0.118.0"}, "full_name": "ryanbateman/bvg-sensor", "authors": ["@ryanbateman"], "category": "integration", "description": "A HomeAssistant / HACS integration of Berlin Public Transport (BVG) ", "domain": "bvg_berlin_public_transport", "etag_repository": "W/\"68b31fdbfc45f576430cd4ae3a40d71ab4d9a5a699a694b5f3f2994b55066fb3\"", "last_updated": "2022-06-25T09:30:24Z", "stargazers_count": 12, "topics": ["berlin", "bvg", "public-transport"], "last_fetched": 1671385195.656618, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "282714722": {"repository_manifest": {"name": "Senec solar system sensor", "country": ["DE"], "homeassistant": "2021.12.8", "hacs": "1.18.0", "render_readme": true}, "full_name": "mchwalisz/home-assistant-senec", "authors": ["@mchwalisz"], "category": "integration", "description": "SENEC Battery integration for Home Assistant", "domain": "senec", "etag_repository": "W/\"1b43eb6a294e92afaaddd87f66d2045904c6be5a098dfcebe507dfc3e5f7c89e\"", "last_updated": "2022-12-26T23:14:43Z", "stargazers_count": 25, "topics": ["home-assistant-component"], "last_fetched": 1672948258.069615, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497322735": {"repository_manifest": {"name": "Plex recently added sensor", "render_readme": true}, "full_name": "NemesisRE/sensor.plex_recently_added", "authors": ["@maykar", "@NemesisRE"], "category": "integration", "description": "\u25b6\ufe0f Plex component to feed Upcoming Media Card.", "domain": "plex_recently_added", "etag_repository": "W/\"db787b08ac132236782b71c3e0ee9afa628a89003479a3a825818eb5cb2469de\"", "last_updated": "2022-05-31T15:39:24Z", "stargazers_count": 4, "last_fetched": 1672948280.155224, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "472077314": {"repository_manifest": {"name": "World's Air Quality Index", "render_readme": true, "country": ["GB", "US", "PL"]}, "full_name": "pawkakol1/worlds-air-quality-index", "authors": ["@pawkakol1"], "category": "integration", "description": "HACS World's Air Quality Index integration from waqi.info", "domain": "worlds_air_quality_index", "etag_repository": "W/\"6895c2de57af4b065fe107063fd6d3a86260573a4fffc3277349f77601308b9c\"", "last_updated": "2022-11-01T14:55:31Z", "stargazers_count": 12, "topics": ["ha", "pollution", "waqi"], "last_fetched": 1674378125.802969, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "492996183": {"repository_manifest": {"name": "Hue-Like Light Card", "render_readme": true, "filename": "hue-like-light-card.js"}, "full_name": "Gh61/lovelace-hue-like-light-card", "category": "plugin", "description": "This card provides a Hue-like way to control your lights in Home Assistant.", "downloads": 2286, "etag_repository": "W/\"7af88e0334bfbd7780184b2d0733bb0320f3358da4dbc0aace94c1cac38edde6\"", "last_updated": "2022-12-16T00:24:09Z", "stargazers_count": 14, "topics": ["hue", "hue-lights-control", "light", "lovelace-card", "rgb-lights"], "last_fetched": 1674378338.447405, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "498794033": {"repository_manifest": {"name": "Slider Button Card", "render_readme": true, "filename": "slider-button-card.js"}, "full_name": "custom-cards/slider-button-card", "category": "plugin", "description": "A button card with integrated slider", "downloads": 9736, "etag_repository": "W/\"f3bc1edb3685e9c2a4089c525a209be246a2b325fb31040e15a7a4c20a586fcf\"", "last_updated": "2023-01-08T06:18:43Z", "stargazers_count": 55, "topics": ["button-card", "card", "lovelace-custom-card", "slider"], "last_fetched": 1674378303.979545, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "496755553": {"repository_manifest": {"name": "Raspberry Pi 1-Wire via sysbus", "homeassistant": "2022.5.0"}, "full_name": "thecode/ha-onewire-sysbus", "authors": ["@thecode"], "category": "integration", "description": "Home Assistant 1-Wire via sysbus", "domain": "onewire_sysbus", "etag_repository": "W/\"692ed050873d42215ce7d597f90e603349b5b668b3c6d5d2704e5408ca97a43c\"", "last_updated": "2022-12-27T07:13:42Z", "stargazers_count": 15, "topics": ["1-wire", "raspberry-pi"], "last_fetched": 1672948381.927226, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497829589": {"repository_manifest": {"name": "FR24 card", "render_readme": true, "homeassistant": "2022.6.0"}, "full_name": "fratsloos/fr24_card", "category": "plugin", "description": "Lovelace card for showing Dump1090 data from FR24 in Home Assistant", "etag_repository": "W/\"420f543bf038960ff63a73623a3716c5b6a6d6d060980131cbe7ca6ff08d8668\"", "last_updated": "2023-01-16T17:09:48Z", "stargazers_count": 18, "topics": ["ads-b", "flightradar24", "lovelace-card", "mode-s"], "last_fetched": 1674378332.948143, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497319128": {"repository_manifest": {"name": "Kiosk Mode", "render_readme": true}, "full_name": "NemesisRE/kiosk-mode", "category": "plugin", "description": "\ud83d\ude48 Hides the Home Assistant header and/or sidebar", "downloads": 25528, "etag_repository": "W/\"25239d6e13b3641bf1466f06c6f4d9fef0b927f51c5b2f712a4704b3b60e2aa4\"", "last_updated": "2022-05-31T15:30:10Z", "stargazers_count": 43, "topics": ["customization"], "last_fetched": 1674378388.053689, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "501725479": {"repository_manifest": {"name": "Home Assistant Swipe Navigation", "render_readme": true, "filename": "swipe-navigation.js"}, "full_name": "zanna-37/hass-swipe-navigation", "category": "plugin", "description": "\u2194\ufe0f Swipe through Home Assistant Dashboard views on mobile.", "downloads": 4739, "etag_repository": "W/\"8cc516bc410823639b23cbfc82b549d3a9856c65d7dcd285689ec2fd9a32bacc\"", "last_updated": "2022-12-26T12:17:02Z", "stargazers_count": 84, "topics": ["navigation", "swipe"], "last_fetched": 1674378439.131618, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356655356": {"repository_manifest": {"name": "wienerlinien", "render_readme": true, "hacs": "0.19.0", "homeassistant": "2022.3.1", "country": "AT"}, "full_name": "tofuSCHNITZEL/home-assistant-wienerlinien", "authors": ["@tofuSCHNITZEL"], "category": "integration", "description": "A sensor that give you information about departures from a specified Wiener Linien stop.", "domain": "wienerlinien", "etag_repository": "W/\"9fececbf5cef81079fc73550e76ce7e22a3db4a23d78c52047fdae1d37fdb1f3\"", "last_updated": "2022-11-24T22:55:41Z", "stargazers_count": 11, "topics": ["wiener-linien"], "last_fetched": 1674378223.715131, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497322919": {"repository_manifest": {"name": "Upcoming Media Card", "render_readme": true}, "full_name": "NemesisRE/upcoming-media-card", "category": "plugin", "description": "\ud83d\udcfa A card to display upcoming episodes and movies from services like: Plex, Kodi, Radarr, Sonarr, and Trakt.", "downloads": 4729, "etag_repository": "W/\"046588a692c03fae8f293f79fb4e71a6a07b0aa128fa0d94f24967e1eca7ce5f\"", "last_updated": "2022-05-31T15:30:28Z", "stargazers_count": 16, "topics": ["customization"], "last_fetched": 1674378387.792851, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "499270202": {"repository_manifest": {"name": "Hourly Weather Card", "render_readme": true, "filename": "hourly-weather.js"}, "full_name": "decompil3d/lovelace-hourly-weather", "category": "plugin", "description": "Hourly weather card for Home Assistant. Visualize upcoming weather conditions as a colored horizontal bar.", "downloads": 4699, "etag_repository": "W/\"4b6bb5342f7e52d36076ad919939cb98ac6e43e9f5d29c107a43cfdbc80ae59c\"", "last_updated": "2023-01-21T00:16:09Z", "stargazers_count": 56, "topics": ["card", "hourly", "weather"], "last_fetched": 1674378314.23539, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "498774862": {"repository_manifest": {"name": "Material 3 Dark & Light Theme C11: Purple", "filename": "m3-c11-purple.yaml", "render_readme": true}, "full_name": "AmoebeLabs/HA-Theme_M3-C11-Purple", "category": "theme", "description": "Material Design 3 / Material YOU theme for Home Assistant", "etag_repository": "W/\"8ef86abca8dff7420fcb79838c8360430ed3ba83187ecf1764a7c7930950853e\"", "topics": ["dark-mode", "dark-theme", "home-assistant-theme", "light-mode", "light-theme", "material-3"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "501618674": {"repository_manifest": {"name": "BleBox shutterBox with tilt", "hacs": "1.6.0", "homeassistant": "2022.6.0", "render_readme": true}, "full_name": "andrzejchm/blebox_shutterbox_tilt", "authors": ["@andrzejchm"], "category": "integration", "description": "HACS integration for BleBox shutterBox that adds tilt support", "domain": "blebox_shutterbox_tilt", "etag_repository": "W/\"12698c54e46d59440592872ee83e96718b93bfc95c3212b12eed462ea90cdb1f\"", "last_updated": "2023-01-19T01:06:41Z", "stargazers_count": 3, "last_fetched": 1674377813.306689, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "504880554": {"repository_manifest": {"name": "CyclePay for ESD/Hercules Laundry Rooms", "render_readme": true}, "full_name": "elahd/ha-cyclepay", "authors": ["@elahd"], "category": "integration", "description": "Home Assistant Integration for ESD/Hercules CyclePay Laundry Rooms", "domain": "cyclepay", "etag_repository": "W/\"305cc5399f6688f227ef66670691f8ce2132f9e331142c6c0b56179b9a13ed76\"", "last_updated": "2023-01-16T17:51:06Z", "stargazers_count": 2, "topics": ["laundry"], "last_fetched": 1674377939.010354, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "396083412": {"repository_manifest": {"name": "Midea AC LAN", "render_readme": true}, "full_name": "georgezhao2010/midea_ac_lan", "authors": ["@georgezhao2010"], "category": "integration", "description": "Auto-configure and then control your Midea M-Smart devices (Air conditioner, Fan, Water heater, Washer, etc) via local area network.", "domain": "midea_ac_lan", "etag_repository": "W/\"97f7c0d7cc0baac56e0171ee38ac0989f6e6651900725ffa87956cd04ced4c7d\"", "last_updated": "2023-01-20T23:19:16Z", "stargazers_count": 336, "topics": ["air-conditioner", "air-purifier", "cooker", "dehumidifier", "dishwasher", "dryer", "fan", "humidifier", "lan", "midea", "refrigerator", "washer", "water-heater"], "last_fetched": 1674377964.85181, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "504337320": {"repository_manifest": {"name": "Dremel 3D Printer", "hacs": "1.25.5", "homeassistant": "2022.6.6"}, "full_name": "godely/ha-dremel-3d-printer", "authors": ["@godely"], "category": "integration", "description": "Dremel 3D Printer integration for Home Assistant.", "domain": "dremel_3d_printer", "etag_repository": "W/\"dfe4bfaffc6c75cdedc25d2ea58c43ada56c118cea9517be93e2f87120c6c59a\"", "last_updated": "2022-06-28T18:56:38Z", "stargazers_count": 3, "topics": ["3d", "3d-printer", "3d-printing", "bosch", "dremel", "dremel-idea-builder", "dremel-ideabuilder"], "last_fetched": 1661585098.599207, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "506738088": {"repository_manifest": {"name": "Sodexo Card", "country": "PT", "render_readme": true}, "full_name": "netsoft-ruidias/ha-custom-component-sodexo", "authors": ["@ruidias-netsoft"], "category": "integration", "description": "Sodexo - Custom Component for Home Assistant", "domain": "sodexo", "etag_repository": "W/\"c7d53b5db96573eeef3184416bdcd2d91720e98c59c1280fa0420e14739c4d9c\"", "last_updated": "2022-08-24T08:43:39Z", "stargazers_count": 3, "topics": ["meal-card", "sodexo"], "last_fetched": 1671385131.107049, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "503856080": {"repository_manifest": {"name": "My Edenred", "country": "PT", "render_readme": true}, "full_name": "netsoft-ruidias/ha-custom-component-myedenred", "authors": ["@ruidias-netsoft"], "category": "integration", "description": "myEdenred - Custom Component for Home Assistant", "domain": "myedenred", "etag_repository": "W/\"7bbe8941de963f40577d95cf9807610450228916afdf808d9397cbc8027c7da7\"", "last_updated": "2022-07-10T11:44:25Z", "stargazers_count": 4, "topics": ["meal-card", "myedenred"], "last_fetched": 1671385130.75549, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "508800396": {"repository_manifest": {"name": "Coverflex Card", "country": "PT", "render_readme": true}, "full_name": "netsoft-ruidias/ha-custom-component-coverflex", "authors": ["@ruidias-netsoft"], "category": "integration", "description": "Coverflex - Custom Component for Home Assistant", "domain": "coverflex", "etag_repository": "W/\"061dc8b339ccb8716c178cee9eeda5167ad41d68b9783af243567359960966ab\"", "last_updated": "2022-08-17T10:30:54Z", "stargazers_count": 2, "topics": ["coverflex", "meal-card"], "last_fetched": 1661585228.14832, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "509121113": {"repository_manifest": {"content_in_root": true, "homeassistant": "0.70.0", "name": "seven", "render_readme": true}, "full_name": "seven-io/home-assistant", "authors": ["@matthiez"], "category": "integration", "description": "HACS supporting Home Assistant integration for seven", "domain": "seven", "etag_repository": "W/\"52ee476b4fdec779a4d11cdd872fd96b3be6c2bd4d9f0b11a5fb2efa179769f6\"", "last_updated": "2022-07-01T14:04:27Z", "stargazers_count": 1, "topics": ["hassio-integration", "home-assistant-integration", "sms", "tts"], "last_fetched": 1661585298.209728, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "505598474": {"repository_manifest": {"name": "Pre\u00e7os dos Combust\u00edveis - DGEG", "country": "PT", "render_readme": true}, "full_name": "netsoft-ruidias/ha-custom-component-precoscombustiveis", "authors": ["@ruidias-netsoft"], "category": "integration", "description": "Pre\u00e7os dos Combust\u00edveis Online - DGEG", "domain": "precoscombustiveis", "etag_repository": "W/\"67d8357723e2378be51a1ecb1f20096a8e0ddcd792eaf6a0837b8767cc266bf5\"", "last_updated": "2022-07-21T16:09:02Z", "stargazers_count": 14, "topics": ["combustiveis", "dgeg", "fuel-prices", "gas", "portugal"], "last_fetched": 1671385130.849179, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "248462859": {"repository_manifest": {"name": "Alarm.com", "render_readme": true, "homeassistant": "2022.7.0"}, "full_name": "pyalarmdotcom/alarmdotcom", "authors": ["@uvjustin", "@elahd"], "category": "integration", "description": "Custom component to allow Home Assistant to interface with Alarm.com", "domain": "alarmdotcom", "etag_repository": "W/\"c45ab6cfbc357020c9d9c11f76f25ab529dd01a926e9a7c052af3d8c097f9b30\"", "last_updated": "2023-01-17T02:15:59Z", "stargazers_count": 93, "topics": ["alarm"], "last_fetched": 1674378145.625984, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "488086721": {"repository_manifest": {"name": "Platinum Weather Card", "hacs": "1.26.0", "render_readme": true, "hide_default_branch": true}, "full_name": "Makin-Things/platinum-weather-card", "category": "plugin", "description": "This is a fully customisable weather card for Home Assistant with a graphical configuration.", "downloads": 3535, "etag_repository": "W/\"e46b8ea59c4df8185697af2dcce83ef9554a8397250b20ad3016d6f376e86ae3\"", "last_updated": "2023-01-06T11:23:42Z", "stargazers_count": 61, "topics": ["frontend", "weather", "weather-forecast"], "last_fetched": 1674378376.337403, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "505459170": {"repository_manifest": {"name": "TV Remote Card (with touchpad and haptic feedback)", "content_in_root": true, "homeassistant": "2022.4.0"}, "full_name": "usernein/tv-card", "category": "plugin", "description": "\ud83d\udcfa TV Remote Card (with touchpad and haptic feedback)", "downloads": 5429, "etag_repository": "W/\"abce40d2fcc3c4af67a027eecb7af8ab772ceddd5b8f3aceca65c9579c0570cd\"", "last_updated": "2022-11-09T12:32:41Z", "stargazers_count": 46, "topics": ["automation", "card", "remote", "tv"], "last_fetched": 1674378433.015568, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "509260172": {"repository_manifest": {"name": "Curtain Card", "render_readme": true, "filename": "curtain-card.js"}, "full_name": "georgezhao2010/lovelace-curtain-card", "category": "plugin", "description": "Curtain card for Home Assistant Lovelace UI, to control your motor of cover entities.", "etag_repository": "W/\"5c6b38069c2b15be0a140caad3475249e75afb2b92fbbcc448e707174b8ce702\"", "last_updated": "2022-08-14T13:49:13Z", "stargazers_count": 6, "topics": ["cover", "curtain", "frontend", "lovelave"], "last_fetched": 1661441956.239701, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214786112": {"repository_manifest": {"name": "Swiss Army Knife custom card", "render_readme": true}, "full_name": "AmoebeLabs/swiss-army-knife-card", "category": "plugin", "description": "The versatile custom Swiss Army Knife card for Home Assistant allows you to create your unique visualization using several graphical tools, styling options and animations.", "etag_repository": "W/\"918fecb51975ab9e6d6310a1b6c2bfcfc1e39e00e2c986282a62466697652c87\"", "last_updated": "2022-11-10T20:36:54Z", "stargazers_count": 110, "topics": ["home-assistant-custom-card", "lovelace-custom-card", "material-3", "svg"], "last_fetched": 1674378276.680794, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "392931946": {"repository_manifest": {"name": "Aria2 card", "render_readme": true, "filename": "aria2-card.js"}, "full_name": "deblockt/aria2-card", "category": "plugin", "description": "An aria2 card for home assistant", "downloads": 60, "etag_repository": "W/\"cbc0f12858fa832b98f29895d9346b4ab9dad45b5f58f0d9c38dc33a059af48d\"", "stargazers_count": 1, "topics": ["aria2", "download-manager"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309506416": {"repository_manifest": {"name": "WallPanel", "render_readme": true, "filename": "wallpanel.js"}, "full_name": "j-a-n/lovelace-wallpanel", "category": "plugin", "description": "\ud83d\uddbc\ufe0f Wall panel mode and photo screensaver for your Home Assistant Dashboards", "downloads": 4097, "etag_repository": "W/\"e3f0a0372814b5bbff87a5b03bd980ffef042e9596827d3e15dba84523e67285\"", "last_updated": "2023-01-08T10:09:33Z", "stargazers_count": 113, "topics": ["dashboard", "fullscreen", "home-assistant-addons", "photo-gallery", "screensaver", "wallpanel"], "last_fetched": 1674378351.952484, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "504664392": {"repository_manifest": {"name": "PowUnity BikeTrax", "render_readme": true}, "full_name": "basilfx/homeassistant-biketrax", "authors": ["@basilfx"], "category": "integration", "description": "Custom component for the PowUnity BikeTrax integration for Home Assistant.", "domain": "biketrax", "etag_repository": "W/\"0a5330460668b99070e813caae090d64b79a045dde071b4004524d038b6b866b\"", "last_updated": "2022-12-10T00:15:55Z", "stargazers_count": 1, "topics": ["biketrax", "powunity"], "last_fetched": 1671384845.102551, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "517429793": {"repository_manifest": {"name": "EcoStruxure PowerTag Link Gateway", "render_readme": true}, "full_name": "Breina/PowerTagGateway", "authors": ["@Breina"], "category": "integration", "description": "EcoStruxure PowerTag Link Gateway", "domain": "powertag_gateway", "etag_repository": "W/\"3ba806e6765f7d9070d5104043a7b40f102ed210fe2ed877dfb9b3d933796730\"", "last_updated": "2022-08-14T14:57:47Z", "stargazers_count": 3, "topics": ["ecostruxure", "energy-monitor", "schneider-electric"], "last_fetched": 1665325434.388886, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "507038522": {"repository_manifest": {"name": "NAD Multi-room Audio Controller", "render_readme": true}, "full_name": "Breina/nad_controller", "authors": ["@Breina"], "category": "integration", "description": "NAD Multi-room Audio Controller HomeAssistant Integration", "domain": "nad_controller", "etag_repository": "W/\"5c7ece8cdc3b548fc253d70f93ad5580d0cb683e05edeb311236c5455e5deb84\"", "topics": ["amplifier-controller"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "520565579": {"repository_manifest": {"name": "Theme Parks Waiting Times", "render_readme": true}, "full_name": "danielsmith-eu/home-assistant-themeparks-integration", "authors": ["@danielsmith-eu"], "category": "integration", "description": "A Home Assistant integration that shows Theme Park waiting times using the ThemeParks.wiki API", "domain": "themeparks", "etag_repository": "W/\"8ee1d063424682bcf957044a3956ddd4d974b21a5cdf3a51ef8df89fa7626afb\"", "last_updated": "2022-08-16T09:11:42Z", "stargazers_count": 6, "topics": ["api", "queue", "themeparks", "times", "wait"], "last_fetched": 1661585035.229703, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "391700886": {"repository_manifest": {"name": "aria2 integration", "homeassistant": "2021.7.4", "render_readme": true}, "full_name": "deblockt/hass-aria2", "authors": ["@deblockt"], "category": "integration", "description": "Aria2 integration for home assistant", "domain": "aria2", "downloads": 7, "etag_repository": "W/\"150b0f7a24b9f4c3015c0ce41d96dfc9a50d8572f021abdeb53c2b34b559bb3d\"", "stargazers_count": 3, "topics": ["aria2", "download-manager", "downloader"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "514029149": {"repository_manifest": {"name": "Sodexo Dla Ciebie", "hacs": "1.0.0", "homeassistant": "2022.7.5", "render_readme": true, "country": "PL"}, "full_name": "anarion80/sodexo_dla_ciebie", "authors": ["@anarion80"], "category": "integration", "description": "Sodexo Dla Ciebie - Home Assistant Custom Component for Sodexo cards in Poland", "domain": "sodexo_dla_ciebie", "etag_repository": "W/\"fcc7ff3f12b50ac49881672779d4de8daccdaedb7e61beb88d7e462702a7c3f2\"", "topics": ["sodexo"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "514391925": {"repository_manifest": {"name": "AppWash", "render_readme": true}, "full_name": "fapfaff/homeassistant-appwash", "authors": ["@fapfaff"], "category": "integration", "description": "AppWash integration for HomeAssistant", "domain": "appwash", "etag_repository": "W/\"a6da21ebe2577336f18a999cbdd5f13d430eb42aeb286202688f7d411491f883\"", "topics": ["dryer", "miele", "washing-machine"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "438167239": {"repository_manifest": {"name": "LedFx", "render_readme": true, "homeassistant": "2022.4.0"}, "full_name": "dmamontov/hass-ledfx", "authors": ["@dmamontov"], "category": "integration", "description": "LedFx for Home Assistant", "domain": "ledfx", "etag_repository": "W/\"c773da7240a95ecc4d46cad11a4d7ccc88763c54ce76ded29bbb670b6548dd63\"", "last_updated": "2022-09-07T13:22:38Z", "stargazers_count": 28, "topics": ["audio-processing", "led-strips", "ledfx", "music-visualizer"], "last_fetched": 1671384936.682406, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "381052530": {"repository_manifest": {"name": "FordPass China", "country": ["CN"], "render_readme": true}, "full_name": "georgezhao2010/fordpass_china", "authors": ["@georgezhao2010"], "category": "integration", "description": "\u798f\u7279\u6d3e\u7684Home Assistant\u96c6\u6210\u7ec4\u4ef6\uff0c\u901a\u8fc7Home Assistant\u8fdc\u7a0b\u76d1\u63a7\u6216\u8005\u63a7\u5236\u4f60\u7684\u798f\u7279/\u6797\u80af\u6c7d\u8f66", "domain": "fordpass_china", "etag_repository": "W/\"b79c01f4e9784a82a2e15ac4b1ac4666e91224c75fb13860e9331d58fec22092\"", "last_updated": "2022-11-10T11:48:30Z", "stargazers_count": 17, "topics": ["china", "ford", "fordpass", "lincoln", "lincoln-way"], "last_fetched": 1674377964.672828, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "507584200": {"repository_manifest": {"name": "Ecopower Dynamic Grid Prices", "hacs": "1.6.0", "render_readme": true, "homeassistant": "0.118.0"}, "full_name": "infradom/ecopower_dynamic_grid_prices", "authors": ["@infradom"], "category": "integration", "description": "Dynamic Grid Prices for Ecopower", "domain": "ecopower_dynamic_grid_prices", "etag_repository": "W/\"cea4d25ce050740bd6c0c16d14b34ba692a25cc5c1932e781ce316e7943925f7\"", "last_updated": "2022-12-08T13:40:42Z", "stargazers_count": 6, "topics": ["day-ahead-market", "ecopower", "electricity-market", "electricity-prices", "forecasts"], "last_fetched": 1671385010.733676, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200665691": {"repository_manifest": {"homeassistant": "2022.7.0", "name": "ICS Calendar (iCalendar)"}, "full_name": "franc6/ics_calendar", "authors": ["@franc6"], "category": "integration", "description": "Provides an ICS (icalendar) platform for the Home Assistant calendar", "domain": "ics_calendar", "etag_repository": "W/\"61908cac2267e8b9b54fff2bce9d622f2bf4b54cca05ef2cf63753e6dd56e8bb\"", "last_updated": "2022-12-22T21:30:49Z", "stargazers_count": 59, "topics": ["calendar", "ics"], "last_fetched": 1674377955.733846, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "511504216": {"repository_manifest": {"name": "Scinan Thermostat", "render_readme": true}, "full_name": "Skarbo/hass-scinan-thermostat", "authors": ["@skarbo"], "category": "integration", "description": "Home Assistant integration for Scinan Thermostats", "domain": "scinan_thermostat", "etag_repository": "W/\"e538881d72002aaed5530b48ca25e31e99f770e9baa390ee064cf121cee2498e\"", "last_updated": "2022-07-12T11:43:31Z", "stargazers_count": 2, "topics": ["thermostat"], "last_fetched": 1662801946.692353, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "379621461": {"repository_manifest": {"name": "Mixergy"}, "full_name": "tomasmcguinness/homeassistant-mixergy", "authors": ["@tomasmcguinness"], "category": "integration", "description": "Add support for Mixergy's smart water tank into Home Assistant", "domain": "mixergy", "etag_repository": "W/\"80c11844ba54ae41efeb5a3d00823e708fe380799f18985d27b43b6a5c589da0\"", "last_updated": "2022-12-02T13:57:44Z", "stargazers_count": 18, "topics": ["hotwater", "mixergy"], "last_fetched": 1674378227.88097, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512169290": {"repository_manifest": {"name": "CoCT Loadshedding Interface", "homeassistant": "2022.7.1", "country": "ZA"}, "full_name": "tinuva/ha-coct-loadshedding", "authors": ["@tinuva"], "category": "integration", "description": "Fetches loadshedding data from City of Cape Town", "domain": "coct_loadshedding", "etag_repository": "W/\"4da211c432ada4844363dc805ac6ade7471a6e54ba0eee0d34c37a75ef03a032\"", "last_updated": "2022-08-17T13:47:37Z", "stargazers_count": 16, "topics": ["cape", "cape-town", "capetown", "eskom", "loadshedding", "south-africa"], "last_fetched": 1674378223.280011, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "517642950": {"repository_manifest": {"name": "Apex"}, "full_name": "itchannel/apex-ha", "authors": ["@itchannel"], "category": "integration", "description": "Local Neptune Apex HA Integration (Aquarium Controller)", "domain": "apex", "etag_repository": "W/\"47d1398e5fe2296727491977a58214bed222ec3d0d6c2b77ca20b0e66648affb\"", "last_updated": "2022-12-01T05:48:08Z", "stargazers_count": 7, "topics": ["aquarium", "aquarium-controller"], "last_fetched": 1672948166.792736, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403243434": {"repository_manifest": {"name": "Vaillant vSMART", "homeassistant": "2022.11"}, "full_name": "MislavMandaric/home-assistant-vaillant-vsmart", "authors": ["@MislavMandaric"], "category": "integration", "description": "Home Assistant custom component for Vaillant vSMART.", "domain": "vaillant_vsmart", "etag_repository": "W/\"369977936d83e8d110391a2e72567144afccc002129accf1bfa6c95459539514\"", "last_updated": "2023-01-19T04:05:29Z", "stargazers_count": 37, "topics": ["home-assistant-component", "vaillant"], "last_fetched": 1674378090.419631, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512007926": {"repository_manifest": {"name": "Reolink Discovery", "homeassistant": "2022.7.0"}, "full_name": "xannor/ha_reolink_discovery", "authors": ["@xannor"], "category": "integration", "description": "ReoLink Discovery Protocol Integration for Home Assistant", "domain": "reolink_discovery", "etag_repository": "W/\"d7f9d5b50544ddc0a34955cc4de154025e34fbe270cdb3adb34dd6969da7ddfc\"", "last_updated": "2022-09-21T17:38:48Z", "stargazers_count": 3, "topics": ["component"], "last_fetched": 1671385280.635157, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "464303052": {"repository_manifest": {"name": "Reolink IP Devices", "homeassistant": "2022.2.6"}, "full_name": "xannor/ha_reolink_rest", "authors": ["@xannor"], "category": "integration", "description": "ReoLink REST/Web Camera Integration for Home Assistant", "domain": "reolink_rest", "etag_repository": "W/\"e30f33204b317dafc279ec1955a091b04df6d16b8b74d2b2fc4e782bc122566e\"", "last_updated": "2022-11-20T21:48:19Z", "stargazers_count": 23, "topics": ["component"], "last_fetched": 1674378259.415258, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "516625225": {"repository_manifest": {"name": "Sutro", "hacs": "1.6.0", "homeassistant": "0.118.0", "render_readme": true}, "full_name": "ydogandjiev/hass-sutro", "authors": ["@ydogandjiev"], "category": "integration", "description": "This component integrates Home Assistant with Sutro (https://mysutro.com/), a device that enables automated remote monitoring of the temperature as well as the chlorine/bromine, pH, and alkalinity levels.", "domain": "sutro", "etag_repository": "W/\"f3fd63b9e97ce0cdce131e0d1ebf1566e4ca226173abef93c130810b4093bd3b\"", "last_updated": "2022-09-01T04:03:20Z", "stargazers_count": 6, "topics": ["sutro"], "last_fetched": 1662801952.838749, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "526379993": {"repository_manifest": {"name": "tami4edge", "render_readme": true}, "full_name": "0xAlon/tami4edge", "authors": ["@0xAlon"], "category": "integration", "description": "Home Assistant Integration for tami4edge", "domain": "tami4edge", "etag_repository": "W/\"ba86b24126b27b8997e1ad5785eeffa4356371c15404b6c38436a571be72e243\"", "last_updated": "2022-12-29T22:03:04Z", "stargazers_count": 6, "last_fetched": 1674377790.359693, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "527179792": {"repository_manifest": {"name": "wnsm", "render_readme": true, "zip_release": true, "filename": "wnsm.zip", "country": "AT"}, "full_name": "DarwinsBuddy/WienerNetzeSmartmeter", "authors": ["@DarwinsBuddy"], "category": "integration", "description": "A home-assistant integration supporting WienerNetze Smartmeters as sensors", "domain": "wnsm", "downloads": 38, "etag_repository": "W/\"09a0aca8eaa142c63bd2a310c7effdef6597929fa31cf88479cb338bab779ee8\"", "last_updated": "2023-01-21T15:08:52Z", "stargazers_count": 45, "topics": ["energy", "hacktoberfest2022", "smartmeter", "wien-energie", "wiener-netze"], "last_fetched": 1674377904.572501, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "474172189": {"repository_manifest": {"name": "Anycubic 3D Printer", "country": "US", "homeassistant": "2022.3"}, "full_name": "adamoutler/anycubic-homeassistant", "authors": ["@adamoutler"], "category": "integration", "description": "Home assistant integration for Anycubic Printers. ", "domain": "anycubic_wifi", "etag_repository": "W/\"4ba8fd2cf189f475f6f721af4fb9dcf06e46fc81986e43a19f04be13c1b1e906\"", "last_updated": "2022-08-28T15:33:38Z", "stargazers_count": 4, "topics": ["3d-printing"], "last_fetched": 1671384803.246568, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "523250759": {"repository_manifest": {"name": "Seafile", "render_readme": true, "homeassistant": "2022.4.0"}, "full_name": "dmamontov/hass-seafile", "authors": ["@dmamontov"], "category": "integration", "description": "Seafile for Home Assistant", "domain": "seafile", "etag_repository": "W/\"17c5fe0552a933b4ebed45406b19a1a9c4aad23b50d63a98e125a394c746b0dd\"", "last_updated": "2022-12-19T20:28:34Z", "stargazers_count": 6, "topics": ["cloud", "cloud-storage", "file-sync", "files", "seafile", "storage", "sync"], "last_fetched": 1674377921.82255, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "523485043": {"repository_manifest": {"name": "HIQ-Home", "hacs": "1.6.0", "homeassistant": "2022.8.1", "render_readme": true}, "full_name": "killer0071234/ha-hiq", "authors": ["@killer0071234"], "category": "integration", "description": "HIQ-Home Integration for Home Assistant HACS Store", "domain": "hiq", "etag_repository": "W/\"9bddc2f6510de08b2985a31f4b212ebbf95cabbfada1706a0da11e2c7a9c6bde\"", "last_updated": "2022-09-01T18:35:03Z", "topics": ["blind", "cybro", "cybrotech", "hiq", "hiq-home", "homeassistant-custom-component", "robotina"], "last_fetched": 1662801835.990043, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "333849286": {"repository_manifest": {"name": "Eforsyning", "render_readme": true, "country": "DK", "homeassistant": "2022.12"}, "full_name": "kpoppel/homeassistant-eforsyning", "authors": ["@kpoppel"], "category": "integration", "description": "Home Assistant module enabling retrieval of regional heating data from eForsyning.", "domain": "eforsyning", "etag_repository": "W/\"3344cb72a0e5b6e31db50839338c56e2f781fd25ee2e994e6efad8f5c43865c5\"", "last_updated": "2023-01-15T10:55:26Z", "stargazers_count": 20, "topics": ["energy", "heating"], "last_fetched": 1674378047.087862, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "504081359": {"repository_manifest": {"name": "Sonic by markvader", "homeassistant": "2022.6.0", "render_readme": true}, "full_name": "markvader/sonic", "authors": ["@markvader"], "category": "integration", "description": "Beta version of the Sonic integration by @markvader", "domain": "sonic", "etag_repository": "W/\"fed6224420814a3dd6b4467d7241b2a207dcfc44c90ca301badfe648298a587e\"", "last_updated": "2023-01-18T10:00:02Z", "stargazers_count": 6, "topics": ["hero-labs", "herolabs", "leaks", "sonic", "water"], "last_fetched": 1674378079.481462, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340926904": {"repository_manifest": {"name": "Novafos", "render_readme": true, "country": "DK"}, "full_name": "kpoppel/homeassistant-novafos", "authors": ["@kpoppel"], "category": "integration", "description": "Homeassistant wrapper around the Novafos KMD water metering data warehouse.", "domain": "novafos", "etag_repository": "W/\"94cadc7125dfd02606766e6e09b99fc455548d469f24a58be6b66eba87c6bc5a\"", "last_updated": "2022-11-02T23:44:56Z", "stargazers_count": 6, "topics": ["water"], "last_fetched": 1671385066.127987, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291157903": {"repository_manifest": {"name": "RRD Recorder", "render_readme": true}, "full_name": "dgomes/ha_rrd_recorder", "authors": ["@dgomes"], "category": "integration", "description": "RRD Custom Component for Home Assistant", "domain": "rrd_recorder", "etag_repository": "W/\"1a4236e2f4deef8c88c285fdc87ce06346a9bd3c483823314bc12504dfef29ac\"", "last_updated": "2022-08-18T16:20:29Z", "stargazers_count": 7, "topics": ["home-assistant-component", "rrdtool"], "last_fetched": 1666451270.920281, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "271984369": {"repository_manifest": {"name": "Ferroamp Sensors", "homeassistant": "2022.12.0b0"}, "full_name": "henricm/ha-ferroamp", "authors": ["@henricm", "@argoyle"], "category": "integration", "description": "Ferroamp MQTT Home Assistant sensors for EnergyHub, SSO, ESM and ESO", "domain": "ferroamp", "etag_repository": "W/\"82fde405429e3241271e51bb11734229a1174ba31785308682be0301f111cb9f\"", "last_updated": "2023-01-04T08:41:02Z", "stargazers_count": 27, "topics": ["ferroamp", "homeassistant-custom-component"], "last_fetched": 1672948151.328963, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454440949": {"repository_manifest": {"name": "Room Card", "filename": "room-card.js", "render_readme": true, "content_in_root": true}, "full_name": "marcokreeft87/room-card", "category": "plugin", "description": "Show multiple entity states, attributes and icons in a single card in Home Assistant's Lovelace UI", "etag_repository": "W/\"42c9786f61081e40864885e3db9511b9224ba48254dcd0ca2ae8df2c5ef72f52\"", "last_updated": "2023-01-16T08:27:18Z", "stargazers_count": 91, "topics": ["attribute", "card", "entities", "format", "homeassistant-frontend", "lovelace-custom-card", "room"], "last_fetched": 1674378381.455703, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "523827471": {"repository_manifest": {"name": "Systemair SAVE Connect Integration", "homeassistant": "2022.8.3", "render_readme": true}, "full_name": "perara/systemair-save-connect", "authors": ["@perara"], "category": "integration", "description": "Systemair SAVE Connect: custom integration for Home Assistant", "domain": "systemair", "etag_repository": "W/\"8f25c7cc8a8e6f6d6b49083760d533aff39162f16db294df57bee0d92aaebafa\"", "last_updated": "2022-08-15T18:38:52Z", "stargazers_count": 3, "topics": ["systemair", "ventilation"], "last_fetched": 1671385143.659022, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "505066911": {"repository_manifest": {"name": "Intex Spa", "hacs": "1.6.0", "homeassistant": "2022.4.0", "render_readme": true}, "full_name": "mathieu-mp/homeassistant-intex-spa", "authors": ["@mathieu-mp", "@Elkropac"], "category": "integration", "description": "Home Assistant integration for Intex Spa", "domain": "intex_spa", "etag_repository": "W/\"d5ad4fd9189325eb2fd5b952512fb83e0eb607f4c45a1488099ea42f64a06705\"", "last_updated": "2022-09-13T09:21:52Z", "stargazers_count": 13, "topics": ["climate", "intex", "purespa", "spa", "switch"], "last_fetched": 1674378081.797491, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "527278013": {"repository_manifest": {"name": "L\u00e4nder\u00fcbergreifendes Hochwasser Portal", "country": "DE", "render_readme": true}, "full_name": "stephan192/hochwasserportal", "authors": ["@stephan192"], "category": "integration", "description": "Home Assistant integration for L\u00e4nder\u00fcbergreifendes Hochwasser Portal", "domain": "hochwasserportal", "etag_repository": "W/\"8de59f91beca1e6f46c8ba3c19bcc5d5062fdf856c832e70da07246bf505b696\"", "last_updated": "2022-08-29T17:20:30Z", "stargazers_count": 5, "topics": ["hochwasserportal"], "last_fetched": 1665325759.542346, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269665267": {"repository_manifest": {"name": "Yamaha (YNCA)", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "mvdwetering/yamaha_ynca", "authors": ["@mvdwetering"], "category": "integration", "description": "Custom integration for Home Assistant to support Yamaha AV receivers with the YNCA protocol (serial and IP).", "domain": "yamaha_ynca", "etag_repository": "W/\"6c95546b29f395a77a93824c6a35d4f129376ebee2a5f9e1969372ae3f8c6a53\"", "last_updated": "2023-01-19T21:47:41Z", "stargazers_count": 13, "topics": ["home-assistant-component", "yamaha-avr", "yamaha-receiver"], "last_fetched": 1674378106.558655, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "520644302": {"repository_manifest": {"name": "TAM Card", "render_readme": true, "filename": "tam-card.js"}, "full_name": "MathisAlepis/lovelace-tam-card", "category": "plugin", "description": "Montpellier Lovelace TAM card displays next two crossing times of the tramway or bus in Montpellier, France.", "downloads": 131, "etag_repository": "W/\"e7c14a9563bcac8e5efc7a42a90d1a885d2bcde8abb5e05760a1eabcb4a6d3d8\"", "last_updated": "2022-09-14T11:20:07Z", "stargazers_count": 4, "topics": ["lovelace-custom-card", "montpellier", "public-transport", "tam"], "last_fetched": 1671385417.753895, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "524783308": {"repository_manifest": {"name": "Shutter Row", "render_readme": true, "filename": "shutter-row.js", "content_in_root": true}, "full_name": "berrywhite96/lovelace-shutter-row", "category": "plugin", "description": "Home Assistant Lovelace Shutter Row Card", "downloads": 1907, "etag_repository": "W/\"d274e8533e64da1c0face67a6d93ed8202fe1df70514ba8450b3de7fd4d1da9d\"", "last_updated": "2023-01-07T00:51:26Z", "stargazers_count": 5, "topics": ["home-assistant-card", "lovelace-card"], "last_fetched": 1674378285.792019, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "523291160": {"repository_manifest": {"name": "Daily Schedule", "render_readme": true, "hide_default_branch": true}, "full_name": "amitfin/daily_schedule", "authors": ["@amitfin"], "category": "integration", "description": "Home Assistant Daily Schedule Custom Component", "domain": "daily_schedule", "etag_repository": "W/\"488c094ec3df08f557e1ac4698484e40ea5a6c7c0e3a028459c763111b18cfc1\"", "last_updated": "2022-11-13T18:09:18Z", "stargazers_count": 4, "topics": ["homeassistant-custom-component"], "last_fetched": 1672947978.36072, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "401282856": {"repository_manifest": {"name": "Octopus Energy", "render_readme": true}, "full_name": "BottlecapDave/HomeAssistant-OctopusEnergy", "authors": ["@bottlecapdave"], "category": "integration", "description": "Home Assistant integration for interacting with Octopus Energy", "domain": "octopus_energy", "etag_repository": "W/\"226f14add49af5a1935979d551a9a1aedff731cf9943b584bb6d017e7a25ba50\"", "last_updated": "2023-01-20T18:39:35Z", "stargazers_count": 127, "topics": ["octopus-energy"], "last_fetched": 1674377842.805848, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "419449609": {"repository_manifest": {"name": "First Bus", "render_readme": true}, "full_name": "BottlecapDave/HomeAssistant-FirstBus", "authors": ["@bottlecapdave"], "category": "integration", "description": "Home Assistant integration for determining the time to the next First bus", "domain": "first_bus", "etag_repository": "W/\"89f360c9e5839ba313e6054e093690b5853ebac29de3559deb16325dfdc696da\"", "stargazers_count": 2, "topics": ["bus-arrival", "first-bus"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "530452578": {"repository_manifest": {"name": "FlashForge Adventurer 3", "render_readme": true, "homeassistant": "2022.6", "hacs": "1.26"}, "full_name": "modrzew/hass-flashforge-adventurer-3", "authors": ["@modrzew"], "category": "integration", "description": "Home Assistant integration providing support for the FlashForge Adventurer 3 3D printer.", "domain": "flashforge_adventurer_3", "etag_repository": "W/\"80940909b148902e416b74b6511965f3187c7e2e02111bd9155347cb4b316269\"", "last_updated": "2022-12-06T00:30:16Z", "stargazers_count": 6, "topics": ["flashforge", "flashforge-adventurer"], "last_fetched": 1674378093.206871, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "529926820": {"repository_manifest": {"homeassistant": "2022.6.0", "name": "lelight", "render_readme": true}, "full_name": "v1ack/lelight", "authors": ["@v1ack"], "category": "integration", "description": "LeLight integration for Home Assistant", "domain": "lelight", "etag_repository": "W/\"fda1a1969e796c3dc11015aef8e5d68bb533e394a79735b3b30d1bf8435e63ea\"", "stargazers_count": 2, "topics": ["ble", "lelight"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534083455": {"repository_manifest": {"name": "Deutsche Bahn", "render_readme": true, "country": ["DE"]}, "full_name": "FaserF/ha-deutschebahn", "authors": ["@faserf"], "category": "integration", "description": "Unofficial HA DB Integration, due to removal as of Home Assistant 2022.11", "domain": "deutschebahn", "etag_repository": "W/\"0c9cb11269e6126bcbb1cafecd2be048e20e3527acdd36fb8f4ca5c87b271181\"", "last_updated": "2022-11-07T08:46:30Z", "stargazers_count": 18, "last_fetched": 1674377945.986143, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "531321012": {"repository_manifest": {"name": "IAMMETER", "homeassistant": "2022.8.0"}, "full_name": "lewei50/ha_iammeter", "authors": ["@lewei50"], "category": "integration", "description": "IAMMETER custom component for Home Assistant", "domain": "iammeter_http", "etag_repository": "W/\"34101cbc67e1b4ee1e865b77806820bc6c8892f951734ed09f2ae473ccf83ee3\"", "last_updated": "2022-11-07T06:46:40Z", "stargazers_count": 1, "last_fetched": 1671385078.565277, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "519811207": {"repository_manifest": {"name": "EVN Data Fetcher", "country": ["VN"], "homeassistant": "2022.7.0", "render_readme": true}, "full_name": "trvqhuy/nestup_evn", "authors": ["@trvqhuy"], "category": "integration", "description": "A simple yet efficient custom component to fetch data from EVN Vietnam for Home Assistant", "domain": "nestup_evn", "etag_repository": "W/\"5f48f549c305ab1033096311c7b9ee9ea4ac89f3a10dd3c3b3063be2f2ccffc9\"", "last_updated": "2022-09-15T05:45:53Z", "stargazers_count": 30, "topics": ["electricity-meter", "homeassistant-custom-component", "polling-service"], "last_fetched": 1674378234.075693, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203036108": {"repository_manifest": {"name": "Valetudo Map Card", "content_in_root": true, "filename": "valetudo-map-card.js", "render_readme": true}, "full_name": "Hypfer/lovelace-valetudo-map-card", "category": "plugin", "description": "Draws the map available from a Xiaomi Vacuum cleaner flashed with Valetudo in a Home Assistant Lovelace card", "etag_repository": "W/\"88c70c58bfc1dd7c80d235be2fa850c6446aeeb8f1a09cae793cd4caab570f74\"", "last_updated": "2022-12-22T07:27:56Z", "stargazers_count": 173, "topics": ["valetudo"], "last_fetched": 1674378343.475562, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "537793361": {"repository_manifest": {"name": "MyJDownloader Card", "filename": "myjdownloader-card.js"}, "full_name": "Nyaran/myjdownloader-card", "category": "plugin", "description": "This Lovelace custom card displays downloads information provided by the MyJDownloader Integration", "downloads": 559, "etag_repository": "W/\"87ceee9c1729db5c6551ea06faae8a6e5786b052ad12feb4bc3b2c86b0b2d5d0\"", "last_updated": "2023-01-14T13:16:44Z", "stargazers_count": 2, "topics": ["hacs-custom", "jdownloader", "myjdownloader"], "last_fetched": 1674378392.731512, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512213802": {"repository_manifest": {"homeassistant": "2022.6.0", "name": "Cecotec Conga 5290", "render_readme": true}, "full_name": "alemuro/ha-cecotec-conga", "authors": ["@alemuro"], "category": "integration", "description": "Cecotec Conga - Custom Component for Home Assistant", "domain": "cecotec_conga", "etag_repository": "W/\"2f5fe8f09e88edd5663eb90e32b8cde4d30d1cef21e0fb576cfc3de1e69a0231\"", "last_updated": "2022-12-06T12:33:55Z", "stargazers_count": 3, "topics": ["automation", "cecotec", "conga"], "last_fetched": 1671384809.349746, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "531686897": {"repository_manifest": {"name": "dolphin", "render_readme": true}, "full_name": "0xAlon/dolphin", "authors": ["@0xAlon"], "category": "integration", "description": "Home Assistant Integration for Dolphin Boiler - Smart Water Heating Control", "domain": "dolphin", "etag_repository": "W/\"113911226a031d94bac6871faeb7c870572c0dd6ce27e055e1055fcf54dbd185\"", "last_updated": "2023-01-09T11:11:30Z", "stargazers_count": 3, "last_fetched": 1674377790.414734, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "535287543": {"repository_manifest": {"name": "evnex", "render_readme": true}, "full_name": "hardbyte/ha-evnex", "authors": ["@hardbyte"], "category": "integration", "description": "A cloud-polling Home Assistant component to integrate with an Evnex Charger", "domain": "evnex", "etag_repository": "W/\"54d1362a39b92512b1d3530876bc604f6a96a3157481d7cc5bb7a3c5dafbf070\"", "last_updated": "2022-10-31T19:44:06Z", "stargazers_count": 2, "topics": ["charger", "energy-consumption", "homeassistant-custom-component"], "last_fetched": 1671384994.270853, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "537001731": {"repository_manifest": {"name": "Facebook Messenger", "render_readme": true}, "full_name": "emes30/facebook_messenger", "authors": ["@emes30"], "category": "integration", "description": "Home Assistant custom integration for Facebook Messenger.", "domain": "facebook_messenger", "etag_repository": "W/\"38710c68654ffcb0778abc219579525417e535b68adcbf24d66967907f009500\"", "last_updated": "2022-09-26T21:07:38Z", "stargazers_count": 9, "topics": ["facebook", "images", "messenger"], "last_fetched": 1671384955.603725, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "532263303": {"repository_manifest": {"name": "Met.no next 6 hours forecast", "render_readme": true, "zip_release": true, "filename": "home-assistant-met-next-6-hours-forecast.zip"}, "full_name": "toringer/home-assistant-met-next-6-hours-forecast", "authors": ["@toringer"], "category": "integration", "description": "Met.no next 6 hours forecast component for Home Assistant", "domain": "met_next_6_hours_forecast", "downloads": 485, "etag_repository": "W/\"519929f802c7671b6b345a82b1078fa946bc30c1aaf93908731d50d1dcb62dc6\"", "stargazers_count": 1, "topics": ["forecast", "metno", "weather", "weather-forecast"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "525588589": {"repository_manifest": {"name": "Aquarea Smart Cloud", "render_readme": true}, "full_name": "cjaliaga/home-assistant-aquarea", "authors": ["@cjaliaga"], "category": "integration", "description": "Home Assistant integration for Panasonic Aquarea devices connected to Aquarea Smart Cloud", "domain": "aquarea", "etag_repository": "W/\"636bfd5412b20ba1a1731714ede3be191cedc1eac8369df30ba23a04fc746eb2\"", "last_updated": "2023-01-18T17:32:29Z", "stargazers_count": 27, "topics": ["aquarea", "panasonic", "panasonic-comfort-cloud", "panasonic-smart-cloud"], "last_fetched": 1674377862.88383, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "538235457": {"repository_manifest": {"name": "ZTE tracker", "render_readme": true, "country": "ES"}, "full_name": "juacas/zte_tracker", "authors": ["@juacas"], "category": "integration", "description": "Device tracker for ZTE F6640 Router in Home Assistant", "domain": "zte_tracker", "etag_repository": "W/\"b03eb6ee11514e810c67ae70d5dafcb6f90071613a357175e093eb7cfd1ba949\"", "last_updated": "2022-10-10T18:25:56Z", "stargazers_count": 2, "topics": ["device-tracker", "router"], "last_fetched": 1672948191.105203, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "535833284": {"repository_manifest": {"name": "Chroma", "homeassistant": "2022.9.0"}, "full_name": "Vaskivskyi/ha-chroma", "authors": ["@vaskivskyi"], "category": "integration", "description": "Control your Chroma-enabled devices from Home Assistant", "domain": "chroma", "etag_repository": "W/\"e75b4daee6373bb3e7dcda70a14b4004735636fa40f785f0659d54722a4b8c75\"", "last_updated": "2023-01-08T08:27:08Z", "stargazers_count": 12, "topics": ["chroma", "razer", "razer-chroma"], "last_fetched": 1674378244.757335, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534317237": {"repository_manifest": {"name": "QR-Code Generator", "render_readme": true}, "full_name": "DeerMaximum/QR-Code-Generator", "authors": ["@DeerMaximum"], "category": "integration", "description": "Custom Home Assistant integration to create a camera that displays a custom QR-Code", "domain": "qr_generator", "etag_repository": "W/\"18a0a8108ae9bd99125ef65b2baef7441b2c11da1c3c22f25a7bedbb8253b5ea\"", "last_updated": "2022-12-17T15:13:40Z", "stargazers_count": 10, "topics": ["qrcode-generator"], "last_fetched": 1671384925.227514, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "452866308": {"repository_manifest": {"name": "Tabbed Card", "render_readme": true}, "full_name": "kinghat/tabbed-card", "category": "plugin", "description": "a custom card for home assistant that utilizes tabs to segregate individual cards.", "downloads": 5240, "etag_repository": "W/\"a3e1d6bb812f3bb3bb1fd87703d468ab1434c5d01cf3d454b29f8ee8c2de4dcc\"", "last_updated": "2023-01-17T19:38:37Z", "stargazers_count": 32, "topics": ["card", "hacs-custom", "home-assistant-component", "lovelace-custom-card"], "last_fetched": 1674378369.870156, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "541978646": {"repository_manifest": {"name": "Technische Alternative C.M.I.", "render_readme": true}, "full_name": "DeerMaximum/Technische-Alternative-CMI", "authors": ["@DeerMaximum"], "category": "integration", "description": "Custom Home Assistant integration to read data from a C.M.I", "domain": "ta_cmi", "etag_repository": "W/\"a92411c54e44a167e6219839ff1e308fd80fcd11dc2c0e1ee028a55f6d88adca\"", "last_updated": "2023-01-20T18:09:09Z", "stargazers_count": 12, "last_fetched": 1674377911.050722, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "531349329": {"repository_manifest": {"name": "MyDolphin Plus", "homeassistant": "2021.12.0"}, "full_name": "sh00t2kill/dolphin-robot", "authors": ["@sh00t2kill", "@lordlala", "@elad-bar"], "category": "integration", "description": "A custom Home Assistant Component for WiFI enabled Maytronics Dolphin pool cleaner robots", "domain": "mydolphin_plus", "etag_repository": "W/\"1e6f01d638eace91134843a9ca484a50713dcc4a81aac12df0e5eb67da5dda3c\"", "last_updated": "2022-12-12T03:48:15Z", "stargazers_count": 11, "topics": ["dolphin", "maytronics", "robot"], "last_fetched": 1674378187.248486, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "522634019": {"repository_manifest": {"name": "Clock Weather Card", "render_readme": true, "filename": "clock-weather-card.js"}, "full_name": "pkissling/clock-weather-card", "category": "plugin", "description": "A Home Assistant Card indicating today's date/time, along with an iOS inspired weather forecast for the next days with animated icons", "downloads": 5125, "etag_repository": "W/\"3ca388e975110a1ac3e3deffc2a9f559498887d1ea796702c6a9da639146e5b2\"", "last_updated": "2023-01-14T10:28:46Z", "stargazers_count": 67, "topics": ["animated", "animation", "bar", "clock", "date", "forecast", "gradient", "icons", "ios", "time", "weather"], "last_fetched": 1674378400.455633, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "556306418": {"repository_manifest": {"name": "Daily Schedule Card", "filename": "daily-schedule-card.js", "render_readme": true}, "full_name": "amitfin/lovelace-daily-schedule-card", "category": "plugin", "description": "Home Assistant Custom Card for Daily Schedule Integration", "etag_repository": "W/\"5ceebc7ce0e12db5ca2d80e3a4afff878ee700f35c4571399de766fc2d4c37bf\"", "stargazers_count": 1, "topics": ["lovelace-custom-card"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "536329656": {"repository_manifest": {"name": "Firemote Card", "render_readme": true, "filename": "HA-Firemote.js"}, "full_name": "PRProd/HA-Firemote", "category": "plugin", "description": "Home Assistant Lovelace Card that emulates the remote control for an Amazon Fire TV, or streaming stick", "etag_repository": "W/\"daefbe660c6297ff10751127254b254210b4a3acf98f374b7f0978a5e30aadd2\"", "last_updated": "2023-01-03T20:03:38Z", "stargazers_count": 34, "topics": ["amazon-fire", "amazon-fire-cube", "amazon-fire-stick", "amazon-fire-tv", "firestick4k"], "last_fetched": 1674378400.592292, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "527414830": {"repository_manifest": {"name": "Eight Sleep Climate", "hacs": "1.0.0", "homeassistant": "0.118.0", "render_readme": true}, "full_name": "amosyuen/ha-eight-sleep-climate", "authors": ["@amosyuen"], "category": "integration", "description": "Climate entity for controlling eight sleep bed", "domain": "eight_sleep_climate", "etag_repository": "W/\"e6ac030c9ec93352d52bdb1390b8d75ee0196c7d4a4f310107faeaf13f1e80da\"", "last_updated": "2022-12-09T17:07:54Z", "stargazers_count": 2, "topics": ["eight-sleep", "thermostat"], "last_fetched": 1671384826.069203, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "556789449": {"repository_manifest": {"name": "WhatsPie", "homeassistant": "2022.6.0", "render_readme": true}, "full_name": "arifwn/homeassistant-whatspie-integration", "authors": ["@arifwn"], "category": "integration", "description": "Send HomeAssistant Notifications to WhatsApp using WhatsPie", "domain": "whatspie", "etag_repository": "W/\"04013125f547f57ab18662943146f567677cf4ed608da8b104bf68517eef9522\"", "last_updated": "2022-11-22T10:23:37Z", "stargazers_count": 2, "topics": ["whatsapp", "whatspie"], "last_fetched": 1671384833.491533, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "542686924": {"repository_manifest": {"name": "ENTSO-e Transparency Platform", "render_readme": true}, "full_name": "JaccoR/hass-entso-e", "authors": ["@JaccoR"], "category": "integration", "description": "Integration for Home Assistant to fetch day ahead energy prices from European countries via ENTSO-e Transparency Platform", "domain": "entsoe", "etag_repository": "W/\"4622701a6fdcf16b810c2dc8fc586990664f8e9d663c660fb5cbaffd579662a6\"", "last_updated": "2023-01-16T13:39:58Z", "stargazers_count": 97, "topics": ["day-ahead", "day-ahead-auction", "day-ahead-market", "electricity-market", "electricity-prices", "energy", "energy-prices", "entso-e", "entsoe"], "last_fetched": 1674378001.574601, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328566789": {"repository_manifest": {"name": "BeoPlay", "country": "US", "render_readme": true}, "full_name": "giachello/beoplay", "authors": ["@giachello"], "category": "integration", "description": "Home Assistant component to control BeoPlay including TVs, Speakers and others. ", "domain": "beoplay", "etag_repository": "W/\"5d12d55f915993d3bd243fad0aebdd60dc4b82aba6278b2d6d4771385c1b82f8\"", "last_updated": "2023-01-21T18:17:03Z", "stargazers_count": 10, "topics": ["bang-olufsen"], "last_fetched": 1674377965.476964, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "521964078": {"repository_manifest": {"name": "Rewe Discounts", "render_readme": true}, "full_name": "FaserF/ha-rewe", "authors": ["@faserf"], "category": "integration", "description": "Rewe Discounts Homeassistant Integration", "domain": "rewe", "etag_repository": "W/\"259fb9db7f599157da54f044579f52702cc6bf640edcd431e56a1eab8d8ff865\"", "last_updated": "2023-01-06T17:32:22Z", "stargazers_count": 6, "last_fetched": 1674377946.05838, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "545025660": {"repository_manifest": {"name": "Web Untis", "render_readme": true, "zip_release": true, "filename": "webuntis.zip", "homeassistant": "2021.11.0"}, "full_name": "JonasJoKuJonas/homeassistant-WebUntis", "authors": ["@JonasJoKuJonas"], "category": "integration", "description": "Custom component to access data from Web Untis in Home Assistant", "domain": "webuntis", "downloads": 179, "etag_repository": "W/\"587fe6463ac6d24c0a933f1988159e8bcdd460973e845c535a0412f9d85c3f9c\"", "last_updated": "2023-01-08T11:37:58Z", "stargazers_count": 16, "topics": ["homeassista", "homeassistant-custom-component", "webuntis", "webuntis-api", "webuntis-client"], "last_fetched": 1674378021.63247, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "539629703": {"repository_manifest": {"name": "MeteoGalicia", "country": "ES"}, "full_name": "Danieldiazi/homeassistant-meteogalicia", "authors": ["@danieldiazi"], "category": "integration", "description": "A Home Assistant integration that gives you weather info from MeteoGalicia, the meteorological agency for Galicia, Spain", "domain": "meteogalicia", "etag_repository": "W/\"5dc11c4329d73fc528dc79eb01dd6fa1b68cca0cc471b094a6ec1445c20fde48\"", "last_updated": "2022-11-10T14:04:39Z", "stargazers_count": 5, "topics": ["meteogalicia"], "last_fetched": 1671384914.063786, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "545119372": {"repository_manifest": {"name": "Camect", "render_readme": true, "homeassistant": "2022.9"}, "full_name": "Fr3d/camect-ha", "authors": ["@Fr3d"], "category": "integration", "description": "Full Camect Hub integration for Home Assistant / HACS", "domain": "camect", "etag_repository": "W/\"27658d032103152878b3c55b9a67d804a12287155360be6029a9e1ec59d69836\"", "last_updated": "2022-10-05T09:02:50Z", "stargazers_count": 4, "topics": ["camect", "home-assistant-integration"], "last_fetched": 1672948120.3144, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "536765576": {"repository_manifest": {"name": "My EcoWatt by RTE", "render_readme": true, "country": "fr", "homeassistant": "2022.11"}, "full_name": "kamaradclimber/rte-ecowatt", "authors": ["@kamaradclimber"], "category": "integration", "description": "A home assistant component for ecowatt api exposed by french company RTE", "domain": "rte_ecowatt", "etag_repository": "W/\"f464b718a1260c91b775ddf6621ac5d373eb331cea68192404eee0b378055fe1\"", "last_updated": "2022-12-15T17:18:27Z", "stargazers_count": 54, "topics": ["electricity", "rte"], "last_fetched": 1672948200.845482, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "542062483": {"repository_manifest": {"name": "HASS.Agent", "homeassistant": "2022.9", "render_readme": true}, "full_name": "LAB02-Research/HASS.Agent-Integration", "authors": ["@fillefilip8", "@LAB02-Admin"], "category": "integration", "description": "HASS.Agent's Home Assistant integration. Adds notifications and mediaplayer capabilities to HASS.Agent - a Windows based client (companion app) for Home Assistant.", "domain": "hass_agent", "etag_repository": "W/\"c7bd51e1b1366749ed05ebf0773b032f1c7f432751dba5e4a888cc5b642a0f56\"", "last_updated": "2022-11-23T08:36:43Z", "stargazers_count": 21, "topics": ["notifications"], "last_fetched": 1674378050.616948, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512965887": {"repository_manifest": {"name": "mhtzn", "render_readme": true, "country": "CN"}, "full_name": "leonardlcl/mhtzn", "authors": ["@leonardlcl"], "category": "integration", "description": "MHTZN custom component for Home Assistant", "domain": "mhtzn", "etag_repository": "W/\"349277832d0bf45f658fc4f94238d93081f180dfa616bcd5469cf508b9b0577e\"", "last_updated": "2023-01-04T03:32:51Z", "stargazers_count": 2, "topics": ["hass-mhtzn", "mhtzn"], "last_fetched": 1674378058.454837, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "537806998": {"repository_manifest": {"name": "Overwolf Webhook"}, "full_name": "lociii/homeassistant-overwolf-status", "authors": ["@lociii"], "category": "integration", "description": "Home Assistant custom integration that handles game events from Overwolf and broadcasts them as events in Home Assistant", "domain": "overwolfstatus", "etag_repository": "W/\"ecb76b6cea92573487d2c47750fe03dc2f9b74a2fc4230a43147f217b4b4974c\"", "last_updated": "2022-12-31T15:17:11Z", "stargazers_count": 3, "topics": ["overwolf", "overwolf-hooks", "pubg"], "last_fetched": 1672948236.187135, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "556352757": {"repository_manifest": {"name": "Geo Home Smart Meter Integration", "render_readme": true}, "full_name": "mmillmor/geo_home", "authors": ["@mmillmor"], "category": "integration", "description": "Geo Home smart meter integration for Home Assistant", "domain": "geo_home", "etag_repository": "W/\"aca15a85bfad17279731724988203dc5cd42dce3d838bcbc99e25d864bcd9f52\"", "last_updated": "2022-12-29T08:39:44Z", "stargazers_count": 9, "topics": ["home-assistant-integration", "smart-meter"], "last_fetched": 1674378092.51022, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "547177218": {"repository_manifest": {"name": "cFos Powerbrain", "render_readme": true}, "full_name": "mb-software/homeassistant-powerbrain", "authors": ["@mb-software"], "category": "integration", "description": "Custom Component for Homeassistant to integrate cFos Powerbrain devices", "domain": "powerbrain", "etag_repository": "W/\"d027d530966f6c6f1d143b6b1b62588e32809e293f5c437b5705cf2710cb2fe9\"", "last_updated": "2023-01-03T03:08:48Z", "stargazers_count": 4, "topics": ["cfos", "evse", "homeassistant-custom-component", "powerbrain", "wallbox"], "last_fetched": 1672948251.37301, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "555110808": {"repository_manifest": {"name": "IamMeter Modbus", "render_readme": true}, "full_name": "lewei50/ha_iammeter_modbus", "authors": ["@lewei50"], "category": "integration", "description": "IamMeterr Modbus custom_component for Home Assistant", "domain": "iammeter_modbus", "etag_repository": "W/\"ab01960d4ca9098ac1ab594e48c22843d310bbb96ea96bc6238735929fc60794\"", "stargazers_count": 1, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458237432": {"repository_manifest": {"name": "Uptime Kuma", "render_readme": true, "hide_default_branch": true, "homeassistant": "2021.12.0"}, "full_name": "meichthys/uptime_kuma", "authors": ["@meichthys", "@jayakornk"], "category": "integration", "description": "Uptime Kuma HACS integration", "domain": "uptime_kuma", "etag_repository": "W/\"3c46b462e20648253518188bdb9ea83b046a228fd1fe34630d50190c34a5c607\"", "last_updated": "2023-01-09T17:10:20Z", "stargazers_count": 32, "topics": ["home-assistant-custom-component", "homeassistant-custom-component", "uptime-kuma"], "last_fetched": 1674378086.960561, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "524376939": {"repository_manifest": {"name": "One Smart Control", "country": "NL"}, "full_name": "PimDoos/onesmartcontrolha", "authors": ["@PimDoos"], "category": "integration", "description": "Home Assisttant integration for One Smart Control server", "domain": "onesmartcontrol", "etag_repository": "W/\"d51f1d67ae89bb9919fa76d9ad7f2c7acf461183bb5fa783200b631034ac3fc8\"", "stargazers_count": 3, "topics": ["home-assistant-custom-component", "one-smart-control", "socket"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "360408082": {"repository_manifest": {"name": "Flair", "render_readme": true, "country": "US", "homeassistant": "2022.11.0b0"}, "full_name": "RobertD502/home-assistant-flair", "authors": ["@RobertD502"], "category": "integration", "description": "Custom component for Home Assistant Core for Flair pucks, vents, rooms, structures, and minisplits ", "domain": "flair", "etag_repository": "W/\"36d7341e9905678eed11d403bb7a25ba6dea8341ebbcf045981a40e10a5d277b\"", "last_updated": "2022-12-21T19:43:55Z", "stargazers_count": 54, "topics": ["flair", "flair-hvac", "flair-puck", "flair-vent", "flair-vents"], "last_fetched": 1672948323.304548, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "560848165": {"repository_manifest": {"name": "Compound definition for Home Assistant integration for Homey", "render_readme": true}, "full_name": "RonnyWinkler/homeassistant.homey", "authors": ["@RonnyWinkler"], "category": "integration", "description": "Homey compound device component", "domain": "homey", "etag_repository": "W/\"b466347bb04dafdd2eaca2e3657470273cd61405bddc319bca972859cdf37196\"", "topics": ["compound", "homey"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "552555459": {"repository_manifest": {"name": "LG Horizon", "country": ["NL", "BE", "CH", "GB", "AT"], "render_readme": true, "homeassistant": "2021.5.0"}, "full_name": "Sholofly/lghorizon", "authors": ["@Sholofly"], "category": "integration", "description": "Custom integration to control LG Horizon settop boxes for Ziggo(NL), Magenta(AT), UPC(CH), Virgin(GB, IE), Telenet(BE)", "domain": "lghorizon", "etag_repository": "W/\"c5af7c8cfecce6bdf2e0794dfcddbca9320e40b4b23f227a1b72d8f74c98cf78\"", "last_updated": "2022-12-21T13:56:33Z", "stargazers_count": 31, "topics": ["arris", "humax", "lg-horizon", "magenta", "sunrise", "telenet", "virgin", "ziggo"], "last_fetched": 1674378188.570715, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "554898014": {"repository_manifest": {"name": "Fusion Solar", "render_readme": true}, "full_name": "tijsverkoyen/HomeAssistant-FusionSolar", "authors": ["@tijsVerkoyen"], "category": "integration", "description": "Integrate FusionSolar into your Home Assistant.", "domain": "fusion_solar", "etag_repository": "W/\"4ac3509dbe45ae7b5fab36334650712e6c477b80ae635cb27277acb206fe1a15\"", "last_updated": "2023-01-13T14:16:34Z", "stargazers_count": 24, "topics": ["fusionsolar", "huawei"], "last_fetched": 1674378220.295614, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544550612": {"repository_manifest": {"name": "W1000 energy monitor", "render_readme": true, "country": ["HU"]}, "full_name": "ZsBT/hass-w1000-portal", "authors": ["@ZsBT"], "category": "integration", "description": "Home Assistant custom component for W1000 energy portal (e.g. https://energia.eon-hungaria.hu/ ) ", "domain": "w1000-energy-monitor", "etag_repository": "W/\"b931890b1b0d94a5fe6888eacb757df1acedb64db5dcc1afda7aeb61ae0fc935\"", "last_updated": "2022-12-30T17:38:30Z", "stargazers_count": 19, "topics": ["energy", "eon", "home-assistant-component", "w1000"], "last_fetched": 1674378267.716242, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "542621509": {"repository_manifest": {"name": "Imou Life", "hacs": "1.6.0", "render_readme": true}, "full_name": "user2684/imou_life", "authors": ["@user2684"], "category": "integration", "description": "Home Assistant custom component for controlling Imou devices", "domain": "imou_life", "downloads": 13, "etag_repository": "W/\"159e9823d5c25b31a92dfcab4b666f345c470411a954020512fad585adfb9df6\"", "last_updated": "2022-12-15T12:31:46Z", "stargazers_count": 33, "topics": ["camera", "imou", "imou-life", "motion-detection", "webcam"], "last_fetched": 1674378241.239079, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544426802": {"repository_manifest": {"name": "Dreame Vacuum", "homeassistant": "2022.8.0"}, "full_name": "Tasshack/dreame-vacuum", "authors": ["@tasshack"], "category": "integration", "description": "Home Assistant integration for Dreame Gen2 Lidar robot vacuums with map support", "domain": "dreame_vacuum", "etag_repository": "W/\"6d50b5cb6b6b1038b1053b68f38f26290290d163b220df3aa938b01b26784be8\"", "last_updated": "2023-01-12T14:47:12Z", "stargazers_count": 124, "topics": ["automation", "cloud", "dreame", "dreametech", "map", "mi-home", "miio", "robot", "vacuum", "vacuum-map", "valetudo", "xiaomi"], "last_fetched": 1674378209.146291, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "487536666": {"repository_manifest": {"name": "Nilan", "homeassistant": "2022.10.0", "render_readme": true}, "full_name": "veista/nilan", "authors": ["@veista"], "category": "integration", "description": "Nilan integration for Home Assistant", "domain": "nilan", "etag_repository": "W/\"e9494c93296d4e52a95dd44fce1a4fa42a5d0db0e9a292d05b141dc44181b5fb\"", "last_updated": "2023-01-16T15:47:38Z", "stargazers_count": 15, "topics": ["iot", "modbus-tcp"], "last_fetched": 1674378245.949406, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "524730333": {"repository_manifest": {"name": "Team Tracker", "homeassistant": "0.95.4", "render_readme": true}, "full_name": "vasqued2/ha-teamtracker", "authors": ["@vasqued2"], "category": "integration", "description": "Home Assistant integration that provides real-time scores in multiple professional (NBA, NFL, NHL, MLB, MLS, and more), college (NCAA), and international (soccer, golf, tennis, mma, racing) sports using ESPN APIs.", "domain": "teamtracker", "etag_repository": "W/\"580f24feb61dfbe429188546a964351bbe476f16b1098f93e140bdfa19d781cd\"", "last_updated": "2023-01-21T16:28:24Z", "stargazers_count": 48, "topics": ["afl", "atp", "baseball", "basketball", "espn", "football", "hockey", "mlb", "mls", "nba", "ncaa", "nfl", "nhl", "pga", "soccer", "teamtracker", "ufc", "volleyball", "wta"], "last_fetched": 1674378245.484081, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "559360809": {"repository_manifest": {"name": "Linked Lovelace", "render_readme": true, "filename": "linked-lovelace-ui.js"}, "full_name": "daredoes/linked-lovelace-ui", "category": "plugin", "description": "Create cards that can be re-used, updated, and handle templated data.", "downloads": 454, "etag_repository": "W/\"44a9134c81544036ed4408c25a8a44e05459284a89d9ac90a0845a21c9e8c9bd\"", "last_updated": "2023-01-17T04:01:44Z", "stargazers_count": 15, "topics": ["javascript", "typescript"], "last_fetched": 1674378309.928102, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "364769821": {"repository_manifest": {"name": "Harmony Remote Card", "render_readme": true, "filename": "dist/harmony-remote-card.js"}, "full_name": "ljmerza/harmony-remote-card", "category": "plugin", "description": "Harmony Hub Remote Control Card for Home Assistant", "downloads": 878, "etag_repository": "W/\"78b2e6f20a0d1fd32c2b42f1dceab9d7aba8d9a7fbb325fec2304cc2af02002f\"", "last_updated": "2022-11-12T20:42:25Z", "stargazers_count": 4, "topics": ["harmony", "remote"], "last_fetched": 1671385405.006943, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334364176": {"repository_manifest": {"name": "WEBFLEET", "render_readme": true}, "full_name": "tom-winkler/ha-webfleet-integration", "authors": ["@tom-winkler"], "category": "integration", "description": "Homeassistant WEBFLEET integration to be installed via HACS.", "domain": "webfleet", "etag_repository": "W/\"3c4885dc21bbf9f24d7e1309e132090d0af0ad63eea2070122fdbfc3cfbef8eb\"", "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544910198": {"repository_manifest": {"name": "WaterNSW WaterInsights", "render_readme": true, "country": ["AU"], "homeassistant": "2022.9"}, "full_name": "battlemoose/waternsw-waterinsights-ha", "authors": ["@battlemoose"], "category": "integration", "description": "A Home Assistant integration to fetch NSW dam level and capacity data from the WaterNSW WaterInsights API", "domain": "waterinsights", "etag_repository": "W/\"e3d7fa6abf848c9f58eaeaa58330345338969f303a4c4b3a81d326978de55ec6\"", "topics": ["australia", "dam", "nsw", "water"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "555221653": {"repository_manifest": {"name": "ViVa Coastal Weather", "homeassistant": "2022.11.0b0", "render_readme": true, "zip_release": true, "filename": "viva.zip"}, "full_name": "astrandb/viva", "authors": ["@astrandb"], "category": "integration", "description": "A modern Home Assistant integration for ViVa weather service from Swedish Sj\u00f6fartsverket", "domain": "viva", "downloads": 104, "etag_repository": "W/\"d080b1953727541fe07991e72f7eb175cf0b9e849bbebad2b7e6f034c4f624ad\"", "last_updated": "2022-12-19T10:35:14Z", "stargazers_count": 2, "topics": ["sealevel", "sjofartsverket", "viva"], "last_fetched": 1672947990.162342, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "439944813": {"repository_manifest": {"name": "Miele", "homeassistant": "2022.11.0", "zip_release": true, "filename": "miele.zip", "render_readme": true}, "full_name": "astrandb/miele", "authors": ["@astrandb"], "category": "integration", "description": "A modern integration for Miele devices in Home Assistant", "domain": "miele", "downloads": 322, "etag_repository": "W/\"7ee7a10e70b9863724b4026a38631b7c9f4cdbb5193f821d6f2709b797062298\"", "last_updated": "2023-01-21T13:48:33Z", "stargazers_count": 50, "topics": ["miele"], "last_fetched": 1674377824.948324, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "577981941": {"repository_manifest": {"name": "Panasonic Eolia HA component", "homeassistant": "0.110.0"}, "full_name": "avolmensky/panasonic_eolia", "authors": ["@avolmensky"], "category": "integration", "description": "Panasonic Eolia component for Home Assistant", "domain": "panasonic_eolia", "etag_repository": "W/\"00f242744e4841550a9e9f2e940051713c4dc8a1b37956b2554193271a8119dd\"", "topics": ["eolia", "panasonic"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "564355840": {"repository_manifest": {"name": "Shopping List with Grocy", "render_readme": true}, "full_name": "Anrolosia/Shopping-List-with-Grocy", "authors": ["@Anrolosia"], "category": "integration", "description": "A Shopping list integration with Grocy for Home Assistant", "domain": "shopping_list_with_grocy", "etag_repository": "W/\"3a5b157eb7dac665a63c80432fff20f7c1d48e0227458d05e77499d29579a0a9\"", "last_updated": "2023-01-12T14:27:46Z", "stargazers_count": 9, "topics": ["custom", "grocy"], "last_fetched": 1674377817.60215, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "136170574": {"repository_manifest": {"name": "Photo captcha on Ezviz Camera for Home Assistant", "render_readme": true, "country": "CN", "homeassistant": "2022.11.0"}, "full_name": "c1pher-cn/homeassistan-ezviz", "authors": ["@_\u5c0f\u611a_"], "category": "integration", "description": "HomeAssistant \u8424\u77f3\uff08ezviz\uff09\u7ec4\u4ef6", "domain": "myezviz", "etag_repository": "W/\"dedf1ec4c2015f724f61d3002435df686da02b41012f79fa188c2975cc5bd917\"", "last_updated": "2022-12-30T02:57:31Z", "stargazers_count": 43, "topics": ["camera", "ezviz", "myezviz"], "last_fetched": 1674377856.195249, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "577620239": {"repository_manifest": {"name": "Cleanmate", "homeassistant": "2022.12.0"}, "full_name": "albinmedoc/ha-cleanmate", "authors": ["@albinmedoc"], "category": "integration", "description": "Let Home Assistant take controll over your Cleanmate vacuum", "domain": "cleanmate", "downloads": 1, "etag_repository": "W/\"6838ac642c18ce3e7b652e0db5e0b82ba058227e8cde06b40735c9b3e11822db\"", "stargazers_count": 1, "topics": ["cleanmate"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "552532860": {"repository_manifest": {"name": "Seiverkot", "country": "FI", "render_readme": true}, "full_name": "evantaur/seiverkot-consumption", "authors": ["@evantaur"], "category": "integration", "description": "Add seiverkot consumption sensor to home assistant", "domain": "seiverkot", "etag_repository": "W/\"11f045c12287719f8d6698702e7598c75e2851b0399be230834a345092b9b5f3\"", "last_updated": "2022-12-18T18:53:52Z", "stargazers_count": 1, "topics": ["seiverkot"], "last_fetched": 1672948107.791484, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "562402396": {"repository_manifest": {"name": "Siku Fan", "render_readme": true}, "full_name": "hmn/siku-integration", "authors": ["@hmn"], "category": "integration", "description": "Siku Fan Home Assistant Integration (Siku / Duka / Oxxify)", "domain": "siku", "etag_repository": "W/\"28285e0466d11441914d0c3de6371e28e81c26837694eb812d278463e18d4ab9\"", "last_updated": "2023-01-20T05:16:22Z", "stargazers_count": 2, "last_fetched": 1674377985.325946, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265587564": {"repository_manifest": {"name": "Kamstrup Multicall 66C", "homeassistant": "2021.1.0", "render_readme": true}, "full_name": "golles/Home-Assistant-Sensor-MC66C", "authors": ["@golles"], "category": "integration", "description": "Custom component that integrates the Kamstrup Multicall 66C heating system into Home Assistant", "domain": "mc66c", "etag_repository": "W/\"c715a5b5549d98018263cb73b45b439cfb26c89744330b5828730d7e9dd003de\"", "last_updated": "2023-01-12T12:14:32Z", "stargazers_count": 14, "topics": ["home-assistant-component", "home-assistant-integration", "kamstrup", "stadsverwarming"], "last_fetched": 1674377971.700877, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "541834155": {"repository_manifest": {"name": "PetSafe", "render_readme": true}, "full_name": "dcmeglio/homeassistant-petsafe", "authors": ["@dcmeglio"], "category": "integration", "description": "Integrate PetSafe Smartfeed feeders an Scoopfree litter boxes into Home Assistant.", "domain": "petsafe", "etag_repository": "W/\"c19fbacfb5f815b76207dd3498b268fedfce5f265825d25c39a87b57143e1d06\"", "last_updated": "2023-01-14T05:38:41Z", "stargazers_count": 9, "topics": ["cats", "dogs", "feeder", "litterbox", "petsafe"], "last_fetched": 1674377906.032346, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "337228671": {"repository_manifest": {"name": "Porsche Connect", "hacs": "1.6.0", "render_readme": true, "homeassistant": "0.118.0"}, "full_name": "CJNE/ha-porscheconnect", "authors": ["@cjne"], "category": "integration", "description": "Porsche Connect custom component for Home Assistant", "domain": "porscheconnect", "etag_repository": "W/\"569a8ed3367cd0fe379f9fe5e70483f831de0ea17055201283dddc50dfce27cd\"", "last_updated": "2023-01-16T20:04:51Z", "stargazers_count": 11, "topics": ["porsche"], "last_fetched": 1674377863.632574, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "532472578": {"repository_manifest": {"name": "Evonic Fires", "render_readme": true}, "full_name": "greghesp/ha-evonic", "authors": ["@greghesp"], "category": "integration", "description": "Unofficial Evonic Fire integration for Home Assistant", "domain": "evonic", "etag_repository": "W/\"0bb2c504236ab013d078626e66b3567b41944500a3b829b586cf84caadc7b305\"", "stargazers_count": 6, "topics": ["evonic", "evonicfires", "homeassistant-custom-component"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "469351480": {"repository_manifest": {"name": "De dietrich C230 ECO gas boiler", "render_readme": true, "zip_release": true, "filename": "de_dietrich_c230_ha.zip", "homeassistant": "2022.10.0", "hacs": "1.28.0"}, "full_name": "IgnacioHR/de-dietrich-c230-ha", "authors": ["@IgnacioHR"], "category": "integration", "description": "De Dietrich C-230 boiler to Home Assistant integration", "domain": "diematic_3_c230_eco", "downloads": 1, "etag_repository": "W/\"a5df027d8178e678dcbb6f5c887f06dbc2cae676f920fc6eae76ae3e7f140497\"", "stargazers_count": 1, "topics": ["boiler", "dedietrich"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "570874359": {"repository_manifest": {"name": "Watchman SENSiT integration for Home Assistant", "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "masaccio/ha-kingspan-watchman-sensit", "authors": ["@masaccio"], "category": "integration", "description": "Kingspan Connect Sensor integration for Home Assistant", "domain": "kingspan_watchman_sensit", "etag_repository": "W/\"53cd3e79d36203a03cfd047e54e8cdd61a105863526ad78d443a5086232b1a57\"", "last_updated": "2023-01-20T16:23:52Z", "stargazers_count": 5, "topics": ["energy-monitor", "iot", "kingspan", "monitoring", "oil-sensor"], "last_fetched": 1674378080.640805, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "566085483": {"repository_manifest": {"name": "jokes", "hacs": "0.0.1", "homeassistant": "2022.11.1"}, "full_name": "LaggAt/ha-jokes", "authors": ["@LaggAt"], "category": "integration", "description": "Home Assistant Sensor providing a random joke every minute.", "domain": "jokes", "etag_repository": "W/\"196a955d2c632c082e4acbfb9aeb3f62a12f475a4292f99f57fe57ad9f36672e\"", "last_updated": "2023-01-18T21:26:01Z", "stargazers_count": 8, "topics": ["devcontainer", "fun", "jokes"], "last_fetched": 1674378052.200377, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "490231724": {"repository_manifest": {"name": "Elro Connects", "hacs": "1.0.0", "homeassistant": "2022.8.0"}, "full_name": "jbouwh/ha-elro-connects", "authors": ["@jbouwh"], "category": "integration", "description": "Elro Connects K1 for Home Assistant via HACS", "domain": "elro_connects", "etag_repository": "W/\"4eb685e2af2a3fde4d4d9468312f2950ce616cc837cbbd28cd12596c80a163e8\"", "stargazers_count": 7, "topics": ["elro", "fire-alarm", "fire-alarm-monitoring-system", "hacs-custom", "siterwell"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "567001290": {"repository_manifest": {"name": "EnergyScore", "render_readme": true}, "full_name": "knudsvik/EnergyScore", "authors": ["@knudsvik"], "category": "integration", "description": "Custom Integration for Home Assistant to score how energy is utilized based on price point", "domain": "energyscore", "etag_repository": "W/\"613f8468978f0fb0e84b9bb555058187fb03090f30491e0bdfaf168a5758754a\"", "last_updated": "2023-01-11T22:06:04Z", "stargazers_count": 15, "topics": ["energy"], "last_fetched": 1674378038.018745, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "522245338": {"repository_manifest": {"name": "Checkly", "render_readme": true}, "full_name": "ndom91/homeassistant-checkly", "authors": ["@ndom91"], "category": "integration", "description": "Home Assistant Integration for Checkly", "domain": "checkly", "etag_repository": "W/\"48fc9644d3d56fd166862a3d81dcd3f986d4310d45a5e082232ef3cf0817df94\"", "last_updated": "2022-12-18T23:34:44Z", "stargazers_count": 5, "topics": ["checkly"], "last_fetched": 1674378109.714276, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "562404203": {"repository_manifest": {"name": "RecycleApp", "render_readme": true, "country": "BE"}, "full_name": "olibos/HomeAssistant-RecycleApp", "authors": ["@olibos"], "category": "integration", "description": "Integrate RecycleApp into your Home Assistant.", "domain": "recycle_app", "etag_repository": "W/\"a39878c90030a68fcd9412a17b73b2f54a53ad8bd1afd93a8ac2dbeb46062cea\"", "last_updated": "2023-01-16T12:12:51Z", "stargazers_count": 8, "topics": ["fostplus", "recycle"], "last_fetched": 1674378119.228898, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356385629": {"repository_manifest": {"name": "Kia Uvo / Hyundai Bluelink", "render_readme": true, "homeassistant": "2022.12"}, "full_name": "Hyundai-Kia-Connect/kia_uvo", "authors": ["@fuatakgun"], "category": "integration", "description": "A Home Assistant HACS integration that supports Kia Connect(Uvo) and Hyundai Bluelink. The integration supports the EU, Canada and the USA.", "domain": "kia_uvo", "etag_repository": "W/\"e0797bcfbf2257640ec60e2da3a2ac2ba6ae87679e8e59d2469944e17030b1e1\"", "last_updated": "2023-01-22T08:17:01Z", "stargazers_count": 204, "topics": ["bluelink", "car", "hyundai", "kia", "uvo"], "last_fetched": 1674377991.394831, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "552426092": {"repository_manifest": {"name": "HeishaMon", "render_readme": true, "homeassistant": "2022.11.0b0"}, "full_name": "kamaradclimber/heishamon-homeassistant", "authors": ["@kamaradclimber"], "category": "integration", "description": "An integration for heatpumps handled by heishamon", "domain": "aquarea", "etag_repository": "W/\"3857c2e6649d100c74a9bd29992851ac0ff1c60e1d89dcf8b162b0f6543a04c2\"", "last_updated": "2022-12-28T10:16:09Z", "stargazers_count": 6, "topics": ["heatpump", "heishamon", "mqtt"], "last_fetched": 1672948200.167199, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "572278409": {"repository_manifest": {"filename": "irrigationprogram.zip", "name": "IrrigationProgram Custom Component", "render_readme": true, "zip_release": true}, "full_name": "petergridge/Irrigation-V5", "authors": ["@petergridge"], "category": "integration", "description": "Irrigation custom component for Home Assistant", "domain": "irrigationprogram", "downloads": 107, "etag_repository": "W/\"d71629beb4af9c84a4a6cd2957b3bb1fef146b80fd17bbf3eb7539900f273cd7\"", "last_updated": "2023-01-19T20:41:17Z", "stargazers_count": 7, "topics": ["irrigation"], "last_fetched": 1674378127.493019, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534750752": {"repository_manifest": {"name": "XY Screens projector screens and projector lifts", "render_readme": true}, "full_name": "rrooggiieerr/homeassistant-xyscreens", "authors": ["@rrooggiieerr"], "category": "integration", "description": "Home Assistant integration for XY Screens projector screens and projector lifts over the RS-485 interface", "domain": "xyscreens", "etag_repository": "W/\"405d4210ea38c93aebf4c6a8d7a967abcf6e843d7462d1449206af4f807de9e4\"", "topics": ["projector-sceen", "xy-screens"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "525954717": {"repository_manifest": {"name": "HomeWhiz", "render_readme": true, "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "rowysock/home-assistant-HomeWhiz", "authors": ["@rowysock", "@TechHummel"], "category": "integration", "description": "Home Assistant custom component for devices that can connect to HomeWhiz mobile app (Beko, Grundig, Arcelik)", "domain": "homewhiz", "etag_repository": "W/\"922e7d778d40ba30b9a513857d114ea7a840bb0ed7703f3a1bb8bff7fb36b73a\"", "last_updated": "2023-01-16T22:45:30Z", "stargazers_count": 26, "topics": ["homewhiz"], "last_fetched": 1674378164.333805, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "570006201": {"repository_manifest": {"name": "Victron GX modbus TCP", "render_readme": true, "homeassistant": "2022.11", "hacs": "1.28.4"}, "full_name": "sfstar/hass-victron", "authors": ["@sfstar"], "category": "integration", "description": "Integration for Home Assistant to fetch data from the victron gx device via modbusTCP", "domain": "victron", "etag_repository": "W/\"203a194874c634936a3ba0d42c505b0cf907f0178c2782f8bc229fe4b29affd8\"", "last_updated": "2022-12-23T19:10:24Z", "stargazers_count": 33, "topics": ["energy", "modbus-tcp", "victron", "victronenergy"], "last_fetched": 1674378187.0857, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190927503": {"repository_manifest": {"name": "Spa Client", "render_readme": true}, "full_name": "plmilord/Hass.io-custom-component-spaclient", "authors": ["@plmilord"], "category": "integration", "description": "Home Assistant integration - Spa Client", "domain": "spaclient", "etag_repository": "W/\"50bfa7f1e348ba12085fb16dd402260402f9d0e305b3dd4d35a0e0bd5542b20e\"", "last_updated": "2022-12-11T16:59:09Z", "stargazers_count": 39, "topics": ["balboa", "bwa", "spaclient"], "last_fetched": 1672948308.579145, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "531891521": {"repository_manifest": {"name": "Revogi Petoneer Water Fountain", "render_readme": true}, "full_name": "sh00t2kill/petoneer_custom_component", "authors": ["@sh00t2kill"], "category": "integration", "description": "A custom Home Assistant Component for WiFI enabled pet water fountains by petoneer", "domain": "revogi", "etag_repository": "W/\"22c357433ec472f31f462a43da68059058fd8ef837fb96688e6304d310ce0777\"", "topics": ["petoneer", "revogi"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "572282256": {"repository_manifest": {"name": "Govee LAN Control", "homeassistant": "2022.12.0", "render_readme": true}, "full_name": "wez/govee-lan-hass", "authors": ["@wez"], "category": "integration", "description": "Control Govee lights via the LAN API from Home Assistant", "domain": "govee_lan", "etag_repository": "W/\"c1917af71806b6eaf9e543c7370fc52c9e764cc84014b75708b786235d260ab7\"", "last_updated": "2023-01-17T23:06:13Z", "stargazers_count": 31, "topics": ["govee", "light"], "last_fetched": 1674378252.706914, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "520066480": {"repository_manifest": {"name": "Huawei Mesh Router", "hide_default_branch": true, "render_readme": true}, "full_name": "vmakeev/huawei_mesh_router", "authors": ["@vmakeev"], "category": "integration", "description": "Huawei mesh router component for Home Assistant", "domain": "huawei_mesh_router", "downloads": 9, "etag_repository": "W/\"fd83566398526d55047beed0a72a349d8040544383ace2eaace2b8a9d263aa4e\"", "last_updated": "2023-01-05T12:32:05Z", "stargazers_count": 7, "topics": ["huawei-router", "huawei-routers"], "last_fetched": 1674378251.128934, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "572284948": {"repository_manifest": {"name": "Carelink Integration", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2022.6.0"}, "full_name": "yo-han/Home-Assistant-Carelink", "authors": ["@yo-han"], "category": "integration", "description": "Unofficial Home Assistant Carelink Component", "domain": "carelink", "etag_repository": "W/\"3e6132623ef41542dcd5e75f9b741d3cffe7e08f823f7afac81241a673c343f5\"", "last_updated": "2023-01-10T18:46:20Z", "stargazers_count": 6, "topics": ["carelink", "diabetic", "hassio-integration", "medtronic"], "last_fetched": 1674378264.144437, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "560307075": {"repository_manifest": {"name": "Aula", "country": "DK", "render_readme": true, "homeassistant": "2022.9.0", "zip_release": true, "filename": "aula.zip"}, "full_name": "scaarup/aula", "authors": ["@scaarup"], "category": "integration", "description": "Fetches information from Aula about your children ", "domain": "aula", "downloads": 462, "etag_repository": "W/\"61312274633b5222ba7fb3e403e022090754739a882a14d12b03b9937c33b575\"", "last_updated": "2023-01-19T14:18:28Z", "stargazers_count": 24, "last_fetched": 1674378182.262723, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "573233876": {"repository_manifest": {"name": "Switch Manager", "render_readme": true, "homeassistant": "2022.11.4"}, "full_name": "Sian-Lee-SA/Home-Assistant-Switch-Manager", "authors": ["@Sian-Lee-SA"], "category": "integration", "description": "Switch manager is a centralised component to handle button pushes for your wireless switches. This includes anything passed through the event bus. The component relies on switch blueprints which is easily made to allow GUI configuration of your switches and their button pushes. This helps remove clutter from the automations.", "domain": "switch_manager", "etag_repository": "W/\"e16a0007d65795b90859c55671da67eb8d4238c916c54a9fff2d622d7d632fd7\"", "last_updated": "2023-01-21T03:01:54Z", "stargazers_count": 49, "topics": ["component", "script", "switch-manager"], "last_fetched": 1674378189.627186, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534353896": {"repository_manifest": {"name": "HA LCARS", "render_readme": true, "filename": "lcars.yaml", "country": ["US", "GB"]}, "full_name": "th3jesta/ha-lcars", "category": "theme", "description": "LCARS theme for Home Assistant", "etag_repository": "W/\"4606907a9dfae34cc58eafc52517de025b69dc55ed8b6631c509deb01dcc738d\"", "last_updated": "2023-01-20T21:08:37Z", "stargazers_count": 49, "topics": ["ha-theme", "hacs-theme", "homeassistant-themes", "lcars", "lcars-interface", "lcars-style", "startrek"], "last_fetched": 1674378485.428098, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "485813852": {"repository_manifest": {"name": "Google Light and Dark Theme", "render_readme": true}, "full_name": "digitaljamie/google-theme", "category": "theme", "description": "A fork of Google Assistant Theme to fix common issues - by digitaljamie", "etag_repository": "W/\"b02f65c8502710cb3f032ac6db52c898d7bc69b17fe648522244f3d22f903215\"", "last_updated": "2023-01-04T13:52:20Z", "stargazers_count": 3, "topics": ["darkmode", "google-theme", "googletheme", "lightmode"], "last_fetched": 1672947754.579889, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "540873855": {"repository_manifest": {"name": "VPD Chart card", "render_readme": true, "filename": "vpdchart-card.js"}, "full_name": "vpdchart/vpdchart-card", "category": "plugin", "description": "A VPD chart card for Home Assistant", "etag_repository": "W/\"81acced59193e7937987ea996e61baa5d8b840e270ce07bc8d0a2feda38c3e36\"", "last_updated": "2022-09-29T10:13:41Z", "stargazers_count": 2, "topics": ["vpd", "vpdchart"], "last_fetched": 1672947949.252078, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "574163721": {"repository_manifest": {"name": "Graphite Theme", "render_readme": true}, "full_name": "TilmanGriesel/graphite", "category": "theme", "description": "Calm and clean dark theme for Home Assistant", "etag_repository": "W/\"c0b21b9d8b5f47feff47567988b69838caeb64e71118bca6bbc7a8d5f59e02b7\"", "last_updated": "2023-01-05T21:02:22Z", "stargazers_count": 36, "topics": ["calm", "clean", "dark", "dark-theme", "flat", "minimalist", "modern"], "last_fetched": 1674378485.392436, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "567030726": {"repository_manifest": {"name": "Default Dashboard", "render_readme": true, "filename": "default-dashboard.js"}, "full_name": "daredoes/default-dashboard", "category": "plugin", "description": "Automatically set the default dashboard for all devices for Home Assistant", "downloads": 927, "etag_repository": "W/\"8e2e4ee19d133c389c224b51d1784325c8b769bab09f609010ee5d5c79d2c3c3\"", "last_updated": "2023-01-13T06:07:27Z", "stargazers_count": 10, "topics": ["hacs-custom"], "last_fetched": 1674378308.918704, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "545945955": {"repository_manifest": {"name": "Formula One Card", "filename": "formulaone-card.js", "render_readme": true, "content_in_root": true}, "full_name": "marcokreeft87/formulaone-card", "category": "plugin", "description": "Frontend card for hass-formulaoneapi", "etag_repository": "W/\"775b151a7dad329f97a7512d8d809d9a86471c45f590f6eea39885090826c488\"", "last_updated": "2023-01-21T23:04:00Z", "stargazers_count": 37, "topics": ["card", "f1", "formula1", "formulaone", "homeassistant-frontend", "lovelace-custom-card"], "last_fetched": 1674378380.505575, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "526408682": {"repository_manifest": {"name": "Team Tracker Card", "filename": "ha-teamtracker-card.js", "render_readme": true, "homeassistant": "0.95.4", "country": ["US"]}, "full_name": "vasqued2/ha-teamtracker-card", "category": "plugin", "description": "A Home Assistant frontend custom card that will display real-time updates for teams tracked with the ha-teamtracker integration. Has custom in-game layouts for football, baseball, basketball, hockey, soccer, golf, tennis, racing, and mma.", "etag_repository": "W/\"32b7999ea5843362f527f85192be7f0d43c8c2600aae6ae7f397d15e9ae37a27\"", "last_updated": "2023-01-05T11:54:37Z", "stargazers_count": 19, "topics": ["baseball", "basketball", "football", "golf", "hockey", "mma", "racing", "scoreboard", "soccer", "sports", "teamtracker", "tennis", "volleyball"], "last_fetched": 1672947946.243257, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "570909059": {"repository_manifest": {"name": "Catppuccin Theme", "render_readme": true}, "full_name": "catppuccin/home-assistant", "category": "theme", "description": "\ud83c\udfe0 Soothing pastel theme for Home Assistant", "etag_repository": "W/\"1a1bea79c4bad54d37ab1e4ea329c170ab56609b3d545456054a9f4c0fb51499\"", "last_updated": "2023-01-11T07:19:08Z", "stargazers_count": 21, "topics": ["catppuccin", "catppuccin-theme"], "last_fetched": 1674378445.701685, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "446955395": {"repository_manifest": {"name": "Ultimate tv remote card with touchpad and more", "content_in_root": true, "render_readme": true, "filename": "touchpad-card.js"}, "full_name": "iablon/HomeAssistant-Touchpad-Card", "category": "plugin", "description": "A card that simplifies TV interaction from HomeAssistant", "etag_repository": "W/\"95683c628cddbb482c4c0a0938ff57e75f3daf59750fab050eb6a297c611c3fa\"", "stargazers_count": 9, "topics": ["remote", "tizen", "touchpad", "touchpad-remote", "trackpad", "tv-remote"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "572297252": {"repository_manifest": {"name": "IrrigationProgram Custom Card", "render_readme": true, "filename": "irrigation-card.js"}, "full_name": "petergridge/Irrigation-Card", "category": "plugin", "description": "Companion card for Irrigation-V5", "downloads": 287, "etag_repository": "W/\"b0fad31d37b536f6708b0a481225d62faf50b9be7809f15728fb2f0e7c66451b\"", "last_updated": "2023-01-15T03:46:07Z", "stargazers_count": 5, "topics": ["irrigation", "irrigation-v5"], "last_fetched": 1674378394.153888, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "494545750": {"repository_manifest": {"name": "Peaqhvac", "homeassistant": "2022.10.5", "zip_release": true, "filename": "peaqhvaq.zip", "render_readme": true}, "full_name": "elden1337/hass-peaqhvac", "authors": ["@elden1337"], "category": "integration", "description": "Home Assistant custom component to help hvac-systems stay below peak hourly energy levels and prioritize cheap hours to heat your home.", "domain": "peaqhvac", "etag_repository": "W/\"3e67ca943cea539ae7b3b81f4bb0fd1f639586a656ac3ae1f4db7fbd91c8eef7\"", "topics": ["nibe", "peak-shaving", "smart-pricing"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "580805288": {"repository_manifest": {"name": "N\u00e5r kommer posten", "country": ["NO"]}, "full_name": "BobTheShoplifter/HomeAssistant-Posten", "authors": ["@BobTheShoplifter"], "category": "integration", "description": "Posten integrasjon som trigger dagen n\u00e5r posten kommer: https://www.posten.no/levering-av-post", "domain": "posten", "etag_repository": "W/\"7f8ff162c83b3ee1135f49844d02fb709274ec0f15628cca64a976188a4b2308\"", "last_updated": "2023-01-06T18:51:34Z", "stargazers_count": 14, "topics": ["posten", "posten-packages"], "last_fetched": 1674377840.563938, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "563077911": {"repository_manifest": {"name": "China Southern Power Grid Statistics", "render_readme": true, "country": "CN", "homeassistant": "2022.8"}, "full_name": "CubicPill/china_southern_power_grid_stat", "authors": ["@cubicpill"], "category": "integration", "description": "Home Assistant intergration to get statictics from China Southern Power Grid (CSG) \u5357\u65b9\u7535\u7f51HA\u96c6\u6210", "domain": "china_southern_power_grid_stat", "etag_repository": "W/\"73234d06c5eff079e42bcde3b97c0165b5883eab0ab9604498ab8e1e28721d02\"", "last_updated": "2023-01-13T21:33:36Z", "stargazers_count": 23, "last_fetched": 1674377869.804274, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "560282866": {"repository_manifest": {"name": "Universal Lighting Controllers", "hide_default_branch": true, "hacs": "1.6.0", "homeassistant": "2022.11.0"}, "full_name": "monty68/uniled", "authors": ["@monty68"], "category": "integration", "description": "Universal Light Controller Integration for Home Assistant", "domain": "uniled", "etag_repository": "W/\"9e765da0f1cc74457c0f348ccc22f2914067d586964a7cdfa81e7f7e3f30113b\"", "last_updated": "2023-01-13T06:33:09Z", "stargazers_count": 18, "topics": ["controller", "light", "sp107e", "sp110e", "sp601e", "sp6117e", "sp611e", "sp620e"], "last_fetched": 1674378093.913524, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "570991919": {"repository_manifest": {"name": "Clever", "render_readme": true, "homeassistant": "2022.10.1", "zip_release": true, "filename": "clever.zip"}, "full_name": "MTrab/clever", "authors": ["@MTrab"], "category": "integration", "description": "Home Assistant integration for Clever chargepoint availability status", "domain": "clever", "downloads": 115, "etag_repository": "W/\"136f2d0cf9f57211ae2cadfe71571a810d4c2ff39e9b3f54fa577f24e17de814\"", "last_updated": "2023-01-16T11:56:57Z", "stargazers_count": 4, "topics": ["electric-vehicles", "homeassistant-custom-component"], "last_fetched": 1674378100.111101, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "581307720": {"repository_manifest": {"name": "QuestDB State Storage (QSS)", "homeassistant": "2022.12.0", "hide_default_branch": true, "render_readme": true, "zip_release": true, "filename": "qss.zip"}, "full_name": "CM000n/qss", "authors": ["@CM000n"], "category": "integration", "description": "QuestDB State Storage (QSS) Custom Component for Home Assistant to store entity states inside a QuestDB.", "domain": "qss", "downloads": 56, "etag_repository": "W/\"3a501015723c46370d03d980108831d07639216261579015a4b8494a0e0b1080\"", "stargazers_count": 3, "topics": ["analytics", "database", "grafana", "qss", "questdb", "state-storage", "storage", "timeseries"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "574693804": {"repository_manifest": {"name": "Hypervolt Charger", "country": "GB"}, "full_name": "gndean/home-assistant-hypervolt-charger", "authors": ["@gndean"], "category": "integration", "description": "Home Assistant integration for Hypervolt EV charger", "domain": "hypervolt_charger", "etag_repository": "W/\"0096796dbf1bc36930c5eeab82abbb6c3940c79784cbab58b2a19a5791d23f3c\"", "last_updated": "2023-01-21T11:15:53Z", "stargazers_count": 18, "topics": ["ev-charger", "ev-charging", "hypervolt"], "last_fetched": 1674377968.889475, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "369883961": {"repository_manifest": {"name": "Silence Scooter Integration", "hacs": "1.6.0", "render_readme": true}, "full_name": "lorenzo-deluca/homeassistant-silence", "authors": ["@lorenzo-deluca"], "category": "integration", "description": "Home Assistant Integration for Silence Scooter", "domain": "silencescooter", "etag_repository": "W/\"5ec2ab3e163908505a32341cc0c98ad2d5fcc19eee44d67453db5a169f96a91d\"", "last_updated": "2022-12-23T18:00:11Z", "stargazers_count": 10, "topics": ["electric-vehicles", "silence", "silence-s01", "silence-scooter"], "last_fetched": 1674378070.809666, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544105569": {"repository_manifest": {"name": "BenQ projector", "homeassistant": "2022.11.0"}, "full_name": "rrooggiieerr/homeassistant-benqprojector", "authors": ["@rrooggiieerr"], "category": "integration", "description": "Home Assistant integration for BenQ projectors over the serial interface.", "domain": "benqprojector", "etag_repository": "W/\"684572b00adfdbd4b5eed8e681f4dfaf8bac93d47aaa619517b7d7c46feec934\"", "last_updated": "2023-01-20T14:49:14Z", "stargazers_count": 4, "topics": ["benq", "projector", "projector-control"], "last_fetched": 1674378165.024765, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309178213": {"repository_manifest": {"name": "controlid", "render_readme": "true"}, "full_name": "gtjadsonsantos/controlid", "authors": ["@jadson179"], "category": "integration", "description": "home-assistant service for control the controlid \ud83d\udeaa\ud83d\udd11", "domain": "controlid", "etag_repository": "W/\"157a972d436f022c90c2f64c612b63af4c51a7ffc8c3a8fb0f0a3ecf2e2f22c3\"", "last_updated": "2021-06-24T16:29:59Z", "topics": ["controlid"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309195773": {"repository_manifest": {"name": "vapix", "render_readme": "true"}, "full_name": "gtjadsonsantos/vapix", "authors": ["@jadson179"], "category": "integration", "description": "home-assistant service for control the vapix \ud83d\udeaa\ud83d\udd11", "domain": "vapix", "etag_repository": "W/\"3dd03325b6a91acdc1f6f9ff01c9039e9068355bece345815b0b57bccb37a05a\"", "last_updated": "2021-06-22T11:49:49Z", "topics": ["axis", "services"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "585050790": {"repository_manifest": {"name": "tdarr"}, "full_name": "itchannel/tdarr_ha", "authors": ["@itchannel"], "category": "integration", "description": "Tdarr Home Assistant Integration", "domain": "tdarr", "etag_repository": "W/\"40e457e724b1c805f0c8d379345256804c7517ca9abd5c66b4896200089d13bf\"", "last_updated": "2023-01-06T10:01:51Z", "stargazers_count": 4, "topics": ["assistant", "home", "tdarr", "transcoding"], "last_fetched": 1674377790.370985, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "402333014": {"repository_manifest": {"name": "openWB MQTT", "render_readme": true}, "full_name": "a529987659852/openwbmqtt", "authors": ["@a529987659852"], "category": "integration", "description": "Custom component for home assistant supporting openWB wallbox", "domain": "openwbmqtt", "etag_repository": "W/\"16ea06353121b269e0635414265a57d34a2e6a10418a16a2fafca41e7abc237f\"", "last_updated": "2023-01-05T10:43:58Z", "stargazers_count": 22, "topics": ["mqtt"], "last_fetched": 1674377790.467569, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582268944": {"repository_manifest": {"name": "EPEX Spot", "render_readme": true}, "full_name": "mampfes/ha_epex_spot", "authors": ["@mampfes"], "category": "integration", "description": "Adds EPEX Spot data to Home Assistant.", "domain": "epex_spot", "etag_repository": "W/\"ce6df696516aaee0acc331ffa13650bbf8b488474486dc6ad8125a439ab66659\"", "last_updated": "2023-01-16T17:13:30Z", "stargazers_count": 10, "topics": ["epex", "epex-spot"], "last_fetched": 1674378009.505469, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334284822": {"repository_manifest": {"name": "AWS Codepipeline"}, "full_name": "ohheyrj/home-assistant-aws-codepipeline", "authors": ["@rj175"], "category": "integration", "description": "An integration to monitor and execute AWS Codepipeline projects within Home Assistant.", "domain": "aws_codepipeline", "etag_repository": "W/\"dd3f1ad21b89814df953d20283c07dc9f11f767559ec92689570207215d03888\"", "last_updated": "2021-01-30T22:52:54Z", "stargazers_count": 1, "topics": ["aws", "ci", "cloud", "codepipeline"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "584257648": {"repository_manifest": {"name": "TCL TV Remote", "render_readme": true, "zip_release": true, "filename": "tclremote.zip"}, "full_name": "popeen/Home-Assistant-Custom-Component-TCL-Remote", "authors": ["@popeen"], "category": "integration", "description": "This custom component will give you two new services for controlling TCL Smart TVs (Non android version). Tested on my S69 series TV. I have seen some reports about it working on other brands as well, mainly Thomson", "domain": "tcl_tv_remote", "downloads": 279, "etag_repository": "W/\"16b0c3b2336bcc53b7657e5346f23479ebefde28d129fe8bac40a47325809994\"", "last_updated": "2023-01-15T13:11:07Z", "stargazers_count": 1, "last_fetched": 1674378009.617435, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582608844": {"repository_manifest": {"name": "Emu M-Bus Center", "hacs": "1.6.0", "homeassistant": "0.7.4", "render_readme": true}, "full_name": "redlukas/emu_mbus_center", "authors": ["@redlukas"], "category": "integration", "description": "Reads Values from a Emu M-Bus Center and exposes them to Home Assistant", "domain": "emu_m_bus_center", "etag_repository": "W/\"55f6a3589cd200954965bfe49eb9e9c3b9311b7bf820f5f4bac4c6c90f3a5def\"", "last_updated": "2023-01-19T15:28:57Z", "topics": ["m-bus", "rest-client"], "last_fetched": 1674378009.940991, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "583379046": {"repository_manifest": {"name": "Mold Risk Index", "homeassistant": "2022.8"}, "full_name": "Strixx76/mold_risk_index", "authors": ["@Strixx76"], "category": "integration", "description": "Calculate the level of risk of mold growth in a crawl space.", "domain": "mold_risk_index", "etag_repository": "W/\"30d6463c3ac3b8046721e72f7f3d8ef74aa44b1ba07c0ecb500199d1bc7178f3\"", "last_updated": "2023-01-01T17:55:40Z", "stargazers_count": 8, "topics": ["python3"], "last_fetched": 1674378171.265377, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}} \ No newline at end of file +{"343112953": {"repository_manifest": {"name": "Kodi Search Card", "render_readme": true, "filename": "kodi-search-card.js"}, "full_name": "jtbgroup/kodi-search-card", "category": "plugin", "description": "Custom card for home assistant allowing to search in the libraries of kodi", "downloads": 638, "etag_repository": "W/\"b8e841ba441fabe3a20ffe2b027e9328c99df117d0121621f09d9cff81dea306\"", "last_updated": "2023-04-21T02:41:58Z", "stargazers_count": 8, "topics": ["kodi", "kodi-media-sensors"], "last_fetched": 1695553540.881705, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "217374413": {"repository_manifest": {"name": "Halloween Theme"}, "full_name": "home-assistant-community-themes/halloween", "category": "theme", "description": "Halloween theme for Home Assistant", "etag_repository": "W/\"1aff822ea25fa65b48debce7fe85d09ddd7d21edf2d9189a5222587121d08ea3\"", "last_updated": "2023-03-27T19:57:15Z", "stargazers_count": 2, "last_fetched": 1695553498.472384, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151280062": {"repository_manifest": {"name": "mini-graph-card", "render_readme": true}, "full_name": "kalkih/mini-graph-card", "category": "plugin", "description": "Minimalistic graph card for Home Assistant Lovelace UI", "downloads": 238177, "etag_repository": "W/\"4947802cf2ff3406780b10b7607ac1af243f04b166050a423aa86b3662e9ec1b\"", "last_updated": "2023-09-11T02:23:48Z", "stargazers_count": 2460, "topics": ["automation", "custom", "graph"], "last_fetched": 1695553541.284354, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "148520838": {"repository_manifest": {}, "full_name": "kalkih/mini-media-player", "category": "plugin", "description": "Minimalistic media card for Home Assistant Lovelace UI", "downloads": 98978, "etag_repository": "W/\"c7ed58c4441c013eb85400062b6cd5e70045f76d2b0f49723848b76f831d2e0a\"", "last_updated": "2023-06-18T20:10:04Z", "stargazers_count": 1320, "topics": ["automation", "custom", "sonos"], "last_fetched": 1695553541.073296, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "363428919": {"repository_manifest": {"name": "Plex Meets Home Assistant", "render_readme": true, "filename": "plex-meets-homeassistant.js"}, "full_name": "JurajNyiri/PlexMeetsHomeAssistant", "category": "plugin", "description": "Custom card which integrates plex into Home Assistant and makes it possible to launch movies or tv shows on TV with a simple click", "etag_repository": "W/\"5f9273ded9dd5496fa2a2e7f817e794d266dac9cd406e2bdd785fde704692072\"", "last_updated": "2023-08-23T11:49:14Z", "stargazers_count": 86, "topics": ["adb", "androidtv", "hacktoberfest2021", "homeassistant-custom-component", "kodi", "plex", "plexmediaserver", "tv"], "last_fetched": 1695553540.910531, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "221287384": {"repository_manifest": {"name": "Clear Theme", "homeassistant": "0.102.0"}, "full_name": "naofireblade/clear-theme", "category": "theme", "description": "Clear Theme for Home Assistant", "etag_repository": "W/\"747acd3e2f1b211445a09953c22d103f133d8e42d8ea0e60dff3e0dfbd568bf8\"", "last_updated": "2020-10-08T10:10:49Z", "stargazers_count": 20, "last_fetched": 1695553503.231576, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215075899": {"repository_manifest": {"name": "Grey Night Theme"}, "full_name": "home-assistant-community-themes/grey-night", "category": "theme", "description": "Grey Night theme for Home Assistant", "etag_repository": "W/\"154be526d097ab46c42d3b34adf628169c7a2e9307c6bc2821fb432eb96b9040\"", "last_updated": "2023-03-22T10:58:13Z", "stargazers_count": 4, "last_fetched": 1695553498.439168, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257275420": {"repository_manifest": {"name": "OpenMediaVault", "homeassistant": "2022.2.0", "zip_release": true, "filename": "openmediavault.zip"}, "full_name": "tomaae/homeassistant-openmediavault", "authors": ["@tomaae"], "category": "integration", "description": "OpenMediaVault integration for Home Assistant", "domain": "openmediavault", "downloads": 1265, "etag_repository": "W/\"1c9c5aee8a397842b27fff83f6f059d5cecbe86a459800aa7f8ae0052d980b35\"", "last_updated": "2023-09-18T09:19:01Z", "stargazers_count": 81, "topics": ["omv", "openmediavault"], "last_fetched": 1695554183.709745, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "320117484": {"repository_manifest": {"name": "Vibrant (Dark) Clear Theme", "homeassistant": "0.109.0"}, "full_name": "myleskeeffe/clear-theme-dark-vibrant", "category": "theme", "description": "Vibrant (Dark) Version of Clear Theme", "etag_repository": "W/\"868ada08e4d8c7991d4e6b0a9df071745f65a678fde94b1996bd0040bc3eec27\"", "last_updated": "2021-02-10T10:21:44Z", "stargazers_count": 2, "topics": ["clear", "dark", "vibrant"], "last_fetched": 1695553502.63408, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "225969186": {"repository_manifest": {"name": "Aqua Fiesta Theme"}, "full_name": "home-assistant-community-themes/aqua-fiesta", "category": "theme", "description": "Aqua Fiesta theme for Home Assistant", "etag_repository": "W/\"4e6b7e9d1f73e0d052453bb347866efc9bb55bfed9f28656c6a34a420c58ece5\"", "last_updated": "2023-05-29T09:57:07Z", "stargazers_count": 4, "last_fetched": 1695553496.637853, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "413798425": {"repository_manifest": {"name": "UI Lovelace Minimalist", "render_readme": true, "homeassistant": "2023.5.0", "zip_release": true, "filename": "ui_lovelace_minimalist.zip"}, "full_name": "UI-Lovelace-Minimalist/UI", "authors": ["@stokkie90"], "category": "integration", "description": "UI-Lovelace-Minimalist is a \"theme\" for HomeAssistant", "domain": "ui_lovelace_minimalist", "downloads": 26648, "etag_repository": "W/\"7f41f32d4a13380a1eee393499db081ad218095d22d9d5c87b12fc58dd24effb\"", "last_updated": "2023-09-15T20:17:05Z", "stargazers_count": 1270, "last_fetched": 1695554190.742996, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "524730333": {"repository_manifest": {"name": "Team Tracker", "homeassistant": "0.95.4", "render_readme": true}, "full_name": "vasqued2/ha-teamtracker", "authors": ["@vasqued2"], "category": "integration", "description": "Home Assistant integration that provides real-time scores in multiple professional (NBA, NFL, NHL, MLB, MLS, and more), college (NCAA), and international (soccer, golf, tennis, mma, racing) sports using ESPN APIs.", "domain": "teamtracker", "etag_repository": "W/\"1a372300c46895f11dffbb11230b063717bc507a680176a4d84750c6a65dbd07\"", "last_updated": "2023-07-19T00:17:18Z", "stargazers_count": 88, "topics": ["afl", "atp", "baseball", "basketball", "espn", "football", "hockey", "mlb", "mls", "nba", "ncaa", "nfl", "nhl", "pga", "soccer", "teamtracker", "ufc", "volleyball", "wta"], "last_fetched": 1695554192.774098, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "266779715": {"repository_manifest": {"name": "Yahoo Finance", "render_readme": true}, "full_name": "iprak/yahoofinance", "authors": ["@iprak"], "category": "integration", "description": "Home Assistant component which allows you to get stock updates from Yahoo finance.", "domain": "yahoofinance", "etag_repository": "W/\"70ca6c269b47ba6462c4804d1657c4f46301d5502e3dbbfaeca5728cb55b147c\"", "last_updated": "2023-06-22T10:14:09Z", "stargazers_count": 56, "topics": ["stock-updates", "yahoo-finance"], "last_fetched": 1695553663.813191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442878365": {"repository_manifest": {"name": "Golden Security Alarm", "render_readme": true}, "full_name": "hostcc/hass-gs-alarm", "authors": ["@hostcc"], "category": "integration", "description": "Custom Home Assistant integration for G90 security systems", "domain": "gs_alarm", "etag_repository": "W/\"3ce051e26ab3735388051100f98426e135d22aa5b5cfa6c1bb21188c322fbec9\"", "last_updated": "2023-01-05T19:40:44Z", "stargazers_count": 1, "topics": ["alarm", "alarm-panel"], "last_fetched": 1695553661.123498, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316527506": {"repository_manifest": {"name": "Winix Purifier", "render_readme": true}, "full_name": "iprak/winix", "authors": ["@iprak"], "category": "integration", "description": "Home Assistant component for C545 Winix Air Purifier", "domain": "winix", "etag_repository": "W/\"4abc59f025e30187befb3aae3e1b201770343def1387b525d9875781f203710f\"", "last_updated": "2023-06-22T10:09:24Z", "stargazers_count": 70, "topics": ["purifier", "winix"], "last_fetched": 1695553663.569499, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "258012483": {"repository_manifest": {"name": "Livebox TV UHD", "hacs": "0.24.0", "homeassistant": "0.110.0"}, "full_name": "AkA57/liveboxtvuhd", "authors": ["@AkA57"], "category": "integration", "description": "Livebox TV UHD custom component for Home Assistant", "domain": "liveboxtvuhd", "etag_repository": "W/\"eec36aa33bb92e4cd697096c6b6c0304a6310f00cb30abf2f663e518fd989620\"", "last_updated": "2023-06-02T20:41:22Z", "stargazers_count": 22, "topics": ["livebox"], "last_fetched": 1695553573.456544, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216183299": {"repository_manifest": {"name": "Material Dark Pink Theme"}, "full_name": "home-assistant-community-themes/material-dark-pink", "category": "theme", "description": "Material Dark Pink theme for Home Assistant", "etag_repository": "W/\"13b5b8d0ba4757edaa5d12276f9b3b08eae020e9218b85392ff9d7e28e5bf77c\"", "last_updated": "2023-03-27T19:57:38Z", "stargazers_count": 3, "last_fetched": 1695553498.466225, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "617699018": {"repository_manifest": {"name": "EIA Hourly Demand"}, "full_name": "hokiebrian/eia_hourly_demand", "authors": ["@hokiebrian"], "category": "integration", "description": "Home Assistant Component to retrieve Hourly Energy Demand Data from EIA by Balancing Authority", "domain": "eia_hourly_demand", "etag_repository": "W/\"81521211853a464bf4ad4cc99405416b0bddd7ff30935282b03cdf1afd08ce0d\"", "last_updated": "2023-07-10T08:13:12Z", "stargazers_count": 4, "topics": ["eia", "energy", "energy-monitor", "homeassistant-custom-component", "megawatts"], "last_fetched": 1695553659.008191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "402612874": {"repository_manifest": {"name": "WeatherAPI", "render_readme": true}, "full_name": "iprak/weatherapi", "authors": ["@iprak"], "category": "integration", "description": "HomeAssistant custom integration to fetch data from weatherapi", "domain": "weatherapi", "etag_repository": "W/\"9ef7ff875c0f1532772de31b74ec3b5fbfc0fa273c8a0084e951a38220eca82b\"", "last_updated": "2023-09-09T19:55:08Z", "stargazers_count": 8, "topics": ["custom", "weather", "weatherapi"], "last_fetched": 1695553663.726676, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "577080457": {"repository_manifest": {"name": "Sensi", "render_readme": true}, "full_name": "iprak/sensi", "authors": ["@iprak"], "category": "integration", "description": "HomeAssistant integration for Sensi thermostat", "domain": "sensi", "etag_repository": "W/\"38e207c10b8b48dce216d834c24ccdd4bf94476de7be8ae4c90045173279ac0f\"", "last_updated": "2023-09-19T10:15:44Z", "stargazers_count": 9, "topics": ["sensi"], "last_fetched": 1695553664.375533, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "191831638": {"repository_manifest": {"name": "Meross Integration", "hacs": "1.6.0", "homeassistant": "2022.6"}, "full_name": "albertogeniola/meross-homeassistant", "authors": ["@albertogeniola"], "category": "integration", "description": "Custom component that leverages the Meross IoT library to integrate with Homeassistant", "domain": "meross_cloud", "etag_repository": "W/\"742abed178d888d55434b0fa7e40f7f613b1fcbd2bfaeee92118cbfd144100eb\"", "last_updated": "2023-09-18T08:21:56Z", "stargazers_count": 576, "topics": ["meross", "meross-homeassistant"], "last_fetched": 1695553574.196883, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235057110": {"repository_manifest": {"name": "Material Dark Red Theme"}, "full_name": "home-assistant-community-themes/material-dark-red", "category": "theme", "description": "Material Dark Red theme for Home Assistant", "etag_repository": "W/\"ac0c790fe2800866ca3d16c17dc3260ce9b8d2ad5c21824c4d0800d5deecaf66\"", "last_updated": "2023-03-22T23:57:27Z", "stargazers_count": 3, "last_fetched": 1695553498.563978, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "318182014": {"repository_manifest": {"name": "Xiaomi Miot Auto", "zip_release": true, "filename": "xiaomi_miot.zip", "render_readme": true, "homeassistant": "2022.7.0"}, "full_name": "al-one/hass-xiaomi-miot", "authors": ["@al-one"], "category": "integration", "description": "Automatic integrate all Xiaomi devices to HomeAssistant via miot-spec, support Wi-Fi, BLE, ZigBee devices. \u5c0f\u7c73\u7c73\u5bb6\u667a\u80fd\u5bb6\u5c45\u8bbe\u5907\u63a5\u5165Hass\u96c6\u6210", "domain": "xiaomi_miot", "downloads": 7252, "etag_repository": "W/\"1333c1f314a14b95be73bf4bc0ee51c31db63bdc586970e21bf227396e3729bf\"", "last_updated": "2023-09-20T05:50:48Z", "stargazers_count": 3011, "topics": ["iot", "miio", "miot", "miot-spec", "xiaoai", "xiaomi", "xiaomi-miot"], "last_fetched": 1695553574.155528, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "153870340": {"repository_manifest": {"name": "Harmony Hub Climate Controller", "homeassistant": "0.96.0", "render_readme": true}, "full_name": "nickneos/HA_harmony_climate_component", "category": "integration", "description": "\u2744 Use a Harmony Hub to control an IR controlled climate device", "domain": "harmony_ac", "etag_repository": "W/\"69ce6ec9422eed5b44f92cd5907b628daae6cc6c0200f34fb2aa4825d76b6dfb\"", "last_updated": "2023-06-22T06:49:29Z", "stargazers_count": 25, "topics": ["air-conditioner", "climate", "harmony", "hvac"], "last_fetched": 1695554134.192468, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "489457357": {"repository_manifest": {"name": "Minimalistic Area Card", "render_readme": true, "filename": "minimalistic-area-card.js"}, "full_name": "junalmeida/homeassistant-minimalistic-area-card", "category": "plugin", "description": "A minimalistic area card with sensors and buttons.", "downloads": 6249, "etag_repository": "W/\"43e58f8cebf031f48c17bdce3417fab3215578a544c56a20ce8e713b0b965b9f\"", "last_updated": "2023-09-05T06:41:30Z", "stargazers_count": 68, "topics": ["area-card"], "last_fetched": 1695553540.846107, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "204700563": {"repository_manifest": {"name": "Momentary Switch Component"}, "full_name": "twrecked/hass-momentary", "authors": ["@sherrell"], "category": "integration", "description": "Momentary Switch Component for Home Assistant", "domain": "momentary", "etag_repository": "W/\"2160677dee987fc8fadf25ff93dc7d6ae72acf017d5b1de3d66ac78449d1ff1f\"", "last_updated": "2023-01-21T01:53:05Z", "stargazers_count": 36, "last_fetched": 1695554190.151405, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "313850121": {"repository_manifest": {"name": "Xiaomi Miio For Yeelink", "render_readme": true}, "full_name": "al-one/hass-miio-yeelink", "authors": ["@al-one"], "category": "integration", "description": "Xiaomi Miio Yeelink/Yeelight devices for Home Assistant", "domain": "miio_yeelink", "downloads": 148, "etag_repository": "W/\"faee97b4976f1dd8942cf73773e3b3607576cf51b1ed720ab4019542e1ff1c4e\"", "last_updated": "2023-06-11T13:00:06Z", "stargazers_count": 152, "topics": ["miio", "miot", "xiaomi", "yeelight", "yeelink"], "last_fetched": 1695553573.747617, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292621909": {"repository_manifest": {"name": "Windows 10 themes", "render_readme": true}, "full_name": "mikosoft83/hass-windows10-themes", "category": "theme", "description": "Home Assistant Windows 10 inspired themes", "etag_repository": "W/\"93afaf5ae5ca14b77f8b2b750ae1c0c65ecc23b156c3ed06d796629e07b1d83b\"", "last_updated": "2022-11-23T21:32:59Z", "stargazers_count": 8, "topics": ["accent-color", "windows", "windows-10"], "last_fetched": 1695553502.594214, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214664317": {"repository_manifest": {"name": "Midnight Theme"}, "full_name": "home-assistant-community-themes/midnight", "category": "theme", "description": "Midnight theme for Home Assistant", "etag_repository": "W/\"b67413743bf9a9837d9bd475edec5b9fb79421df69c802028a9cd5f097b6d6e6\"", "last_updated": "2023-03-27T11:57:13Z", "stargazers_count": 52, "last_fetched": 1695553498.507087, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "483269510": {"repository_manifest": {"name": "OilFox Sensor", "render_readme": true}, "full_name": "chises/ha-oilfox", "authors": ["@chises"], "category": "integration", "description": "HomeAssistant Sensor for Oilfox ", "domain": "oilfox", "etag_repository": "W/\"01aa571cc37ca02a2dfa6f2de22392ffdb9125f6a32779fdcaea08e619846588\"", "last_updated": "2023-04-28T15:18:52Z", "stargazers_count": 18, "topics": ["homeassistant-custom-component", "oiflox"], "last_fetched": 1695553601.881373, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "507584200": {"repository_manifest": {"name": "Ecopower Dynamic Grid Prices", "hacs": "1.6.0", "render_readme": true, "homeassistant": "0.118.0"}, "full_name": "infradom/ecopower_dynamic_grid_prices", "authors": ["@infradom"], "category": "integration", "description": "Dynamic Grid Prices for Ecopower", "domain": "ecopower_dynamic_grid_prices", "etag_repository": "W/\"245addeb8df15132dd9851932e03311049cf027a8f7f88ac2ac2d690aa78b328\"", "last_updated": "2023-02-07T20:24:28Z", "stargazers_count": 6, "topics": ["day-ahead-market", "ecopower", "electricity-market", "electricity-prices", "forecasts"], "last_fetched": 1695553663.354757, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "324913968": {"repository_manifest": {"name": "Deutscher Wetterdienst (by hg1337)", "homeassistant": "2023.8.0", "render_readme": true}, "full_name": "hg1337/homeassistant-dwd", "authors": ["@hg1337"], "category": "integration", "description": "Custom component for Home Assistant that integrates weather data (measurements and forecasts) of Deutscher Wetterdienst (DWD).", "domain": "dwd", "etag_repository": "W/\"2c77cf6a16501a210dc091de3b1ab0b903b62ce79bf919ddc3519df10eb5e9a5\"", "last_updated": "2023-08-09T20:28:50Z", "stargazers_count": 51, "topics": ["deutscher-wetterdienst", "dwd", "hacs-custom", "home-assistant-component", "home-assistant-custom-component", "home-assistant-integration", "home-assistant-weather", "homeassistant-component", "homeassistant-custom-component", "homeassistant-weather", "weather", "wetter"], "last_fetched": 1695553659.004587, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "606563418": {"repository_manifest": {"name": "ventoptimization", "render_readme": true}, "full_name": "HrGaertner/HA-vent-optimization", "authors": ["@HrGaertner"], "category": "integration", "description": "A integration for minimizing heat loss through optimal venting", "domain": "ventoptimization", "etag_repository": "W/\"fae441a8c6b38b13588e3a6a7670448b5c6f8eae4c1f98c9d56cebad1dfc2ef4\"", "last_updated": "2023-09-19T07:38:14Z", "stargazers_count": 13, "topics": ["efficiency", "optimization", "venting"], "last_fetched": 1695553661.061028, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "221288367": {"repository_manifest": {"name": "Clear Theme Dark", "homeassistant": "0.108.9"}, "full_name": "naofireblade/clear-theme-dark", "category": "theme", "description": "Dark variant of Clear Theme for Home Assistant", "etag_repository": "W/\"8173e097698b3b8a96aa00ee69893704b2520f33199cef726c60d967c22a6e94\"", "last_updated": "2020-10-08T10:10:57Z", "stargazers_count": 16, "last_fetched": 1695553504.077943, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "306822538": {"repository_manifest": {"name": "NSW Rural Fire Service - Fire Danger", "country": ["AU"], "homeassistant": "2022.8.0"}, "full_name": "exxamalte/home-assistant-custom-components-nsw-rural-fire-service-fire-danger", "authors": ["@exxamalte"], "category": "integration", "description": "Home Assistant Custom Component: NSW Rural Fire Service Fire Danger", "domain": "nsw_rural_fire_service_fire_danger", "etag_repository": "W/\"e818f9329dcef587e90e40222d94fad2cb6080c2348d4ea9e987336702f07b24\"", "last_updated": "2023-08-26T07:11:57Z", "stargazers_count": 4, "topics": ["fire-danger", "nsw", "rural-fire-service"], "last_fetched": 1695553638.293958, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "535833284": {"repository_manifest": {"name": "Chroma", "homeassistant": "2022.9.0"}, "full_name": "Vaskivskyi/ha-chroma", "authors": ["@vaskivskyi"], "category": "integration", "description": "Control your Chroma-enabled devices from Home Assistant", "domain": "chroma", "etag_repository": "W/\"ec4bd4cb41cd2bc2c61e2de2dae031f8c211b9dee5759c7fa15847922063e7af\"", "last_updated": "2023-09-18T06:30:44Z", "stargazers_count": 15, "topics": ["chroma", "razer", "razer-chroma"], "last_fetched": 1695554192.443391, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233715171": {"repository_manifest": {"name": "Darkish Theme"}, "full_name": "78wesley/Home-Assistant-Darkish-Theme", "category": "theme", "description": "Darkish-Theme for Home Assistant", "etag_repository": "W/\"a948e11f422edca87951c7ac062bbf001ad9e71dcb61f1df181ebdbbf6ab0d45\"", "last_updated": "2021-12-14T20:45:38Z", "stargazers_count": 5, "last_fetched": 1695553492.576815, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "594842145": {"repository_manifest": {"name": "NPM Switches", "hacs": "1.6.0", "homeassistant": "2022.06.01"}, "full_name": "InTheDaylight14/nginx-proxy-manager-switches", "authors": ["@InTheDaylight14"], "category": "integration", "description": "Home Assistant HACs repository that provides switches to enable or disable Nginx Proxy Manager proxies.", "domain": "npm_switches", "etag_repository": "W/\"39e8d8dd68f069a67f3e5bc879d2ac4904d24debeeea0f300804489e7f7f05b1\"", "last_updated": "2023-06-02T17:40:23Z", "stargazers_count": 10, "topics": ["nginx-proxy-manager"], "last_fetched": 1695553663.252271, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362700564": {"repository_manifest": {"name": "Tesla", "hacs": "1.6.0", "homeassistant": "2023.6.0", "zip_release": true, "filename": "tesla_custom.zip"}, "full_name": "alandtse/tesla", "authors": ["@alandtse"], "category": "integration", "description": "Tesla custom integration for Home Assistant. This requires a refresh token be generated by third-party apps to login.", "domain": "tesla_custom", "downloads": 6771, "etag_repository": "W/\"0f46b3ca60a5ec3859d4627e37b661e845b1c99a18262d64f4d5651add7c51c3\"", "last_updated": "2023-09-19T00:27:04Z", "stargazers_count": 378, "topics": ["home-assistant-component", "tesla"], "last_fetched": 1695553574.050148, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216178553": {"repository_manifest": {"name": "Material Dark Green Theme"}, "full_name": "home-assistant-community-themes/material-dark-green", "category": "theme", "description": "Material Dark Green theme for Home Assistant", "etag_repository": "W/\"6a3d58c3ae4b1d745c863bad821f6a541fa3d83633d3ad8e2fe337044bcb6383\"", "last_updated": "2023-03-27T02:57:14Z", "stargazers_count": 2, "last_fetched": 1695553498.494082, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "562402396": {"repository_manifest": {"name": "Siku Fan", "filename": "siku-integration.zip", "hide_default_branch": true, "render_readme": true, "zip_release": true}, "full_name": "hmn/siku-integration", "authors": ["@hmn"], "category": "integration", "description": "Siku Fan Home Assistant Integration (Siku / Duka / Oxxify)", "domain": "siku", "downloads": 36, "etag_repository": "W/\"bd7fdd00a38c046991453bd198bbdd90d2adf96897683c165a7a55499f20ea94\"", "last_updated": "2023-09-13T04:47:19Z", "stargazers_count": 4, "last_fetched": 1695553658.93959, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286038496": {"repository_manifest": {"name": "Compass Card", "render_readme": true, "filename": "compass-card.js"}, "full_name": "tomvanswam/compass-card", "category": "plugin", "description": "A Lovelace card that shows a directional indicator on a compass for Home Assistant", "downloads": 6595, "etag_repository": "W/\"d302cf37a671b21f0d9923c2e07e5c30bf2385b996558212edec11c1e0251f8b\"", "last_updated": "2023-09-15T04:11:03Z", "stargazers_count": 124, "topics": ["compass", "lovelace-card"], "last_fetched": 1695553567.448897, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "631670903": {"repository_manifest": {"name": "ZCS Lawn Mower Robot", "homeassistant": "2023.9.0"}, "full_name": "ufozone/ha-zcs-mower", "authors": ["@ufozone"], "category": "integration", "description": "ZCS Lawn Mower Robots (Ambrogio, Techline, Wiper) platform as a Custom Component for Home Assistant.", "domain": "zcsmower", "downloads": 2, "etag_repository": "W/\"e03c6345a888468d68644ec59a3f70847b971556fa80059331bc1c314dd8b30f\"", "last_updated": "2023-09-24T08:19:19Z", "stargazers_count": 5, "topics": ["ambrogio", "lawn-mower", "lawnmower", "mower", "mower-robot", "wiper", "zcs", "zucchetti"], "last_fetched": 1695554190.353775, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "401454435": {"repository_manifest": {"name": "battery_sim", "render_readme": true}, "full_name": "hif2k1/battery_sim", "authors": ["@hif2k1"], "category": "integration", "description": "Home assistant home battery simulator - allows you to model how much energy you would save with a home battery", "domain": "battery_sim", "etag_repository": "W/\"e04922d4498515fb6d1a62a4cdf5c012a8a11d51a50d0ef6eac03b5e8ad6dec7\"", "last_updated": "2023-09-09T20:13:02Z", "stargazers_count": 73, "topics": ["energy-storage", "environmental"], "last_fetched": 1695553659.081388, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "634513270": {"repository_manifest": {"name": "Helium Integration", "render_readme": true}, "full_name": "enes-oerdek/Home-Assistant-Helium-Integration", "authors": ["@enes-oerdek"], "category": "integration", "description": "Helium Integration for Home Assistant", "domain": "helium_solana", "etag_repository": "W/\"866bc68df993b1c779901e47ffe7a2cc78fad4a96fa75cb403e7ee5915da1793\"", "last_updated": "2023-09-17T08:35:33Z", "stargazers_count": 11, "topics": ["helium", "helium-mining", "helium-network", "iot", "solana"], "last_fetched": 1695553636.217808, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "326288498": {"repository_manifest": {"name": "worldtidesinfocustom", "homeassistant": "2022.4.0"}, "full_name": "jugla/worldtidesinfocustom", "authors": ["@jugla"], "category": "integration", "description": "world tides info custom component for home assistant", "domain": "worldtidesinfocustom", "etag_repository": "W/\"8f718251c84842cb9eadf72128d27fc87a4a3222b3a0966cb99c495e2b46d0ee\"", "last_updated": "2023-05-13T21:28:31Z", "stargazers_count": 18, "topics": ["tides", "worldtides"], "last_fetched": 1695554096.866627, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "253842395": {"repository_manifest": {"name": "Jaguar Landrover InControl", "homeassistant": "0.115.0"}, "full_name": "msp1974/homeassistant-jlrincontrol", "authors": ["@msp1974"], "category": "integration", "description": "An integration for JLR InControl to Home Assistant", "domain": "jlrincontrol", "etag_repository": "W/\"b011d476ca1b70e03f39dd8a24014ca1834928030d851e6ee929a8b75bdde0d9\"", "last_updated": "2023-09-10T18:34:21Z", "stargazers_count": 39, "topics": ["i-pace", "jaguar", "jlr", "landrover", "rrs", "vehicle", "wirelesscar"], "last_fetched": 1695554126.59385, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "533014913": {"repository_manifest": {"name": "EV Smart Charging", "homeassistant": "2022.7.0", "zip_release": true, "filename": "ev_smart_charging.zip", "render_readme": true}, "full_name": "jonasbkarlsson/ev_smart_charging", "authors": ["@jonasbkarlsson"], "category": "integration", "description": "Electric vehicle smart charging for Home Assistant.", "domain": "ev_smart_charging", "downloads": 636, "etag_repository": "W/\"d2195e5d53ede1e833cdef0ee492c352bea15fc461a06082f8c841d0b49ba578\"", "last_updated": "2023-09-15T08:15:08Z", "stargazers_count": 91, "topics": ["ev-charging"], "last_fetched": 1695554092.683162, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "503856080": {"repository_manifest": {"name": "My Edenred", "country": "PT", "render_readme": true}, "full_name": "netsoft-ruidias/ha-custom-component-myedenred", "authors": ["@netsoft-ruidias"], "category": "integration", "description": "myEdenred - Custom Component for Home Assistant", "domain": "myedenred", "etag_repository": "W/\"b9d1d0e6d0a7998ce2ee36055081fc916a1f3e5cae0329c6e81c5e4bfcc92b77\"", "last_updated": "2023-05-08T11:18:04Z", "stargazers_count": 6, "topics": ["meal-card", "myedenred"], "last_fetched": 1695554132.66153, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "230672465": {"repository_manifest": {"name": "Ugly Christmas Theme"}, "full_name": "houtknots/UglyChristmas-Theme", "category": "theme", "description": "Christmas theme for Home-Assistant", "etag_repository": "W/\"47c8fd20f569712bca1ec557618f44dcecda458f7907786cbba0b474adda9f74\"", "last_updated": "2023-02-08T22:28:56Z", "last_fetched": 1695553500.306286, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229755760": {"repository_manifest": {"name": "Balboa Spa Client", "render_readme": true}, "full_name": "garbled1/balboa_homeassistan", "authors": ["@garbled1", "@natekspencer"], "category": "integration", "description": "Balboa spa integration for home-assistant", "domain": "balboa", "etag_repository": "W/\"6131dde6aee6c38a9c22adead88e8c41190d31c317465e5d5508b3482e671e11\"", "last_updated": "2022-07-20T20:37:26Z", "stargazers_count": 24, "topics": ["balboa"], "last_fetched": 1695553645.38748, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "253311340": {"repository_manifest": {"name": "3Ative Blue Theme", "render_readme": true}, "full_name": "3ative/3ative-blue-theme", "category": "theme", "description": "\ud83d\ude0e My Theme 'Blue' - with semi-transparent Cards", "etag_repository": "W/\"71578544b566b9e7aa2186ada39e78be7b424fefd5cf0bc04d2f9670ffad7d19\"", "last_updated": "2023-07-30T09:08:42Z", "stargazers_count": 3, "topics": ["3ative", "blue", "theme-ui"], "last_fetched": 1695553492.774278, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "589348474": {"repository_manifest": {"name": "EnergyTariff", "hacs": "1.6.0", "homeassistant": "0.118.0", "render_readme": true}, "full_name": "epaulsen/energytariff", "authors": ["@epaulsen"], "category": "integration", "description": "HACS Integration for monitoring Norwegian grid tariff level", "domain": "energytariff", "etag_repository": "W/\"78e33b34e44ede1b5169eb1b44c834156734bab77b72623e325da40fffed4ef6\"", "last_updated": "2023-09-17T12:33:38Z", "stargazers_count": 22, "topics": ["energy-tariff"], "last_fetched": 1695553636.240817, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199313405": {"repository_manifest": {"name": "Beward Integration", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-beward", "authors": ["@Limych"], "category": "integration", "description": "Home Assistant custom component for Beward security Cameras and Doorbells", "domain": "beward", "downloads": 5, "etag_repository": "W/\"6b8c6841e2274e49803b7c30f3a4f8a7897a49a73090c6b3d5c479d07ab02602\"", "last_updated": "2023-03-08T12:08:57Z", "stargazers_count": 20, "topics": ["beward", "camera", "doorbell", "dvr", "security", "surveillance"], "last_fetched": 1695554110.289614, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194319685": {"repository_manifest": {"name": "Shellies Discovery", "homeassistant": "2023.9.0b0", "zip_release": true, "filename": "shellies-discovery.zip"}, "full_name": "bieniu/ha-shellies-discovery", "category": "python_script", "description": "Script that adds MQTT discovery support for Shellies devices", "downloads": 207, "etag_repository": "W/\"f4e3c732569f4eb4a5ed2a52227043e1e86184af788eb9740ab081fb7f0db440\"", "last_updated": "2023-09-22T04:49:37Z", "stargazers_count": 260, "topics": ["discovery", "mqtt", "shelly"], "last_fetched": 1695553506.755162, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "587057164": {"repository_manifest": {"name": "Magic Home Party Card", "filename": "magic-home-party-card.js", "homeassistant": "2022.11.0", "render_readme": true}, "full_name": "kizza/magic-home-party-card", "category": "plugin", "description": "A Home Assistant custom card for managing Magic Home lighting effects", "downloads": 1135, "etag_repository": "W/\"b3165be58876b0e073b8a52da6584e90907b25473135c8ba9dacec5e2b9ff0f8\"", "last_updated": "2023-01-16T08:19:14Z", "stargazers_count": 2, "topics": ["magic-home"], "last_fetched": 1695553543.068792, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "457767453": {"repository_manifest": {"name": "Skolmat Card", "filename": "skolmat-card.js", "content_in_root": true, "render_readme": true}, "full_name": "Kaptensanders/skolmat-card", "category": "plugin", "description": "Home Assistant Lovelace card to display the food menu in Swedish schools.", "etag_repository": "W/\"7e6a9786d7da019f216ccad430dea4e6b1ec0d763a81ba1630169e64f898768f\"", "last_updated": "2023-02-07T20:21:10Z", "stargazers_count": 6, "topics": ["home-assistant-component", "lovelace-card", "lovelace-custom-card", "skola", "skollunch", "skolmat"], "last_fetched": 1695553541.326124, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "297379398": {"repository_manifest": {"name": "Tractive"}, "full_name": "Danielhiversen/home_assistant_tractive", "authors": ["@danielhiversen"], "category": "integration", "description": "Custom component for Tractive", "domain": "tractive_custom", "etag_repository": "W/\"7605e7a3da55cc313f61e118a0cbfc860bb676bbcae6e2e1eabec08664321634\"", "last_updated": "2021-12-20T09:30:02Z", "stargazers_count": 33, "topics": ["tractive"], "last_fetched": 1695553618.220171, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "597502676": {"repository_manifest": {"name": "Hikvision NVR / IP Camera", "render_readme": true, "homeassistant": "2022.8"}, "full_name": "maciej-or/hikvision_next", "authors": ["@maciej-or"], "category": "integration", "description": "Home Assistant integration for Hikvision NVRs and IP cameras", "domain": "hikvision_next", "etag_repository": "W/\"5f1d5d788bf49549a6807ee17fef5aae2f8cbd4857761d6ec16940ce5898115f\"", "last_updated": "2023-08-10T19:07:04Z", "stargazers_count": 37, "topics": ["hikvision"], "last_fetched": 1695554115.376921, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "172998062": {"repository_manifest": {}, "full_name": "kalkih/simple-weather-card", "category": "plugin", "description": "Minimalistic weather card for Home Assistant", "downloads": 19400, "etag_repository": "W/\"c001d7703123d00828a5489e69a7d0580bac24293edab3d6b8c4f00aedb087a5\"", "last_updated": "2023-05-12T19:41:22Z", "stargazers_count": 232, "topics": ["weather"], "last_fetched": 1695553540.858323, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "219363790": {"repository_manifest": {"name": "TV4 Play", "country": ["SE"]}, "full_name": "lindell/home-assistant-tv4-play", "category": "integration", "description": "Play videos from the Swedish channel 4", "domain": "tv4_play", "etag_repository": "W/\"55f9eecc59b5010e4425f97a8cb00756523133d98165e1a756460501c41e0d0c\"", "last_updated": "2022-11-17T13:46:26Z", "stargazers_count": 18, "topics": ["tv4", "tv4play"], "last_fetched": 1695554112.455942, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "634013716": {"repository_manifest": {"name": "sixdegrees-card", "content_in_root": true, "filename": "sixdegrees-card.js", "render_readme": true}, "full_name": "krissen/sixdegrees-card", "category": "plugin", "description": "Lovelace card, like a gauge but only in six degrees", "etag_repository": "W/\"b74d40bc31105caf024fe386853a6b5bd0897f7250bf81cb299b28ae94ad4e4b\"", "last_updated": "2023-08-23T11:39:01Z", "stargazers_count": 2, "topics": ["gauge"], "last_fetched": 1695553543.198981, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "555110808": {"repository_manifest": {"name": "IamMeter Modbus", "render_readme": true}, "full_name": "lewei50/ha_iammeter_modbus", "authors": ["@lewei50"], "category": "integration", "description": "IamMeterr Modbus custom_component for Home Assistant", "domain": "iammeter_modbus", "etag_repository": "W/\"55a4172a1b1e2fe0d2ddb4624efa668e86e16246a60ce3db1a8ec6b9408b6d03\"", "last_updated": "2023-09-11T01:05:04Z", "stargazers_count": 1, "last_fetched": 1695554110.005635, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "276636213": {"repository_manifest": {"name": "Vertical Slider Cover Card", "render_readme": true, "filename": "vertical-slider-cover-card.js"}, "full_name": "konnectedvn/lovelace-vertical-slider-cover-card", "category": "plugin", "description": "Cover card with homekit style vertical position slider (best with panel-mode but normal-mode works also)", "downloads": 6632, "etag_repository": "W/\"d6232794d6b54060706744773522e0f34dca67c705808e3f8f03527630ca73ab\"", "last_updated": "2022-07-09T10:24:45Z", "stargazers_count": 50, "topics": ["card"], "last_fetched": 1695553543.124508, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "357338258": {"repository_manifest": {"name": "Temperature Feels Like", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-temperature-feels-like", "authors": ["@Limych"], "category": "integration", "description": "Sensor of Temperature Feels Like for Home Assistant.", "domain": "temperature_feels_like", "downloads": 17, "etag_repository": "W/\"ccd7fd1b57ec8dfd5a3a4601dcd0555b8260c387ea928fafddad497c817f6f9e\"", "last_updated": "2023-04-10T09:57:41Z", "stargazers_count": 71, "topics": ["home-assistant-climate", "home-assistant-component", "home-assistant-temperature", "home-assistant-weather"], "last_fetched": 1695554112.298146, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "274111031": {"repository_manifest": {"name": "Animated Weather Card", "render_readme": true, "homeassistant": "0.109.0"}, "full_name": "wowgamr/animated-weather-card", "category": "theme", "description": "Animated icons for default Home Assistant weather card", "etag_repository": "W/\"cc34adec9d160169a0c976f1529e6a8ba87631c90babd94893bff19b37e851ca\"", "last_updated": "2022-06-05T21:09:01Z", "stargazers_count": 21, "topics": ["weather-card"], "last_fetched": 1695553506.220967, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "481763130": {"repository_manifest": {"name": "Generic Water Heater", "hacs": "1.6.0", "homeassistant": "2021.12", "render_readme": true}, "full_name": "dgomes/ha_generic_water_heater", "authors": ["@dgomes"], "category": "integration", "description": "Home Assistant Custom Component - Generic Water Heater", "domain": "generic_water_heater", "etag_repository": "W/\"8acf1fc6cb2962cd8dcdfa3f52a161294e3946b19607cf29c5a891b33100e1af\"", "last_updated": "2022-12-02T16:25:58Z", "stargazers_count": 9, "topics": ["home-assistant-integration"], "last_fetched": 1695553624.824473, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "522245338": {"repository_manifest": {"name": "Checkly", "render_readme": true}, "full_name": "ndom91/homeassistant-checkly", "authors": ["@ndom91"], "category": "integration", "description": "Home Assistant Integration for Checkly", "domain": "checkly", "etag_repository": "W/\"a3e9d784c7a18cc926ec1be06b1d443698af2822278c3b07888e67b7cc039c6c\"", "last_updated": "2022-12-18T23:34:44Z", "stargazers_count": 6, "topics": ["checkly"], "last_fetched": 1695554132.035726, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "658074877": {"repository_manifest": {"name": "IPv64", "zip_release": true, "country": ["DE", "US"], "render_readme": true, "homeassistant": "2023.9.2", "hacs": "1.32.1", "filename": "ipv64.zip"}, "full_name": "Ludy87/ipv64", "authors": ["@Ludy87"], "category": "integration", "description": "IPv64.net | Free DynDNS2 & Healthcheck Service Home Assistant Integration", "domain": "ipv64", "downloads": 172, "etag_repository": "W/\"3070081c36955d1168d57b730c0010cf60f2f23b37c94e6c77490a10c7971afa\"", "last_updated": "2023-09-23T18:12:27Z", "stargazers_count": 2, "topics": ["dyndns", "hassio-integration", "hassos", "home-assistant-component", "ipv4", "ipv6", "ipv64", "rpicloud"], "last_fetched": 1695554114.759787, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "508800396": {"repository_manifest": {"name": "Coverflex Card", "country": "PT", "render_readme": true}, "full_name": "netsoft-ruidias/ha-custom-component-coverflex", "authors": ["@netsoft-ruidias"], "category": "integration", "description": "Coverflex - Custom Component for Home Assistant", "domain": "coverflex", "etag_repository": "W/\"c821cd7b8c1f938e4bb7d668e7cbbb22ab409b14eed278bcfe2e014efab9e146\"", "last_updated": "2022-11-10T14:45:17Z", "stargazers_count": 3, "topics": ["coverflex", "meal-card"], "last_fetched": 1695554132.409333, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "369883961": {"repository_manifest": {"name": "Silence Scooter Integration", "hacs": "1.6.0", "render_readme": true}, "full_name": "lorenzo-deluca/homeassistant-silence", "authors": ["@lorenzo-deluca"], "category": "integration", "description": "Home Assistant Integration for Silence Scooter", "domain": "silencescooter", "etag_repository": "W/\"a62cc27fee4c3b1335f1f1cd890a341df9577e53763ad6e37a94c65c526632ed\"", "last_updated": "2023-03-18T07:22:04Z", "stargazers_count": 12, "topics": ["electric-vehicles", "silence", "silence-s01", "silence-scooter"], "last_fetched": 1695554114.530554, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307098646": {"repository_manifest": {"name": "Alarmo", "render_readme": true, "zip_release": true, "filename": "alarmo.zip", "hide_default_branch": true, "homeassistant": "2023.4.0b1"}, "full_name": "nielsfaber/alarmo", "authors": ["@nielsfaber"], "category": "integration", "description": "Easy to use alarm system integration for Home Assistant", "domain": "alarmo", "downloads": 23931, "etag_repository": "W/\"c36cf008402bcd0ead3ef44f3bb88b8e38ad5fd3e9f0cf1a4aa12362220f7c82\"", "last_updated": "2023-09-02T03:45:27Z", "stargazers_count": 889, "topics": ["alarm", "assistant", "home", "security"], "last_fetched": 1695554134.911137, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "293843053": {"repository_manifest": {"name": "Adax heaters"}, "full_name": "Danielhiversen/home_assistant_adax", "authors": ["@danielhiversen"], "category": "integration", "description": "Integration for Adax heaters", "domain": "adax", "etag_repository": "W/\"9ffdd6fb8758859ce3dfcc51e788731f59cef5a8c771ed69dac089d02f8af84d\"", "last_updated": "2021-04-28T05:30:29Z", "stargazers_count": 26, "topics": ["adax", "adax-heaters"], "last_fetched": 1695553618.311827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250488711": {"repository_manifest": {"name": "Niu Scooter Integration", "render_readme": true}, "full_name": "marcelwestrahome/home-assistant-niu-component", "authors": ["@mwestra", "@pikka97"], "category": "integration", "description": "niu scooter integration for Home assistant.", "domain": "niu", "etag_repository": "W/\"e5b722d5df8f8debd13934c7d20de9bb99095409aad3fdd3f0f63f5104a42c82\"", "last_updated": "2023-05-31T15:45:49Z", "stargazers_count": 36, "topics": ["niu", "scooters"], "last_fetched": 1695554117.171479, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236358405": {"repository_manifest": {"name": "Broadlink s2c and s1c sensors", "render_readme": true, "homeassistant": "0.112.0"}, "full_name": "nick2525/broadlink_s1c_s2c", "authors": ["@nick2525"], "category": "integration", "description": "Broadlink s2c and Broadlink s1c sensors for Home Assistant", "domain": "broadlink_s1c", "etag_repository": "W/\"24a7e7a42c51621eeadeb4841b97f1d1006b1d711046b7ee9f5b77ac4ad27ea9\"", "last_updated": "2023-06-09T13:38:22Z", "stargazers_count": 7, "topics": ["broadlink", "hacz", "s1c", "s2c"], "last_fetched": 1695554133.586204, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512965887": {"repository_manifest": {"name": "mhtzn", "render_readme": true, "country": "CN"}, "full_name": "leonardlcl/mhtzn", "authors": ["@leonardlcl"], "category": "integration", "description": "MHTZN custom component for Home Assistant", "domain": "mhtzn", "etag_repository": "W/\"8d72379843c0af1e191ac081ac36d5ad7374403f3ab478bbe500d148e26b8531\"", "last_updated": "2023-02-27T02:30:14Z", "stargazers_count": 2, "topics": ["hass-mhtzn", "mhtzn"], "last_fetched": 1695554108.361453, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "531321012": {"repository_manifest": {"name": "IAMMETER", "homeassistant": "2022.8.0"}, "full_name": "lewei50/ha_iammeter", "authors": ["@lewei50"], "category": "integration", "description": "IAMMETER custom component for Home Assistant", "domain": "iammeter_http", "etag_repository": "W/\"b33844d532b61c495cbc1358d7347d80864c762d5801d0bed3e325c289d37563\"", "last_updated": "2023-05-09T01:05:34Z", "stargazers_count": 4, "last_fetched": 1695554109.666111, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228063780": {"repository_manifest": {"name": "Indoor Air Quality UK Index", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-iaquk", "authors": ["@Limych"], "category": "integration", "description": "Indoor Air Quality Sensor Component for Home Assistant", "domain": "iaquk", "downloads": 23, "etag_repository": "W/\"13ba863f8e4d909f589e42e3ba3d101f9ac05993e001adf6e4af5ae2e4e53205\"", "last_updated": "2023-05-08T21:38:02Z", "stargazers_count": 87, "topics": ["air-quality", "indoor"], "last_fetched": 1695554110.31881, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "480127478": {"repository_manifest": {"name": "ista EcoTrend", "zip_release": true, "country": "DE", "render_readme": true, "homeassistant": "2023.9.2", "hacs": "1.32.1", "filename": "ecotrend_ista.zip"}, "full_name": "Ludy87/ecotrend-ista", "authors": ["@Ludy87"], "category": "integration", "description": "ecotrend-ista Home Assistant Integration", "domain": "ecotrend_ista", "downloads": 62, "etag_repository": "W/\"6dced7391d93192e2b06c5bb75c9ed1076d777982df3aad762cfc6179d1c6188\"", "last_updated": "2023-09-22T20:56:45Z", "stargazers_count": 26, "topics": ["ecotrend", "hassio-integration", "hassos", "home-assistant-component", "ista"], "last_fetched": 1695554114.88544, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "304573324": {"repository_manifest": {"name": "SQL (with JSON detection)", "render_readme": true, "homeassistant": "0.99.9", "persistent_directory": "userfiles"}, "full_name": "crowbarz/ha-sql_json", "authors": ["@dgomes", "@crowbarz"], "category": "integration", "description": "Updated SQL integration for Home Assistant that supports JSON attributes", "domain": "sql_json", "etag_repository": "W/\"e95a907de7ee7eec4e8e3e02422520d182798ccb80e3256438f5fb249bd83804\"", "last_updated": "2023-04-17T09:10:21Z", "stargazers_count": 6, "topics": ["json", "sql"], "last_fetched": 1695553605.088861, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233289477": {"repository_manifest": {"name": "Greenely Sensors", "render_readme": true, "country": ["SE"]}, "full_name": "linsvensson/sensor.greenely", "authors": ["@linsvensson"], "category": "integration", "description": "Custom component to get usage data and prices from Greenely for Home Assistant", "domain": "greenely", "etag_repository": "W/\"25fab3b29ff9cd0898d856bd9e25b61ed042f443106513727c96636664460a57\"", "last_updated": "2023-01-02T21:20:56Z", "stargazers_count": 45, "last_fetched": 1695554112.463337, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "545025660": {"repository_manifest": {"name": "Web Untis", "render_readme": true, "zip_release": true, "filename": "webuntis.zip", "homeassistant": "2021.11.0"}, "full_name": "JonasJoKuJonas/homeassistant-WebUntis", "authors": ["@JonasJoKuJonas"], "category": "integration", "description": "Custom component to access data from Web Untis in Home Assistant", "domain": "webuntis", "downloads": 275, "etag_repository": "W/\"4c0e872f3cce8b0e5a7621254271b8712665da10808b38c33b084af32565681e\"", "last_updated": "2023-09-13T06:05:22Z", "stargazers_count": 25, "topics": ["homeassista", "homeassistant-custom-component", "school", "webuntis", "webuntis-api", "webuntis-client"], "last_fetched": 1695554092.554205, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "206868881": {"repository_manifest": {"name": "Gismeteo", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-gismeteo", "authors": ["@Limych"], "category": "integration", "description": "Gismeteo Weather Provider for Home Assistant", "domain": "gismeteo", "downloads": 42, "etag_repository": "W/\"034165b5b7dd086afb01045b4ef206cf373e6637191d224d374cf3adeb24e749\"", "last_updated": "2023-03-08T22:57:28Z", "stargazers_count": 94, "topics": ["forecast", "gismeteo", "gismeteo-weather", "sensors", "weather-provider"], "last_fetched": 1695554110.493083, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "398767994": {"repository_manifest": {"name": "Wibeee (and Mirubee) energy monitor", "render_readme": true, "zip_release": true, "filename": "hass_wibeee.zip", "homeassistant": "2022.2.0"}, "full_name": "luuuis/hass_wibeee", "authors": ["@luuuis"], "category": "integration", "description": "Home Assistant: Wibeee energy monitor custom component", "domain": "wibeee", "downloads": 394, "etag_repository": "W/\"b87ce88f3ec959ed739e398f3a19c8c7dd828f0ab58acdefcf470f1cec314d77\"", "last_updated": "2023-06-12T11:46:53Z", "stargazers_count": 13, "topics": ["circutor", "mirubee", "smilics", "wibeee"], "last_fetched": 1695554114.934384, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "243841075": {"repository_manifest": {"name": "CS:GO game state", "homeassistant": "0.100"}, "full_name": "lociii/homeassistant-csgo", "authors": ["@lociii", "@davidramiro"], "category": "integration", "description": "CS:GO gamestate reporting to Home Assistant", "domain": "csgo_gamestate", "etag_repository": "W/\"f292299b49af1ee4119dfacf175859dac7c5479978d48887b223b437fa7cc88a\"", "last_updated": "2023-01-31T09:51:08Z", "stargazers_count": 17, "last_fetched": 1695554112.781482, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "460167330": {"repository_manifest": {"name": "Pod Point", "country": "GB", "hacs": "1.6.0", "homeassistant": "2023.1.0"}, "full_name": "mattrayner/pod-point-home-assistant-component", "authors": ["@mattrayner"], "category": "integration", "description": "A simple Home Assistant integration that shows basic information from Pod Point and allows the control of charging schedules to disable and enable the pod.", "domain": "pod_point", "etag_repository": "W/\"dc1304c470f18c0503a8e97f8c7c5bae893de48be825f4dfedee2f956edad334\"", "last_updated": "2023-06-16T15:30:56Z", "stargazers_count": 26, "topics": ["energy-consumption", "ev-charging"], "last_fetched": 1695554119.714247, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "282714722": {"repository_manifest": {"name": "Senec solar system sensor", "country": ["DE"], "homeassistant": "2021.12.8", "hacs": "1.18.0", "render_readme": true}, "full_name": "mchwalisz/home-assistant-senec", "authors": ["@mchwalisz"], "category": "integration", "description": "SENEC Battery integration for Home Assistant", "domain": "senec", "etag_repository": "W/\"37472750406ea689cbfeeec818dfa0e5bea2327e29772b72c968b9e61a7326ff\"", "last_updated": "2023-09-12T03:51:09Z", "stargazers_count": 46, "topics": ["home-assistant-component"], "last_fetched": 1695554121.007616, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259739166": {"repository_manifest": {"name": "Octopus Agile", "render_readme": true}, "full_name": "markgdev/home-assistant_OctopusAgile", "authors": ["@markgdev"], "category": "integration", "description": "Octopus Agile custom component for Home Assistant", "domain": "octopusagile", "etag_repository": "W/\"c35edc217ea02b0d90b3b31c78aab4a5db3ff386b41457d8237095543f47945b\"", "last_updated": "2023-03-11T07:58:59Z", "stargazers_count": 77, "topics": ["energy", "octopus", "octopus-agile", "octopus-energy"], "last_fetched": 1695554117.264748, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "505066911": {"repository_manifest": {"name": "Intex Spa", "hacs": "1.6.0", "homeassistant": "2022.4.0", "render_readme": true}, "full_name": "mathieu-mp/homeassistant-intex-spa", "authors": ["@mathieu-mp", "@Elkropac"], "category": "integration", "description": "Home Assistant integration for Intex Spa", "domain": "intex_spa", "etag_repository": "W/\"747616ad80777f3669383ec7228d35aa6030277ad450894605a06c841a096016\"", "last_updated": "2023-09-05T11:02:09Z", "stargazers_count": 18, "topics": ["climate", "intex", "purespa", "spa", "switch"], "last_fetched": 1695554119.437632, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340664955": {"repository_manifest": {"name": "Proof Dashcam Integration", "country": "IL", "render_readme": true}, "full_name": "dimagoltsman/ha-proof-dashcam-integration", "authors": ["@dimagoltsman"], "category": "integration", "description": "HACS integration to proof.co.il dashcam", "domain": "proof", "etag_repository": "W/\"55df1cd43b544604d8baf30f981b9dbe95d70def167ac2a498c489daf21b9d1a\"", "last_updated": "2021-03-13T18:43:28Z", "stargazers_count": 1, "topics": ["proof"], "last_fetched": 1695553624.925476, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "608596416": {"repository_manifest": {"name": "Taipit Cloud Meters", "render_readme": true, "country": "RU"}, "full_name": "lizardsystems/hass-taipit", "authors": ["@lizardsystems"], "category": "integration", "description": "\u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u0434\u043b\u044f Home Assistant, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0449\u0430\u044f \u043e\u0431\u043b\u0430\u0447\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0447\u0438\u043a\u0438 \u0422\u0430\u0439\u043f\u0438\u0442", "domain": "taipit", "etag_repository": "W/\"52179280d473689746519cacaff3f59c51ae22f414b620aa21f48920688e8821\"", "last_updated": "2023-04-22T19:54:10Z", "stargazers_count": 2, "topics": ["energy", "smartmeter", "taipit"], "last_fetched": 1695554112.552001, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "361961255": {"repository_manifest": {"name": "Metlink Wellington Transport", "render_readme": true, "country": "NZ", "homeassistant": "2023.6.0"}, "full_name": "make-all/metlink-nz", "authors": ["@make-all"], "category": "integration", "description": "Metlink Wellington Public Transport integration for Home Assistant", "domain": "metlink", "etag_repository": "W/\"a18209cac0f8003d2c3b0c469024d144ba82fea76f02be36f4a7972098f85cbc\"", "last_updated": "2023-07-03T14:20:35Z", "stargazers_count": 7, "topics": ["metlink", "metlink-api", "transport", "wellington"], "last_fetched": 1695554116.322893, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458237432": {"repository_manifest": {"name": "Uptime Kuma", "render_readme": true, "hide_default_branch": true, "homeassistant": "2021.12.0"}, "full_name": "meichthys/uptime_kuma", "authors": ["@meichthys", "@jayakornk"], "category": "integration", "description": "Uptime Kuma HACS integration", "domain": "uptime_kuma", "etag_repository": "W/\"11e3ddc7a037151e495ff95d5344aa71934c70bca08cd3b2fcb7617cc568c39b\"", "last_updated": "2023-09-18T04:30:54Z", "stargazers_count": 66, "topics": ["home-assistant-custom-component", "homeassistant-custom-component", "uptime-kuma"], "last_fetched": 1695554121.648616, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443905243": {"repository_manifest": {"name": "Xplora\u00ae Watch", "zip_release": true, "render_readme": true, "homeassistant": "2023.9.2", "hacs": "1.32.1", "filename": "xplora_watch.zip"}, "full_name": "Ludy87/xplora_watch", "authors": ["@Ludy87"], "category": "integration", "description": "Xplora\u00ae Watch Home Assistant Integration", "domain": "xplora_watch", "downloads": 189, "etag_repository": "W/\"e3f9e99134c86ed58c0024499ecfa8fb9f79a1bfc782aee24fab91e0e9a04eca\"", "last_updated": "2023-09-22T19:23:59Z", "stargazers_count": 36, "topics": ["devicetracker", "hassio-addons", "hassio-integration", "hassos", "homeassistant-custom-component", "notify", "watch", "xplora", "xplora-watch"], "last_fetched": 1695554114.968663, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "254347436": {"repository_manifest": {"name": "Waste Collection Schedule"}, "full_name": "mampfes/hacs_waste_collection_schedule", "authors": ["@mampfes"], "category": "integration", "description": "Home Assistant integration framework for (garbage collection) schedules", "domain": "waste_collection_schedule", "etag_repository": "W/\"0a49780be79f1e78061378b86c0d7640ab833e1f7139f21da56c1927258edf24\"", "last_updated": "2023-09-23T20:04:09Z", "stargazers_count": 508, "topics": ["abfall", "abfallnavi", "abfallplus", "garbage", "garbage-collection", "jumomind", "muell", "muellabfuhr", "muellsammlung", "mymuell", "regioit", "waste", "waste-collection"], "last_fetched": 1695554117.418112, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497322735": {"repository_manifest": {"name": "Plex recently added sensor", "render_readme": true}, "full_name": "NemesisRE/sensor.plex_recently_added", "authors": ["@maykar", "@NemesisRE"], "category": "integration", "description": "\u25b6\ufe0f Plex component to feed Upcoming Media Card.", "domain": "plex_recently_added", "etag_repository": "W/\"1f29aca12a943993f8d07c2686a18dfe6eb5fa1ea1ce1bdb1ddd4e5679e193db\"", "last_updated": "2023-03-14T10:16:26Z", "stargazers_count": 9, "last_fetched": 1695554132.49359, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "584497784": {"repository_manifest": {"name": "FreeAir Connect", "render_readme": true, "homeassistant": "2023.2.0"}, "full_name": "mampfes/ha_freeair_connect", "authors": ["@mampfes"], "category": "integration", "description": "Adds data from FreeAir-Connect to Home Assistant", "domain": "freeair_connect", "etag_repository": "W/\"036046d76c0f16b069fe4c434468e78e012beab0a88ac145f887e673706c25d9\"", "last_updated": "2023-08-18T15:34:38Z", "stargazers_count": 8, "topics": ["blumartin", "freeair", "freeair-connect"], "last_fetched": 1695554116.831886, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "568434741": {"repository_manifest": {"name": "ha_heliotherm", "render_readme": true, "zip_release": true, "filename": "ha_heliotherm.zip", "homeassistant": "0.100.0", "hacs": "0.24.0"}, "full_name": "mbuchber/ha_heliotherm", "authors": ["@mbuchber"], "category": "integration", "description": "Home Assistant Custom Component for Heliotherm Heatpumps", "domain": "ha_heliotherm", "downloads": 79, "etag_repository": "W/\"cb0fd3f3d5d828c1f33d0d83ef31a51aa9205616f10a3f2957a476d685b80f7b\"", "last_updated": "2023-07-20T12:34:20Z", "stargazers_count": 9, "topics": ["heatpump", "heliotherm", "homeassistant-custom-component"], "last_fetched": 1695554121.134504, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458636658": {"repository_manifest": {"name": "iOS Theme - Based on the system-wide light and dark mode UI", "render_readme": true}, "full_name": "JuanMTech/ios-theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- Theme based on the iOS system-wide light and dark mode interface", "etag_repository": "W/\"c463bec69f0da531b13fe227fac4604ce4478a7f3c5bf3a56b07f47e6b4a259a\"", "last_updated": "2023-01-13T19:19:48Z", "stargazers_count": 23, "topics": ["darkmode", "darktheme", "lightmode", "lighttheme"], "last_fetched": 1695553502.14998, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183222061": {"repository_manifest": {"name": "Local Luftdaten Sensor", "render_readme": true}, "full_name": "lichtteil/local_luftdaten", "authors": ["@lichtteil"], "category": "integration", "description": "Custom component for Home Assistant that integrates your (own) local Luftdaten sensor (air quality/particle sensor) without using the cloud.", "domain": "local_luftdaten", "etag_repository": "W/\"e53c5533776464a7720872087ba08b6f27713967361da494b90c651ae09e55fe\"", "last_updated": "2023-06-12T14:48:45Z", "stargazers_count": 41, "topics": ["air-quality"], "last_fetched": 1695554110.14546, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "326220257": {"repository_manifest": {"name": "Viomi Robot Vacuum Cleaner SE (V-RVCLM21A)", "country": ["FR", "PL", "PT"], "zip_release": true, "filename": "viomi_se.zip"}, "full_name": "marotoweb/home-assistant-vacuum-viomise", "authors": ["@nqkdev", "@KrzysztofHajdamowicz", "@marotoweb"], "category": "integration", "description": "Hacky Home assistant support for Viomi SE (V-RVCLM21A)", "domain": "viomise", "downloads": 2099, "etag_repository": "W/\"aea9a42fab08a6a56d02d1888ed98e0da6c83b32adc13da2d30a1e97d7010a68\"", "last_updated": "2022-06-29T18:36:07Z", "stargazers_count": 19, "topics": ["robot-vacuum", "vacuum", "viomi"], "last_fetched": 1695554118.869911, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "505598474": {"repository_manifest": {"name": "Pre\u00e7os dos Combust\u00edveis - DGEG", "country": "PT", "render_readme": true}, "full_name": "netsoft-ruidias/ha-custom-component-precoscombustiveis", "authors": ["@netsoft-ruidias"], "category": "integration", "description": "Pre\u00e7os dos Combust\u00edveis Online - DGEG", "domain": "precoscombustiveis", "etag_repository": "W/\"a1ce9f33690aabc2832e9803a6523ce153cd294168c674fbb6233329738cc44f\"", "last_updated": "2023-05-19T09:24:41Z", "stargazers_count": 14, "topics": ["combustiveis", "dgeg", "fuel-prices", "gas", "portugal"], "last_fetched": 1695554132.911429, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279184610": {"repository_manifest": {"name": "Amber Electric", "country": "AU", "homeassistant": "2021.7.1"}, "full_name": "madpilot/hass-amber-electric", "authors": ["@madpilot"], "category": "integration", "description": "Home Assistant Component to pull the latest energy prices from Amber Electric", "domain": "amberelectric", "etag_repository": "W/\"b5d6c29c78884d7cca04c03b000ef592df57d1b47ca4a1e6db22e388a4cf8591\"", "last_updated": "2021-10-07T09:01:00Z", "stargazers_count": 24, "topics": ["amber-electric", "electricity-market", "electricity-prices"], "last_fetched": 1695554114.87452, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246657442": {"repository_manifest": {"name": "Current Cost"}, "full_name": "lolouk44/CurrentCost_HA_CC", "authors": ["@lolouk44"], "category": "integration", "description": "CurrentCost Meter Reading Custom Component for Home Assistant ", "domain": "currentcost", "etag_repository": "W/\"891a8368d35989cabfff5eefbf32a1f2da57eeb27610f4b541bbb60a3c32a9b7\"", "last_updated": "2023-06-29T21:12:28Z", "stargazers_count": 16, "topics": ["cc128", "current-cost", "currentcost", "envi", "envir"], "last_fetched": 1695554114.138767, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "570874359": {"repository_manifest": {"name": "Watchman SENSiT integration for Home Assistant", "hacs": "1.6.0", "render_readme": true, "homeassistant": "0.118.0"}, "full_name": "masaccio/ha-kingspan-watchman-sensit", "authors": ["@masaccio"], "category": "integration", "description": "Kingspan Connect Sensor integration for Home Assistant", "domain": "kingspan_watchman_sensit", "etag_repository": "W/\"51b273bbf3fc6841da5c161d9990df9b54125548de571c031e55859095da819f\"", "last_updated": "2023-09-18T16:13:40Z", "stargazers_count": 7, "topics": ["energy-monitor", "iot", "kingspan", "monitoring", "oil-sensor"], "last_fetched": 1695554119.200605, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "418810115": {"repository_manifest": {"name": "pfSense integration for Home Assistant", "homeassistant": "2022.4.0", "render_readme": true}, "full_name": "travisghansen/hass-pfsense", "authors": ["@travisghansen"], "category": "integration", "description": "pfSense integration with Home Assistant", "domain": "pfsense", "etag_repository": "W/\"61e4c6351058396bd005b5ca252247c5eb4e1132314d44e570c4dad8f71a6fdb\"", "last_updated": "2023-05-07T14:41:39Z", "stargazers_count": 154, "topics": ["hassio-integration", "pfsense"], "last_fetched": 1695554188.087835, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231829137": {"repository_manifest": {"name": "Noctis"}, "full_name": "aFFekopp/noctis", "category": "theme", "description": "\ud83d\udc35 Dark Blue Theme for Home Assistant", "etag_repository": "W/\"23b9ee7fe9476df3f4f109e4b0f820ce095f3f78653584829f81c4e35713950f\"", "last_updated": "2023-03-23T17:13:01Z", "stargazers_count": 178, "topics": ["dark-theme", "home-assistant-theme"], "last_fetched": 1695553493.192396, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "379621461": {"repository_manifest": {"name": "Mixergy"}, "full_name": "tomasmcguinness/homeassistant-mixergy", "authors": ["@tomasmcguinness"], "category": "integration", "description": "Add support for Mixergy's smart water tank into Home Assistant", "domain": "mixergy", "etag_repository": "W/\"77a14f5a8bb3047087d800281de684c156cb46f7ad138d3c3ebc44e6965ac7a3\"", "last_updated": "2023-08-19T08:02:17Z", "stargazers_count": 26, "topics": ["hotwater", "mixergy"], "last_fetched": 1695554185.832882, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234375294": {"repository_manifest": {"name": "Vaporwave Pink Theme", "render_readme": true}, "full_name": "home-assistant-community-themes/vaporwave-pink", "category": "theme", "description": "Vaporwave Pink Theme for Home Assistant", "etag_repository": "W/\"122c80ded7ab80ffccce64030c2c1aacdc1db78056c2bb8631c1d03ee0d38507\"", "last_updated": "2022-06-17T14:41:05Z", "stargazers_count": 3, "topics": ["80s", "pink", "vaporwave"], "last_fetched": 1695553500.397523, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "439367892": {"repository_manifest": {"name": "Better Thermostat UI", "render_readme": true, "filename": "better-thermostat-ui-card.js"}, "full_name": "KartoffelToby/better-thermostat-ui-card", "category": "plugin", "description": "a custom card for a better thermostat in home assistant based on ai_thermostat intigration", "downloads": 1788, "etag_repository": "W/\"9cd62d67f34d958179463021f8edf56f8bdb1a0f904300fb7b0e2f1aa686f43c\"", "last_updated": "2023-09-22T18:08:07Z", "stargazers_count": 124, "topics": ["thermostat"], "last_fetched": 1695553542.161826, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228604799": {"repository_manifest": {"name": "Arpscan Device Tracker", "country": "NL"}, "full_name": "cyberjunky/home-assistant-arpscan_tracker", "authors": ["@cyberjunky"], "category": "integration", "description": "This component tracks devices using the arp-scan liinux command, it's very fast, and reasonably accurate.", "domain": "arpscan_tracker", "etag_repository": "W/\"b5ca450647b9d76ba4a422d6aa02ba90aa459ab044c48b12fc4c8b5f7497c08f\"", "last_updated": "2023-05-09T20:03:04Z", "stargazers_count": 23, "last_fetched": 1695553612.091102, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "277201070": {"repository_manifest": {"name": "AmsHan", "homeassistant": "2022.8.0b0", "render_readme": true}, "full_name": "toreamun/amshan-homeassistant", "authors": ["@toreamun"], "category": "integration", "description": "Home Assistant integrasjon for str\u00f8mm\u00e5lere (AMS/HAN/P1). Integrasjonen st\u00f8ter b\u00e5de streaming (serieport/TCP-IP) og MQTT (Tibber Pulse, energyintelligence.se etc)", "domain": "amshan", "downloads": 33, "etag_repository": "W/\"8b50ef6557cde2635725336fb283468ce474113b8b33498dcd2646ed6206bbec\"", "last_updated": "2023-06-14T21:51:57Z", "stargazers_count": 125, "topics": ["aidon", "ams", "han", "kaifa", "kamstrup", "mbus", "meterbus", "mqtt", "p1", "smart-meter", "tibberpulse"], "last_fetched": 1695554186.030997, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "198794376": {"repository_manifest": {"name": "Met.no Nowcast", "render_readme": true, "zip_release": true, "filename": "metnowcast.zip"}, "full_name": "toringer/home-assistant-metnowcast", "authors": ["@toringer"], "category": "integration", "description": "Met.no Nowcast component for Home Assistant", "domain": "metnowcast", "downloads": 359, "etag_repository": "W/\"5bd0e172901974834ad48a68fdcea0ec9f5367baf0683664fb540157776ef959\"", "last_updated": "2023-05-28T21:38:05Z", "stargazers_count": 8, "topics": ["metno", "nowcast", "nowcasting-precipitation"], "last_fetched": 1695554185.937098, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299875200": {"repository_manifest": {"name": "Victor Smart-Kill", "homeassistant": "2022.8.0b0", "render_readme": true}, "full_name": "toreamun/victorsmartkill-homeassistant", "authors": ["@toreamun"], "category": "integration", "description": "Home Assistant integration for Victor Smart-Kill WI-FI electronic mouse and rat traps from VictorPest.com.", "domain": "victorsmartkill", "downloads": 11, "etag_repository": "W/\"3bda996d416410c47651b9f015b6a9327f75bd4e6858d1aca283ae408d17e270\"", "last_updated": "2023-06-14T22:05:37Z", "stargazers_count": 13, "topics": ["mouse", "rat", "trap", "victor"], "last_fetched": 1695554186.069864, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "303793543": {"repository_manifest": {"name": "Skydance", "country": ["EN", "CZ"], "render_readme": true}, "full_name": "tomasbedrich/home-assistant-skydance", "authors": ["@tomasbedrich"], "category": "integration", "description": "A Home Assistant integration for communication with Skydance lighting WiFi relay.", "domain": "skydance", "etag_repository": "W/\"58441241b338f4c3b978f8c9a6b620f651cbd2d9185bb1eeef9be9f84d51c282\"", "last_updated": "2023-02-25T23:22:38Z", "stargazers_count": 13, "topics": ["networking"], "last_fetched": 1695554185.781876, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "124766061": {"repository_manifest": {"name": "Sbanken", "render_readme": true, "zip_release": true, "filename": "sbanken.zip"}, "full_name": "toringer/home-assistant-sbanken", "authors": ["@toringer"], "category": "integration", "description": "Sbanken sensor for Home Assistant", "domain": "sbanken", "downloads": 72, "etag_repository": "W/\"c7dd30c4f9c282abd8aefff52139750b3ad414c194b4c68f87fcad6c08ad0985\"", "last_updated": "2023-02-12T14:41:52Z", "stargazers_count": 2, "topics": ["sbanken"], "last_fetched": 1695554186.106267, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "284293899": {"repository_manifest": {"name": "iOS Dark Mode", "render_readme": true}, "full_name": "JuanMTech/ios_dark_mode_theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the iOS dark mode interface.", "etag_repository": "W/\"4eb55aec8a19efece4128f002d71752d6c42487541f876a6f679c67065468080\"", "last_updated": "2023-01-12T22:58:52Z", "stargazers_count": 19, "topics": ["dark-mode", "dark-theme"], "last_fetched": 1695553502.158582, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "461906076": {"repository_manifest": {"name": "Raspberry Pi RF", "homeassistant": "2022.7.0"}, "full_name": "markvader/ha-rpi_rf", "authors": ["@markvader"], "category": "integration", "description": "Home Assistant Raspberry Pi GPIO RF Integration", "domain": "rpi_rf", "etag_repository": "W/\"17042bbc79e848a2ea8a49efdac6f10ec72fc07aff3dd4480e22362b8ab33b18\"", "last_updated": "2023-09-11T20:19:17Z", "stargazers_count": 26, "topics": ["home-assistant-component", "rpi-gpio", "rpi-rf"], "last_fetched": 1695554117.663233, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "532263303": {"repository_manifest": {"name": "Met.no next 6 hours forecast", "render_readme": true, "zip_release": true, "filename": "met_next_6_hours_forecast.zip"}, "full_name": "toringer/home-assistant-met-next-6-hours-forecast", "authors": ["@toringer"], "category": "integration", "description": "Met.no next 6 hours forecast component for Home Assistant", "domain": "met_next_6_hours_forecast", "downloads": 854, "etag_repository": "W/\"d7089181fae2b9854d35693c8cd50e2c45e269dadd4b533bb2bbfa92364609fc\"", "last_updated": "2023-05-29T08:48:33Z", "stargazers_count": 2, "topics": ["forecast", "metno", "weather", "weather-forecast"], "last_fetched": 1695554185.876737, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448604854": {"repository_manifest": {"name": "Cardiff Waste", "homeassistant": "2021.12.0", "render_readme": true, "country": "GB"}, "full_name": "TomBrien/cardiffwaste-ha", "authors": ["@tombrien"], "category": "integration", "description": "A Home Assistant integration to provide sensors for waste collections in Cardiff, UK", "domain": "cardiffwaste", "etag_repository": "W/\"29324e691b2a66ddf0f33f3cb26fc161700c4a4dd0ad2b2a2881552ffcd49dbe\"", "last_updated": "2023-04-04T14:19:45Z", "stargazers_count": 8, "topics": ["cardiff", "waste-collection"], "last_fetched": 1695554185.929153, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "406939721": {"repository_manifest": {"name": "Hik-Connect", "country": ["EN"], "render_readme": true}, "full_name": "tomasbedrich/home-assistant-hikconnect", "authors": ["@tomasbedrich"], "category": "integration", "description": "A Home Assistant integration to communicate with Hikvision smart doorbells via Hik-Connect cloud.", "domain": "hikconnect", "etag_repository": "W/\"cdfdc36a43d5167a046b665278dc2ed7a436d704fa8c9c7228b3a24f50a95f8e\"", "last_updated": "2023-09-02T09:03:39Z", "stargazers_count": 34, "topics": ["hikvision"], "last_fetched": 1695554185.687343, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582268944": {"repository_manifest": {"name": "EPEX Spot", "render_readme": true, "homeassistant": "2023.2.0"}, "full_name": "mampfes/ha_epex_spot", "authors": ["@mampfes"], "category": "integration", "description": "Adds EPEX Spot data to Home Assistant.", "domain": "epex_spot", "etag_repository": "W/\"c9965ebb036f8c7035bb20e2c084ff6e3c584faee2e82ef5750dad552a484be7\"", "last_updated": "2023-09-23T18:21:23Z", "stargazers_count": 46, "topics": ["awattar", "epex", "epex-spot", "smard"], "last_fetched": 1695554116.644854, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "627970137": {"repository_manifest": {"name": "HERU", "homeassistant": "2023.1.0", "zip_release": true, "filename": "heru.zip", "render_readme": true}, "full_name": "toringer/home-assistant-heru", "authors": ["@toringer"], "category": "integration", "description": "\u00d6stberg HERU energy recovery unit component for Home Assistant", "domain": "heru", "downloads": 122, "etag_repository": "W/\"2ce9e139889b11349ac5396101d6d1e37d68dc24d3239c6cea1490ae4d1c303b\"", "last_updated": "2023-06-21T17:09:38Z", "stargazers_count": 8, "topics": ["climate", "energy-recovery", "energy-recovery-unit", "heru", "ostberg"], "last_fetched": 1695554185.91583, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "440374794": {"repository_manifest": {"name": "history-explorer-card", "filename": "history-explorer-card.js"}, "full_name": "alexarch21/history-explorer-card", "category": "plugin", "description": "A card for Home Assistant Lovelace for exploring the history of your entities interactively and in real time.", "downloads": 5296, "etag_repository": "W/\"220b98aa21df1695ba6a031d1d5325251688ca9adea2881ef0767c03eeeb7adb\"", "last_updated": "2023-09-12T23:46:44Z", "stargazers_count": 322, "topics": ["history"], "last_fetched": 1695553510.713155, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "382335433": {"repository_manifest": {"name": "SAJ eSolar"}, "full_name": "djansen1987/SAJeSolar", "authors": ["@djansen1987"], "category": "integration", "description": "SAJ eSolar Portal Sensors", "domain": "saj_esolar", "etag_repository": "W/\"c826422eef677eb4a8623fa9360899136abdd2b1884e0176745e383e37ce94f7\"", "last_updated": "2023-08-30T11:03:33Z", "stargazers_count": 16, "topics": ["esolar", "intergration", "saj", "solar", "solar-system"], "last_fetched": 1695553625.298149, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "298816063": {"repository_manifest": {"name": "Trackimo Device Tracker", "country": "AU", "homeassistant": "2021.7.1"}, "full_name": "troykelly/hacs-trackimo", "authors": ["@troykelly"], "category": "integration", "description": "Trackimo Integration for HACS Home Assistant", "domain": "trackimo", "downloads": 6, "etag_repository": "W/\"f511e04bee23e7d388a169e2642643dab3d7ee3eb8292d115eae9998b8cfe90c\"", "last_updated": "2022-06-02T13:49:21Z", "stargazers_count": 1, "topics": ["geolocation", "trackimo"], "last_fetched": 1695554188.015278, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "388979130": {"repository_manifest": {"name": "NSW Covid Data", "country": "AU", "homeassistant": "2021.9.0", "zip_release": true, "filename": "nswcovid.zip"}, "full_name": "troykelly/homeassistant-au-nsw-covid", "authors": ["@troykelly"], "category": "integration", "description": "A group of sensors for Home Assistant that tracks New South Wales COVID-19 Data", "domain": "nswcovid", "downloads": 326, "etag_repository": "W/\"dcf32d88381d4efdb4d3f4cd6478a227a5ffa831dea2194152552755b27d1fe6\"", "last_updated": "2023-02-22T06:17:16Z", "stargazers_count": 1, "topics": ["covid-19", "nsw-government", "nsw-health"], "last_fetched": 1695554188.196101, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "519811207": {"repository_manifest": {"name": "EVN Data Fetcher", "country": ["VN"], "homeassistant": "2022.7.0", "render_readme": true}, "full_name": "trvqhuy/nestup_evn", "authors": ["@trvqhuy"], "category": "integration", "description": "A simple yet efficient custom component to fetch data from EVN Vietnam for Home Assistant", "domain": "nestup_evn", "etag_repository": "W/\"adcdffafd5bf1de254402f0961bf2270f2b6df12f6af73531d890eb6d20b3364\"", "last_updated": "2023-07-07T02:41:24Z", "stargazers_count": 38, "topics": ["electricity-meter", "homeassistant-custom-component", "polling-service"], "last_fetched": 1695554188.004046, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232424544": {"repository_manifest": {"name": "Bosch Smart Home Controller (SHC) integration", "homeassistant": "2021.1.5"}, "full_name": "tschamm/boschshc-hass", "authors": ["@tschamm"], "category": "integration", "description": "Home Assistant component for accessing Bosch Smart Home Controller using boschshcpy python library.", "domain": "bosch_shc", "etag_repository": "W/\"da5713ebe0ccc6b121fab97e59d17c04e38dd3785c3a6688b7d52276dd585437\"", "last_updated": "2023-08-16T08:19:52Z", "stargazers_count": 95, "topics": ["bosch-smart-home", "boschshcpy", "home-assistant-component"], "last_fetched": 1695554188.27311, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "487536666": {"repository_manifest": {"name": "Nilan", "homeassistant": "2023.9.0", "render_readme": true}, "full_name": "veista/nilan", "authors": ["@veista"], "category": "integration", "description": "Nilan integration for Home Assistant", "domain": "nilan", "etag_repository": "W/\"e15e632966ad8439563dff80b958ca9545771d34aeb5dd2ee43b3aefcdd1a2a0\"", "last_updated": "2023-09-22T21:45:37Z", "stargazers_count": 34, "topics": ["iot", "modbus-tcp"], "last_fetched": 1695554192.644921, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "247566230": {"repository_manifest": {"name": "Next Rocket Launch", "country": "FR", "render_readme": true}, "full_name": "Verbalinsurection/next_rocket_launch", "authors": ["@Verbalinsurection"], "category": "integration", "description": "The Next Rocket Launch sensor platform allows you to monitor the next rocket launch from Teamup.", "domain": "next_rocket_launch", "etag_repository": "W/\"e61b32f11e876107a0d1f6ad31100fe3105d6874b89972faeb3c2a0920fd6bc3\"", "last_updated": "2022-04-08T21:54:51Z", "stargazers_count": 9, "topics": ["rocket"], "last_fetched": 1695554192.429847, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "258012818": {"repository_manifest": {"name": "simpleicons", "render_readme": true, "homeassistant": "2021.11.0", "zip_release": true, "filename": "hass-simpleicons.zip"}, "full_name": "vigonotion/hass-simpleicons", "category": "integration", "description": "Use Simple Icons in Home Assistant", "domain": "simpleicons", "downloads": 6201, "etag_repository": "W/\"016fc20caf3eb7a6b351adfdeace56ee121fd8d4e4dd462bd4bf931f3ae5c79b\"", "last_updated": "2022-10-08T17:58:57Z", "stargazers_count": 108, "topics": ["simple-icons"], "last_fetched": 1695554192.766569, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "354887961": {"repository_manifest": {"name": "Abalin Name Day", "country": "GR", "homeassistant": "core-2021.4.0", "render_readme": true}, "full_name": "viktak/ha-cc-abalin-nameday", "authors": ["@viktak"], "category": "integration", "description": "Home Assistant custom component for the abalin name day API", "domain": "abalin_nameday", "etag_repository": "W/\"e854de6aeb6e4bdbe643f41a58a862ffe8fa673dfdfbe5fedb7a56d4929cf3a4\"", "last_updated": "2022-02-24T10:30:22Z", "stargazers_count": 5, "topics": ["namedays"], "last_fetched": 1695554192.509588, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "353966616": {"repository_manifest": {"name": "OpenWeatherMap All", "country": "GR", "homeassistant": "core-2021.3.4", "render_readme": true}, "full_name": "viktak/ha-cc-openweathermap_all", "authors": ["@viktak"], "category": "integration", "description": "Home Assistant custom component combining multiple OpenWeatherMap API calls", "domain": "openweathermap_all", "etag_repository": "W/\"58d531b0b7be9f8b579264788140c8eaa2c51de661e8f75ad93c903dba4cfbb3\"", "last_updated": "2023-01-16T08:26:19Z", "stargazers_count": 19, "topics": ["openweathermap"], "last_fetched": 1695554192.657476, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164155243": {"repository_manifest": {"render_readme": true, "homeassistant": "2021.9.3"}, "full_name": "TimSoethout/goodwe-sems-home-assistant", "authors": ["@TimSoethout"], "category": "integration", "description": "Sensor for Home Assistant pulling data from the GoodWe SEMS API for solar panel production metrics.", "domain": "sems", "etag_repository": "W/\"5bd7b21f6233b869696b42d2edf940a313918dc8b041ed3f4884ff4db16fb339\"", "last_updated": "2023-05-24T17:45:24Z", "stargazers_count": 73, "topics": ["goodwe-sems", "pv", "sems-portal"], "last_fetched": 1695554183.785707, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "416883534": {"repository_manifest": {"name": "Micronova Agua IOT", "render_readme": true}, "full_name": "vincentwolsink/home_assistant_micronova_agua_iot", "authors": ["@vincentwolsink"], "category": "integration", "description": "Home Assistant integration controlling heating devices connected via the Agua IOT platform of Micronova", "domain": "aguaiot", "etag_repository": "W/\"cc29953fc02fadd6d3f063dc6f9b9c60f48acd697269fb2c793403c65372ee58\"", "last_updated": "2023-09-23T07:56:26Z", "stargazers_count": 14, "topics": ["agua-iot", "hacs-custom", "home-assistant-component", "home-assistant-integration", "micronova", "micronova-agua-iot"], "last_fetched": 1695554193.051424, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "120696364": {"repository_manifest": {"name": "OpenSprinkler integration for Home Assistant", "homeassistant": "2023.7.3", "render_readme": true}, "full_name": "vinteo/hass-opensprinkler", "authors": ["@vinteo"], "category": "integration", "description": "OpenSprinkler Integration for Home Assistant", "domain": "opensprinkler", "etag_repository": "W/\"85e9195d8669e36b59f33b7b034b3476618a2b20b141fe876fe6d9b70c3f9e8b\"", "last_updated": "2023-09-24T01:18:02Z", "stargazers_count": 167, "topics": ["opensprinkler"], "last_fetched": 1695554193.094128, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "386049746": {"repository_manifest": {"name": "Virage Dashboard", "render_readme": "true"}, "full_name": "viragelabs/virage_dashboard", "authors": ["@viragelabs"], "category": "integration", "description": "A Home Assistant integration to keep track of Virage Laboratories devices, and set up and properly label rf sensors and door contacts", "domain": "virage_dashboard", "etag_repository": "W/\"96ea1f8315e28b2f2576da091847b8c1204d0edcac4f125c438365278ea4d5bb\"", "last_updated": "2022-10-23T18:48:35Z", "stargazers_count": 1, "topics": ["virage", "viragelaboratories", "viragelabs"], "last_fetched": 1695554194.589033, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234875951": {"repository_manifest": {"name": "Securitas Home", "render_readme": "true", "country": "SE", "homeassistant": "0.110.1"}, "full_name": "vlumikero/home-assistant-securitas", "authors": ["@nwiborg", "@vlumikero"], "category": "integration", "description": "A Home Assistant custom component for Securitas Home Alarm, for alarms bought in Sweden before 2018-12-01", "domain": "securitas", "etag_repository": "W/\"4dc7df8f16230a42c408444b744a7cf93d7d91a9171f988e3f9c8771857f10af\"", "last_updated": "2021-07-24T17:58:21Z", "last_fetched": 1695554194.616788, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "520066480": {"repository_manifest": {"name": "Huawei Mesh Router", "hide_default_branch": true, "render_readme": true}, "full_name": "vmakeev/huawei_mesh_router", "authors": ["@vmakeev"], "category": "integration", "description": "Huawei mesh router component for Home Assistant", "domain": "huawei_mesh_router", "downloads": 14, "etag_repository": "W/\"6e96407a9f939af484d5acde8be74ae769e4359201aa25e5760c3136d4dbdd56\"", "last_updated": "2023-09-19T10:32:53Z", "stargazers_count": 26, "topics": ["huawei-router", "huawei-routers"], "last_fetched": 1695554194.732973, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235316264": {"repository_manifest": {"name": "Meteo Swiss", "render_readme": true, "country": "CH"}, "full_name": "websylv/homeassistant-meteoswiss", "authors": ["websylv"], "category": "integration", "description": ":sun_behind_rain_cloud: :switzerland: Meteo Swiss Integration for Home Assisant", "domain": "meteo-swiss", "etag_repository": "W/\"f896ddfb85bff244f07f4bbf74c0d561d562f0f2c54daa2d3ff29cb7baa4db20\"", "last_updated": "2023-09-18T20:35:14Z", "stargazers_count": 58, "last_fetched": 1695554194.754316, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334925385": {"repository_manifest": {"name": "RCT Power", "hacs": "1.6.0", "homeassistant": "2021.12.0"}, "full_name": "weltenwort/home-assistant-rct-power-integration", "authors": ["@weltenwort"], "category": "integration", "description": "A Home Assistant custom component to integrate with RCT Power inverters.", "domain": "rct_power", "etag_repository": "W/\"05741a2c3a49dda9bc59e2c0fdb08ebd2f033a9d96ebe9082836c326a495df29\"", "last_updated": "2023-07-11T17:30:18Z", "stargazers_count": 39, "topics": ["rct-power"], "last_fetched": 1695554194.93656, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "434912125": {"repository_manifest": {"name": "Load Shedding", "render_readme": true, "country": "ZA", "homeassistant": "2022.7.0"}, "full_name": "wernerhp/ha.integration.load_shedding", "authors": ["@wernerhp"], "category": "integration", "description": "A Home Assistant integration to track your load schedding schedule.", "domain": "load_shedding", "etag_repository": "W/\"ffae1383502d2fa16b0aba8bb94bc3fdd493f13660e3cf32276c02105cd128ba\"", "last_updated": "2023-09-16T15:59:11Z", "stargazers_count": 80, "topics": ["eskom", "load-shedding"], "last_fetched": 1695554194.869683, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "388918745": {"repository_manifest": {"name": "Creasol DomBus"}, "full_name": "CreasolTech/home-assistant-creasol-dombus", "authors": ["@CreasolTech"], "category": "integration", "description": "Home Assistant integration for Creasol DomBus RS485 modules (inputs, outputs, sensors).", "domain": "creasoldombus", "etag_repository": "W/\"e8107078ebbbe632a5ccb6e5ee97be159ac2316611b1760d10576de5a402c92e\"", "last_updated": "2023-07-22T10:29:32Z", "stargazers_count": 1, "topics": ["dombus", "domotic", "rs485"], "last_fetched": 1695553604.890366, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "572282256": {"repository_manifest": {"name": "Govee LAN Control", "homeassistant": "2022.12.0", "render_readme": true}, "full_name": "wez/govee-lan-hass", "authors": ["@wez"], "category": "integration", "description": "Control Govee lights via the LAN API from Home Assistant", "domain": "govee_lan", "etag_repository": "W/\"cc469dc85d8958d17f0e93f7ba1fe853cffae15e2d40331a69c1b93d942a3aed\"", "last_updated": "2023-06-10T14:56:39Z", "stargazers_count": 119, "topics": ["govee", "light"], "last_fetched": 1695554194.808393, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307678069": {"repository_manifest": {"name": "Variables+History", "render_readme": true, "homeassistant": "2023.4.0"}, "full_name": "Wibias/hass-variables", "authors": ["@rogro82", "@wibias", "@Snuffy2"], "category": "integration", "description": "Home Assistant variables component", "domain": "variable", "etag_repository": "W/\"c59a24f3fcda5d4578c8c97c3e9d4c41e68a6b50dffcab31e4f3405e7c2af238\"", "last_updated": "2023-07-20T15:50:56Z", "stargazers_count": 63, "topics": ["counter", "keypad", "last-motion", "timer", "variables"], "last_fetched": 1695554195.161894, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201805130": {"repository_manifest": {"name": "nordpool", "render_readme": true}, "full_name": "custom-components/nordpool", "authors": ["@hellowlol"], "category": "integration", "description": "This component allows you to pull in the energy prices into Home-Assistant.", "domain": "nordpool", "etag_repository": "W/\"27911792366969d5f0d854ec01a4db09e0a0a27df24a34594223925f0182e705\"", "last_updated": "2023-09-17T18:41:11Z", "stargazers_count": 345, "topics": ["energy-prices", "nordpool"], "last_fetched": 1695553608.01618, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "413680511": {"repository_manifest": {"name": "Toyota (North America)", "homeassistant": "2021.12.0", "render_readme": true, "zip_release": true, "filename": "ha_toyota_na.zip"}, "full_name": "widewing/ha-toyota-na", "authors": ["@vanstinator, @widewing"], "category": "integration", "description": "Home Assistant integration for Toyota Motor (North America) connected services", "domain": "toyota_na", "downloads": 848, "etag_repository": "W/\"d592f8354b792ef081b30fb4e706e1869d7cd9ff73977e44ccf67b4f5aa1c2ac\"", "last_updated": "2023-03-05T01:55:47Z", "stargazers_count": 35, "topics": ["car", "toyota", "vehicle"], "last_fetched": 1695554195.328242, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235659413": {"repository_manifest": {"name": "Eloverblik", "render_readme": true}, "full_name": "JonasPed/homeassistant-eloverblik", "authors": ["@JonasPed"], "category": "integration", "description": "Home Assistant Custom Component showing data from eloverblik.dk", "domain": "eloverblik", "etag_repository": "W/\"71aabd230eaf11ce991e78854da5ee5efe5f920ab74c730fd510ddd89eafc8df\"", "last_updated": "2023-05-07T18:51:16Z", "stargazers_count": 143, "last_fetched": 1695554094.372961, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "419786466": {"repository_manifest": {"name": "SolarEdge Modbus Multi", "homeassistant": "2023.9.1"}, "full_name": "WillCodeForCats/solaredge-modbus-multi", "authors": ["@WillCodeForCats"], "category": "integration", "description": "Integrates SolarEdge inverters with Modbus/TCP local polling. Single inverters, multiple inverters, meters, and batteries are supported.", "domain": "solaredge_modbus_multi", "etag_repository": "W/\"3f97858ec084a1b73758d1f2b233674e85e76a9bd1a67081082d83d692b19b4a\"", "last_updated": "2023-09-19T16:13:02Z", "stargazers_count": 114, "topics": ["modbus-tcp", "solaredge", "solaredge-inverter"], "last_fetched": 1695554195.519517, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "430818561": {"repository_manifest": {"name": "Tekmar Gateway 482", "homeassistant": "2022.8.0"}, "full_name": "WillCodeForCats/tekmar-482", "authors": ["@WillCodeForCats"], "category": "integration", "description": "Home Assistant integration for the Tekmar Gateway 482", "domain": "tekmar_482", "etag_repository": "W/\"d73eb6e69ba085cad2c346a38abe77b0a0237ef3acf20e05c1ab97ebb5429727\"", "last_updated": "2023-09-14T23:48:23Z", "stargazers_count": 2, "topics": ["tekmar"], "last_fetched": 1695554196.852042, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299967654": {"repository_manifest": {"name": "HiFiBerry", "render_readme": "true"}, "full_name": "willholdoway/hifiberry", "authors": ["@willholdoway", "@dgomes"], "category": "integration", "description": "This is a custom component to allow control of HifiberryOS devices in Home Assistant using the audiocontrol2 REST API.", "domain": "hifiberry", "etag_repository": "W/\"6c3ed9e79f5aef01c24fe3db9a6546ac123be4c59f1e34a87e24e5dc33fc59a5\"", "last_updated": "2023-08-26T16:36:46Z", "stargazers_count": 37, "topics": ["hifiberry", "internet-of-things", "iot"], "last_fetched": 1695554196.644413, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "394704821": {"repository_manifest": {"name": "SolaX Inverter Modbus", "render_readme": true}, "full_name": "wills106/homeassistant-solax-modbus", "authors": ["@wills106"], "category": "integration", "description": "SolaX Power Modbus custom_component for Home Assistant (Supports some Ginlong Solis, Growatt, Sofar Solar, TIGO TSI & Qcells Q.Volt Hyb)", "domain": "solax_modbus", "etag_repository": "W/\"31aae54518c119d08728245191bdf72975271aefc395de055ee055cc3870f532\"", "last_updated": "2023-09-24T08:29:28Z", "stargazers_count": 159, "topics": ["ginlong-solis", "growatt", "modbus", "modbus-rtu", "modbus-serial", "modbus-tcp", "qcells", "qvolt-inverter", "rs485", "sofar", "sofar-hyd", "sofarsolar", "solax", "solis"], "last_fetched": 1695554197.180271, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "344636306": {"repository_manifest": {"name": "SAJ Inverter Modbus", "homeassistant": "2021.12.0"}, "full_name": "wimb0/home-assistant-saj-modbus", "authors": ["@wimb0", "@fsaris"], "category": "integration", "description": "Home Assistant Component for reading data locally from SAJ (and Zonneplan) Inverters through modbus TCP.", "domain": "saj_modbus", "etag_repository": "W/\"47854997203839cd63f1fc19a060671b86705f47438c393255e8152e07fe8220\"", "last_updated": "2023-08-28T09:20:33Z", "stargazers_count": 23, "topics": ["saj-inverters", "saj-r5", "zonneplan"], "last_fetched": 1695554196.956138, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "302985427": {"repository_manifest": {"name": "Zidoo Media Player", "homeassistant": "2022.8"}, "full_name": "wizmo2/zidoo-player", "authors": ["@wizmo2"], "category": "integration", "description": "Home-assistant custom component and api wrapper for Zidoo Media Players", "domain": "zidoo", "etag_repository": "W/\"fd9000cd248881a25537cc14c63d1a6ed314ea611fdc858d4b49fc6ce8d85cbb\"", "last_updated": "2023-08-19T08:36:42Z", "stargazers_count": 11, "topics": ["media", "player", "video-player", "zidoo"], "last_fetched": 1695554197.01501, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197006509": {"repository_manifest": {}, "full_name": "seangreen2/slate_theme", "category": "theme", "description": "A Dark Theme for Home Assistant", "etag_repository": "W/\"7cfcea433d16851293c079dcb2ffda4273c0695be3b79b1a712d94005dcddd34\"", "last_updated": "2023-07-21T14:19:58Z", "stargazers_count": 99, "last_fetched": 1695553504.871815, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "419381725": {"repository_manifest": {"name": "Huawei Solar", "content_in_root": true, "render_readme": true, "homeassistant": "2023.3.7"}, "full_name": "wlcrs/huawei_solar", "authors": ["@wlcrs"], "category": "integration", "description": "Home Assistant integration for Huawei Solar inverters via Modbus", "domain": "huawei_solar", "etag_repository": "W/\"e54c4081389cebb0f73a1181cb9740a84aece6fe2578c1b42e9c86a95880ab7a\"", "last_updated": "2023-09-22T17:14:54Z", "stargazers_count": 329, "topics": ["home-assistant-integration", "huawei", "huawei-solar", "modbus", "modbus-rtu", "modbus-tcp", "solar-energy"], "last_fetched": 1695554197.199469, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512007926": {"repository_manifest": {"name": "Reolink Discovery", "homeassistant": "2022.7.0"}, "full_name": "xannor/ha_reolink_discovery", "authors": ["@xannor"], "category": "integration", "description": "ReoLink Discovery Protocol Integration for Home Assistant", "domain": "reolink_discovery", "etag_repository": "W/\"f2dd8c406c19d2171c646a17919b9bf389b48c5f012d852a85581fe2ab0af75c\"", "last_updated": "2023-03-07T14:31:27Z", "stargazers_count": 7, "topics": ["component"], "last_fetched": 1695554197.030028, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "374763546": {"repository_manifest": {"name": "AIMP Media Player", "content_in_root": true, "render_readme": true}, "full_name": "xilense/aimp_custom_component", "authors": ["@xilense"], "category": "integration", "description": "AIMP custom component for \ud83c\udfe0 Home Assistant using web remote", "domain": "aimp", "etag_repository": "W/\"e567c6890606d8d27c8b02d80cf591030d485951683bfdd93b9357c0861b27a8\"", "last_updated": "2021-06-21T18:20:20Z", "stargazers_count": 4, "topics": ["aimp", "internet-of-things", "iot", "iot-automation", "raspberry-pi", "remote-control"], "last_fetched": 1695554197.550315, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "127251446": {"repository_manifest": {"name": "Afvalwijzer", "render_readme": true, "country": "NL", "homeassistant": "0.118.0"}, "full_name": "xirixiz/homeassistant-afvalwijzer", "authors": ["@xirixiz"], "category": "integration", "description": "Provides sensors for some Dutch waste collectors", "domain": "afvalwijzer", "etag_repository": "W/\"ad3db2c091f6bf132fa1649749062da0a267a516cb07dba9098729048cf9f0c2\"", "last_updated": "2023-06-26T05:41:25Z", "stargazers_count": 144, "topics": ["afvalwijzer", "trash"], "last_fetched": 1695554197.684431, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "547177218": {"repository_manifest": {"name": "cFos Powerbrain", "render_readme": true}, "full_name": "mb-software/homeassistant-powerbrain", "authors": ["@mb-software"], "category": "integration", "description": "Custom Component for Homeassistant to integrate cFos Powerbrain devices", "domain": "powerbrain", "etag_repository": "W/\"9938cb8309a70e800c04dd896c652e0fd0c352bcc020fe9703148cf7561d32d0\"", "last_updated": "2023-09-18T03:26:05Z", "stargazers_count": 9, "topics": ["cfos", "evse", "homeassistant-custom-component", "powerbrain", "wallbox"], "last_fetched": 1695554119.859867, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299556199": {"repository_manifest": {"name": "Mercedes Me API", "homeassistant": "2022.11.0"}, "full_name": "xraver/mercedes_me_api", "authors": ["@xraver"], "category": "integration", "description": "Script to use Mercedes Me APIs.", "domain": "mercedesmeapi", "etag_repository": "W/\"2a2bddceb009703436b495a4d42b667e601d3de1a21924a6b351562953c95062\"", "last_updated": "2023-02-26T13:39:29Z", "stargazers_count": 48, "topics": ["mercedes", "mercedes-benz-car"], "last_fetched": 1695554197.73746, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "516625225": {"repository_manifest": {"name": "Sutro", "hacs": "1.6.0", "homeassistant": "0.118.0", "render_readme": true}, "full_name": "ydogandjiev/hass-sutro", "authors": ["@ydogandjiev"], "category": "integration", "description": "This component integrates Home Assistant with Sutro (https://mysutro.com/), a device that enables automated remote monitoring of the temperature as well as the chlorine/bromine, pH, and alkalinity levels.", "domain": "sutro", "etag_repository": "W/\"870522eba0d8064f95b0474dbd2e68fc28b6a9ead4dae541e90afb0ce32da44b\"", "last_updated": "2023-07-20T16:04:19Z", "stargazers_count": 8, "topics": ["sutro"], "last_fetched": 1695554198.807243, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "572284948": {"repository_manifest": {"name": "Carelink Integration", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "yo-han/Home-Assistant-Carelink", "authors": ["@yo-han"], "category": "integration", "description": "Unofficial Home Assistant Carelink Component", "domain": "carelink", "etag_repository": "W/\"6ea2575d984423ef80132d7cb43c76a45a65d5b36cd2b0a725a43f3808023db0\"", "last_updated": "2023-08-24T08:14:26Z", "stargazers_count": 14, "topics": ["carelink", "diabetic", "hassio-integration", "medtronic"], "last_fetched": 1695554199.158368, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582955421": {"repository_manifest": {"name": "SmartEVSE", "render_readme": true}, "full_name": "dingo35/ha-SmartEVSEv3", "authors": ["@dingo35"], "category": "integration", "description": "Integrate SmartEVSEv3 with HomeAssistant through custom component ", "domain": "smartevse", "etag_repository": "W/\"5a8bfd3a684a2ec017a07d38fe6ba70d049fea145a15905f2427d85b93596cc0\"", "last_updated": "2023-07-26T12:38:46Z", "stargazers_count": 8, "topics": ["evse"], "last_fetched": 1695553625.126973, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319744131": {"repository_manifest": {"name": "TapHome", "render_readme": true, "homeassistant": "2022.12.0", "content_in_root": true}, "full_name": "martindybal/taphome-homeassistant", "authors": ["@martindybal"], "category": "integration", "description": "TapHome integration into Home Assistant.", "domain": "taphome", "etag_repository": "W/\"8261b1bad7486e46a31db8c53d2cde0dac00860174356946840ca6231c016592\"", "last_updated": "2023-07-19T09:54:21Z", "stargazers_count": 8, "topics": ["taphome"], "last_fetched": 1695554118.873162, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261031401": {"repository_manifest": {"name": "couchpotato", "render_readme": true, "country": "FR"}, "full_name": "youdroid/home-assistant-couchpotato", "authors": ["@youdroid"], "category": "integration", "description": "\ud83c\udfa5 CouchPotato component to feed Upcoming Media Card.", "domain": "couchpotato", "etag_repository": "W/\"81c3f35d6fcf1cf3726fb974fa67b244570d77bf3bb6c0b4638c082e994e5e1b\"", "last_updated": "2022-06-01T18:11:07Z", "stargazers_count": 5, "topics": ["couchpotato"], "last_fetched": 1695554199.16944, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216181396": {"repository_manifest": {"name": "Teal Theme"}, "full_name": "home-assistant-community-themes/teal", "category": "theme", "description": "Teal theme for Home Assistant", "etag_repository": "W/\"3cdde7663b29241834717574a78df233034d4006847e8932401872c7d0d591f4\"", "last_updated": "2023-04-03T14:07:08Z", "stargazers_count": 1, "last_fetched": 1695553500.364503, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262645913": {"repository_manifest": {"name": "gitea", "render_readme": true, "country": "FR"}, "full_name": "youdroid/home-assistant-gitea", "authors": ["@youdroid"], "category": "integration", "description": "\ud83c\udf75 Gitea component to follow your repositories", "domain": "gitea", "etag_repository": "W/\"5eb46bd0318c90725bcb02f88f045799be82992f306245f3c34d3d71c7d6478b\"", "last_updated": "2022-04-24T20:15:46Z", "stargazers_count": 9, "topics": ["gitea", "homeassistant-custom-component", "pyhton"], "last_fetched": 1695554199.069985, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "453785158": {"repository_manifest": {"name": "gogs", "render_readme": true, "country": "FR"}, "full_name": "youdroid/home-assistant-gogs", "authors": ["@youdroid"], "category": "integration", "description": "Gogs component to follow your repositories", "domain": "gogs", "etag_repository": "W/\"419024698ab74456278faf193feb02a80aff9aae345126bfc4bf0f3d179c46b3\"", "last_updated": "2022-04-24T20:35:04Z", "stargazers_count": 1, "topics": ["gogs", "home-assistant-component"], "last_fetched": 1695554199.187619, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261614146": {"repository_manifest": {"name": "SickChill", "render_readme": true, "country": "FR"}, "full_name": "youdroid/home-assistant-sickchill", "authors": ["@youdroid"], "category": "integration", "description": "\ud83c\udfa5 SickChill component to feed Upcoming Media Card.", "domain": "sickchill", "etag_repository": "W/\"0fac6026f3d268b1bf09e37446cb8e59c201583c79d3bda47fe6cb792212bb5b\"", "last_updated": "2022-06-01T18:12:09Z", "stargazers_count": 3, "topics": ["sickchill"], "last_fetched": 1695554199.361648, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448980525": {"repository_manifest": {"name": "\ud83e\uddf0 ZHA Toolkit - Service for advanced Zigbee Usage", "zip_release": true, "render_readme": true, "persistent_directory": "local", "homeassistant": "2021.1"}, "full_name": "mdeweerd/zha-toolkit", "authors": ["@mdeweerd"], "category": "integration", "description": "\ud83e\uddf0 Zigbee Home Assistant Toolkit - service for \"rare\" Zigbee operations using ZHA on Home Assistant", "domain": "zha_toolkit", "downloads": 2332, "etag_repository": "W/\"74a4338ce22d7cf3825755abf08642bff82f37ce7aa08c959920b1343c8f1c39\"", "last_updated": "2023-09-20T21:58:46Z", "stargazers_count": 94, "topics": ["home-assistant-component", "zha", "zigbee", "zigpy"], "last_fetched": 1695554121.607851, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441369133": {"repository_manifest": {"name": "SmartRent", "render_readme": true, "zip_release": true, "filename": "smartrent.zip"}, "full_name": "ZacheryThomas/homeassistant-smartrent", "authors": ["@zacherythomas"], "category": "integration", "description": "Home Assistant Custom Component for SmartRent Locks \ud83d\udd10, Thermostats \ud83c\udf21, Sensors \ud83d\udca7 and Switches\ud83d\udca1", "domain": "smartrent", "downloads": 193, "etag_repository": "W/\"67bf43b68c75daab44046e6aebda34a05800f32ee6cd16fa5ec6a2750c6f9bee\"", "last_updated": "2023-07-30T20:53:55Z", "stargazers_count": 50, "topics": ["smartrent"], "last_fetched": 1695554199.554216, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246939713": {"repository_manifest": {"name": "Wasteplan TRV", "country": "NO", "render_readme": true}, "full_name": "jonkristian/wasteplan_trv", "authors": ["@jonkristian"], "category": "integration", "description": "Home Assistant component for Trondheim renholdsverk pickups.", "domain": "wasteplan_trv", "etag_repository": "W/\"e3090d5de372390fcf920933762b22c6a7bb968618fe5439b75d4c85d68a588f\"", "last_updated": "2023-06-26T10:39:35Z", "stargazers_count": 13, "topics": ["trondheim", "trv", "waste-management"], "last_fetched": 1695554094.551719, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "471478227": {"repository_manifest": {"name": "ChargePoint", "render_readme": true}, "full_name": "mbillow/ha-chargepoint", "authors": ["@mbillow"], "category": "integration", "description": "Home Assistant ChargePoint EV Charger Integration", "domain": "chargepoint", "etag_repository": "W/\"2fbbef3ca99fa05f55c7479315d8be90869c9f561085ebb5bdf42acd6e0c20d3\"", "last_updated": "2023-08-22T00:27:40Z", "stargazers_count": 25, "topics": ["chargepoint", "hassio-integration"], "last_fetched": 1695554120.82021, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202987887": {"repository_manifest": {"name": "Node-RED Companion", "homeassistant": "2023.7.0"}, "full_name": "zachowj/hass-node-red", "authors": ["@zachowj"], "category": "integration", "description": "Companion Component for node-red-contrib-home-assistant-websocket to help integrate Node-RED with Home Assistant Core", "domain": "nodered", "etag_repository": "W/\"8c8b931cbca530eb58c71aec6e2abf48a14565a27121aa6b5025cd45d76a0138\"", "last_updated": "2023-09-08T04:54:44Z", "stargazers_count": 363, "topics": ["node-red"], "last_fetched": 1695554199.949502, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "504081359": {"repository_manifest": {"name": "Sonic", "homeassistant": "2022.6.0", "render_readme": true}, "full_name": "markvader/sonic", "authors": ["@markvader"], "category": "integration", "description": "Sonic water shutoff valve Home Assistant integration by @markvader", "domain": "sonic", "etag_repository": "W/\"b71eb12989c6fca135303234f77707cbae6855b819434f306e645d448d88e762\"", "last_updated": "2023-09-04T14:56:00Z", "stargazers_count": 9, "topics": ["hero-labs", "herolabs", "leaks", "sonic", "water"], "last_fetched": 1695554118.614249, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "641757757": {"repository_manifest": {"name": "Energy meter", "render_readme": true, "zip_release": true, "filename": "energy_meter.zip"}, "full_name": "zeronounours/HA-custom-component-energy-meter", "authors": ["@zeronounours"], "category": "integration", "description": "Provides extended features on top of utility-meter to track costs for each tariff as well as total costs", "domain": "energy_meter", "downloads": 1799, "etag_repository": "W/\"115ffc7afd3d43246b8394c7362a1b447b2717117eefcbc4d8d208f8082a57e8\"", "last_updated": "2023-09-18T15:25:24Z", "stargazers_count": 5, "topics": ["energy"], "last_fetched": 1695554199.841096, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "305147191": {"repository_manifest": {"name": "CEZ Distribuce CZ", "country": "CZ", "homeassistant": "0.110.0"}, "full_name": "zigul/HomeAssistant-CEZdistribuce", "authors": ["@zigul"], "category": "integration", "description": "CEZ Distribuce - Home Assistant Sensor", "domain": "cezdistribuce", "etag_repository": "W/\"5459374246cf2ba315558211b54961ff93bce98c68d21aef69254bea263bed4e\"", "last_updated": "2023-02-17T15:40:03Z", "stargazers_count": 22, "topics": ["cez"], "last_fetched": 1695554200.311714, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234032927": {"repository_manifest": {"name": "Google Light Theme", "render_readme": true}, "full_name": "JuanMTech/google_light_theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the Google app light mode.", "etag_repository": "W/\"cd81e97971764fad82c8f9a8fcdc7afce0292a181115ef49c76a9d2fd55a6353\"", "last_updated": "2023-01-12T22:52:07Z", "stargazers_count": 56, "topics": ["assistant-theme"], "last_fetched": 1695553501.063765, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544550612": {"repository_manifest": {"name": "W1000 energy monitor", "render_readme": true, "country": ["HU"]}, "full_name": "ZsBT/hass-w1000-portal", "authors": ["@ZsBT"], "category": "integration", "description": "Home Assistant custom component for W1000 energy portal (e.g. https://energia.eon-hungaria.hu/ ) ", "domain": "w1000-energy-monitor", "etag_repository": "W/\"5f3e27b864386a23907de9be4297de15279d268f9c610a8168d3b775735edacb\"", "last_updated": "2023-01-27T00:31:08Z", "stargazers_count": 30, "topics": ["energy", "eon", "home-assistant-component", "w1000"], "last_fetched": 1695554200.862509, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "632590573": {"repository_manifest": {"name": "pollenprognos-card", "content_in_root": true, "filename": "pollenprognos-card.js", "country": ["SE"], "render_readme": true}, "full_name": "krissen/pollenprognos-card", "category": "plugin", "description": "A custom Lovelace card to display pollen information", "etag_repository": "W/\"b52fc87236da227f76e8f656fbac155826a68b0bfb1cbe1049c373b67f9244c8\"", "last_updated": "2023-05-09T17:42:14Z", "stargazers_count": 6, "topics": ["lovelace-card", "lovelace-custom-card", "pollen", "pollenprognos"], "last_fetched": 1695553543.257727, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "306914292": {"repository_manifest": {"name": "Transparent Blue", "render_readme": "true"}, "full_name": "JOHLC/transparentblue", "category": "theme", "description": "A transparent blue theme for Home Assistant", "etag_repository": "W/\"df7cb95c4030a404dc8a11f9a0262e57b8c49bc8813fb4441c9cf7c890adae23\"", "last_updated": "2023-02-26T20:34:39Z", "stargazers_count": 24, "topics": ["homeassistant-addons", "transparent-blue-theme", "transparentblue", "yaml"], "last_fetched": 1695553500.59249, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "543068603": {"repository_manifest": {"name": "Philips TV Remote", "content_in_root": true, "filename": "philips-tv-remote.js", "render_readme": true}, "full_name": "abualy/philips-tv-remote-card", "category": "plugin", "description": "philips tv remote card for for home assistant ", "etag_repository": "W/\"84f47bd46b6a798e1feaac958c9f111565316b091bfa20b0daee6df28641c28f\"", "last_updated": "2023-02-27T22:46:21Z", "stargazers_count": 9, "topics": ["hacs-custom", "philips", "remote", "remote-control"], "last_fetched": 1695553508.994523, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "506738088": {"repository_manifest": {"name": "Sodexo Card", "country": "PT", "render_readme": true}, "full_name": "netsoft-ruidias/ha-custom-component-sodexo", "authors": ["@netsoft-ruidias"], "category": "integration", "description": "Sodexo - Custom Component for Home Assistant", "domain": "sodexo", "etag_repository": "W/\"4c8c44ef3e8c697860a4b88c60e91e4a3be3379fdfd200d2b42250988d213d7b\"", "last_updated": "2023-05-08T11:26:16Z", "stargazers_count": 4, "topics": ["meal-card", "sodexo"], "last_fetched": 1695554132.914313, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "342944383": {"repository_manifest": {"name": "Neerslag Card", "render_readme": true, "country": ["NL", "BE"], "filename": "neerslag-card.js"}, "full_name": "aex351/home-assistant-neerslag-card", "category": "plugin", "description": "Display Buienalarm and/or Buienradar data in a graph for Home Assistant.", "etag_repository": "W/\"1f8b701406baa86d38cb55fc05bf5de197b3bd663068e88fc706f547cf432e3e\"", "last_updated": "2023-08-23T14:38:02Z", "stargazers_count": 23, "last_fetched": 1695553510.086109, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234022648": {"repository_manifest": {"name": "Google Dark Theme", "render_readme": true}, "full_name": "JuanMTech/google_dark_theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the Google app dark mode.", "etag_repository": "W/\"edd7d1cc136a62038a88229232687703ec92075c8495f9bc23aaf907d8716fac\"", "last_updated": "2023-01-12T22:47:14Z", "stargazers_count": 140, "last_fetched": 1695553500.637258, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "361776538": {"repository_manifest": {"name": "Your HA Digital Twin floor3d-card", "render_readme": true}, "full_name": "adizanni/floor3d-card", "category": "plugin", "description": "Your Home Digital Twin: aka floor3d-card. Visualize Home Assistant state and perform actions using objects in a 3D home model based on Three.js.", "downloads": 3529, "etag_repository": "W/\"9765292342aecf848e81468c7b4abd7687f9456a781194dff04ca14528c4e66e\"", "last_updated": "2023-04-10T21:30:29Z", "stargazers_count": 344, "topics": ["3d-models", "card", "entity-bindings"], "last_fetched": 1695553510.379132, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "405007807": {"repository_manifest": {"name": "FoxESS Cloud"}, "full_name": "macxq/foxess-ha", "authors": ["@macxq", "@r-amado"], "category": "integration", "description": "Home Assistant & FoxESS integration. Monitor you photovoltaic installation directly from HA \u2600\ufe0f \u26a1\ufe0f ", "domain": "foxess", "etag_repository": "W/\"1a0c6acb4a8cf6c0382c0061b0ac5377c1a0e23d509da61c8a1b72a233083d3b\"", "last_updated": "2023-08-15T06:43:08Z", "stargazers_count": 76, "topics": ["energy-monitor", "foxess", "photovoltaics", "pv"], "last_fetched": 1695554115.15447, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443651710": {"repository_manifest": {"name": "Midnight Teal", "render_readme": true}, "full_name": "Neekster/MidnightTeal", "category": "theme", "description": "A dark teal theme for HomeAssistant.", "etag_repository": "W/\"5be3f6b095cf887296da67fa2299df6904b8a6f5ce41cb75c5ab0130c12fd2e0\"", "last_updated": "2022-03-11T20:50:36Z", "stargazers_count": 1, "topics": ["dark-theme"], "last_fetched": 1695553504.185225, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "456201687": {"repository_manifest": {"name": "Mushroom Themes", "homeassistant": "2022.11.0b0", "render_readme": true}, "full_name": "piitaya/lovelace-mushroom-themes", "category": "theme", "description": "Additional themes for Lovelace Mushroom Cards \ud83c\udf44", "etag_repository": "W/\"606a7e316c3e7db74b33f2d11c9c22de3fece500601008a0ab39abfa9622c756\"", "last_updated": "2022-11-03T11:39:08Z", "stargazers_count": 170, "topics": ["mushroom"], "last_fetched": 1695553504.362895, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "263179176": {"repository_manifest": {"name": "Smart Irrigation", "render_readme": true}, "full_name": "jeroenterheerdt/HAsmartirrigation", "authors": ["@jeroenterheerdt"], "category": "integration", "description": "Smart Irrigation custom component for Home Assistant", "domain": "smart_irrigation", "etag_repository": "W/\"b6d179e58ec8f0af5de4ef9e1fd0ec3cda7f2c733b4874fbd4f594453b2f1169\"", "last_updated": "2023-09-24T08:02:00Z", "stargazers_count": 249, "topics": ["crop", "evaporation", "evapotranspiration", "flow", "grass", "irrigation", "lawn", "openweathermap", "rain", "snow", "sprinkler", "sprinklers", "water", "watering"], "last_fetched": 1695553675.45317, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "461936688": {"repository_manifest": {"name": "Whatsapp Theme", "render_readme": true}, "full_name": "robinwittebol/whatsapp-theme", "category": "theme", "description": "Home Assistant theme based on Whatsapp's colors", "etag_repository": "W/\"91863015da740bf7611a8b4ced8c5eb2652df7fc1186ad4cd5fcac56882631ac\"", "last_updated": "2022-07-17T12:43:07Z", "stargazers_count": 7, "topics": ["darkmode", "green", "lightmode", "whatsapp", "whatsapptheme"], "last_fetched": 1695553504.550407, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "210194956": {"repository_manifest": {"name": "Car Wash", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-car_wash", "authors": ["@Limych"], "category": "integration", "description": "Car Wash Binary Sensor for Home Assistant", "domain": "car_wash", "downloads": 24, "etag_repository": "W/\"091d4f9afcbd802065a31117007355a3cee1131418f35e5dc6c99edceff7a38b\"", "last_updated": "2023-03-26T00:33:13Z", "stargazers_count": 74, "topics": ["binary-sensor", "car", "car-wash", "wash", "weather-forecast"], "last_fetched": 1695554110.248602, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233445397": {"repository_manifest": {"name": "Sundown Theme"}, "full_name": "am80l/sundown", "category": "theme", "description": "Custom theme for home assistant", "etag_repository": "W/\"48528ae9c5de30c31aaa323e6a596021c5b4e495e9c82f8ff5bd62069deab158\"", "last_updated": "2020-07-29T01:28:19Z", "stargazers_count": 3, "last_fetched": 1695553492.802518, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "390073284": {"repository_manifest": {"name": "Sonos Cloud", "country": "US", "homeassistant": "2022.8.0", "render_readme": true}, "full_name": "jjlawren/sonos_cloud", "authors": ["@jjlawren"], "category": "integration", "description": "Sonos cloud API integration for Home Assistant with improved TTS/alerts handling", "domain": "sonos_cloud", "etag_repository": "W/\"24a8a1848a8cb75c75f4c3fa9e2e99aad1273157057036cc4378c51ead3309ee\"", "last_updated": "2023-02-23T04:27:28Z", "stargazers_count": 98, "topics": ["sonos"], "last_fetched": 1695553680.164287, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "277068969": {"repository_manifest": {"name": "Caule Themes Pack 1 - by caule.studio", "filename": "caule-themes-pack-1.yaml"}, "full_name": "orickcorreia/caule-themes-pack-1", "category": "theme", "description": "10 modern colors | 4 categories of styles (Black Glass, Black, Dark, Light) | 40 themes in total | Animated icons for the weather forecast card | And a bonus automatic theme selector for your interface.", "etag_repository": "W/\"f7cd5a0734d4ed2ba67df7df77dc97a7ffc3a2d70059d4ff618f06ef6c0735e3\"", "last_updated": "2023-08-21T06:11:40Z", "stargazers_count": 217, "topics": ["caule", "pack"], "last_fetched": 1695553504.163586, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "339464185": {"repository_manifest": {"name": "Weishaupt WEM Portal"}, "full_name": "erikkastelec/hass-WEM-Portal", "authors": ["@erikkastelec"], "category": "integration", "description": "Custom component for retrieving sensor information from Weishaupt WEM Portal", "domain": "wemportal", "etag_repository": "W/\"73fdf7f43eaa685aae467b991e306a24a570e6ec6040d644829bb19d0173df09\"", "last_updated": "2023-06-01T08:39:06Z", "stargazers_count": 34, "topics": ["weishaupt", "wem-portal"], "last_fetched": 1695553636.573288, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "249722008": {"repository_manifest": {"name": "Your Name.", "render_readme": true}, "full_name": "Nihvel/your_name", "category": "theme", "description": "Home Assistant theme - A dark, electric blue theme that reminds the movie Your Name. ", "etag_repository": "W/\"01aebdb1e6212fbfc2d49fa3fe3de92cf6fd5bba92db29ae3cb2c177efc390b8\"", "last_updated": "2022-04-29T23:58:08Z", "stargazers_count": 21, "last_fetched": 1695553504.114547, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193372044": {"repository_manifest": {"name": "Xiaomi Vacuum Map Card", "render_readme": true, "filename": "xiaomi-vacuum-map-card.js"}, "full_name": "PiotrMachowski/lovelace-xiaomi-vacuum-map-card", "category": "plugin", "description": "This card provides a user-friendly way to fully control map-based vacuums in Home Assistant. Supported brands include Xiaomi (Roborock/Viomi/Dreame/Roidmi/Valetudo/Valetudo RE), Neato, Wyze, Roomba, Ecovacs (and probably more).", "downloads": 30766, "etag_repository": "W/\"dd26fa77f5323703bbfbed6e443d0e05077a73e721d122e6930515fa2ad2dd71\"", "last_updated": "2023-09-14T19:35:00Z", "stargazers_count": 1174, "topics": ["deebot", "ecovacs", "lovelace-card", "myneato", "neato", "roborock", "roomba", "roomba980", "vacuum", "valetudo", "valetudo-re", "wyze", "xiaomi", "xiaomi-vacuum"], "last_fetched": 1695553555.050168, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458817847": {"repository_manifest": {"name": "Material 3 Dark & Light Theme 04: Magenta", "filename": "m3-04-magenta.yaml", "render_readme": "true"}, "full_name": "AmoebeLabs/HA-Theme_M3-04-Magenta", "category": "theme", "description": "Material Design 3 / Material YOU theme for Home Assistant", "etag_repository": "W/\"2c35f687605625bc05bdd9d96c19b9df89df417cabc2d4b389a7ce792598536d\"", "last_updated": "2022-06-15T07:59:38Z", "topics": ["dark-mode", "home-assistant-theme", "light-mode", "material-3"], "last_fetched": 1695553492.790103, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "522634019": {"repository_manifest": {"name": "Clock Weather Card", "render_readme": true, "filename": "clock-weather-card.js"}, "full_name": "pkissling/clock-weather-card", "category": "plugin", "description": "A Home Assistant Card indicating today's date/time, along with an iOS inspired weather forecast for the next days with animated icons", "downloads": 13965, "etag_repository": "W/\"e0e156e6b798675da275780f7a42ac025bc83da326dafd250ce631f6a4071fc3\"", "last_updated": "2023-08-16T13:24:10Z", "stargazers_count": 154, "topics": ["animated", "animation", "bar", "clock", "date", "forecast", "gradient", "icons", "ios", "time", "weather"], "last_fetched": 1695553555.397804, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "423082071": {"repository_manifest": {"name": "Flipdown Timer Card", "render_readme": true, "filename": "flipdown-timer-card.js"}, "full_name": "pmongloid/flipdown-timer-card", "category": "plugin", "description": "Flipdown Timer Card for Home Assistant Lovelace", "downloads": 5577, "etag_repository": "W/\"04ed1ebbc473c2ccaafc6cf50d6508d49e2622a46c536e6bd416622e27b0d106\"", "last_updated": "2022-11-18T16:12:38Z", "stargazers_count": 57, "topics": ["timer"], "last_fetched": 1695553555.487718, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "140907992": {"repository_manifest": {"name": "Goldair WiFi climate devices", "render_readme": true, "hide_default_branch": true, "country": ["NZ", "AU"], "homeassistant": "0.96.0", "zip_release": true, "filename": "homeassistant-goldair-climate.zip"}, "full_name": "nicole-ashley/homeassistant-goldair-climate", "authors": ["@nikrolls"], "category": "integration", "description": "Home Assistant integration for Goldair WiFi heaters, dehumidifiers and fans", "domain": "goldair_climate", "downloads": 998, "etag_repository": "W/\"69685d5e94889bc1b98489c9198e55f10b5d6e2fe55b4801bd8490c3fb0d31bf\"", "last_updated": "2022-05-17T04:15:51Z", "stargazers_count": 17, "topics": ["dehumidifier", "fan", "goldair", "heater", "wifi"], "last_fetched": 1695554134.693473, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "599334003": {"repository_manifest": {"name": "simple-weather-clock", "render_readme": true}, "full_name": "pkscout/simple-weather-clock", "category": "plugin", "description": "A card for Home Assistant designed to display a digital clock with six slots below for various numeric environmental sensor data.", "etag_repository": "W/\"91e99d6bbe0b82d0758e13cadc0d2b663dad88de160694c38997c73b40c28c44\"", "last_updated": "2023-06-03T21:45:55Z", "stargazers_count": 2, "topics": ["clock", "weather"], "last_fetched": 1695553555.102687, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "204192861": {"repository_manifest": {"name": "Average Sensor", "hacs": "1.6.0", "homeassistant": "2022.7.0"}, "full_name": "Limych/ha-average", "authors": ["@Limych"], "category": "integration", "description": "Average Sensor for Home Assistant", "domain": "average", "downloads": 299, "etag_repository": "W/\"40247fc90882a749d6e94cc9bbeecb5383ff4d4f1ba996628a629559d6310997\"", "last_updated": "2023-09-23T14:23:09Z", "stargazers_count": 252, "topics": ["average", "home-assistant-component"], "last_fetched": 1695554110.347692, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "287840715": {"repository_manifest": {"name": "OZW Network Visualization Card", "content_in_root": true, "filename": "ozw-network-visualization-card.js", "homeassistant": "0.115.0", "render_readme": true}, "full_name": "abmantis/ozw-network-visualization-card", "category": "plugin", "description": "Lovelace custom card for visualizing the ZWave network with the OpenZWave (beta) integration.", "etag_repository": "W/\"6577088e8df24ff6819ac50dd70ad8e3b330da951767b8506914372cc4225cd2\"", "last_updated": "2022-06-05T22:24:45Z", "stargazers_count": 30, "topics": ["ozw", "zwave", "zwave2mqtt"], "last_fetched": 1695553508.674621, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193408399": {"repository_manifest": {}, "full_name": "PiotrMachowski/lovelace-html-card", "category": "plugin", "description": "This card displays provided data as an HTML content of a card.", "etag_repository": "W/\"f962f7a9d68e4d30b5ea3282428aed900c100142ee743dfe39aadf25c13d5687\"", "last_updated": "2023-07-20T20:13:11Z", "stargazers_count": 37, "topics": ["lovelace-card"], "last_fetched": 1695553554.459827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197759180": {"repository_manifest": {}, "full_name": "postlund/search-card", "category": "plugin", "description": "Quickly search for entities from a Lovelace card.", "etag_repository": "W/\"b3754253249fe59497692da71186d5e7c3cd3ceba662cf9a5d65683992e6a4df\"", "last_updated": "2022-10-07T18:53:17Z", "stargazers_count": 90, "last_fetched": 1695553555.191926, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "539629703": {"repository_manifest": {"name": "MeteoGalicia", "country": "ES", "zip_release": true, "filename": "homeassistant-meteogalicia.zip"}, "full_name": "Danieldiazi/homeassistant-meteogalicia", "authors": ["@danieldiazi"], "category": "integration", "description": "A Home Assistant integration that gives you weather info from MeteoGalicia, the meteorological agency for Galicia, Spain", "domain": "meteogalicia", "downloads": 47, "etag_repository": "W/\"a2143986707e384ad94d9decab452faa20eb7a2aea1947190b12a082956832c2\"", "last_updated": "2023-09-23T13:23:02Z", "stargazers_count": 7, "topics": ["meteogalicia", "weather", "weather-forecast", "weather-station"], "last_fetched": 1695553618.446248, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237532750": {"repository_manifest": {"name": "Harmony Card", "render_readme": true, "filename": "harmony-card.js"}, "full_name": "sbryfcz/harmony-card", "category": "plugin", "description": "A Home Assistant Lovelace Care for Harmony Integration", "downloads": 5819, "etag_repository": "W/\"d27389e7eb4095f058837f0c45eaf94a19a7bbafa753f196339230ba59f77d27\"", "last_updated": "2023-09-24T01:48:57Z", "stargazers_count": 95, "last_fetched": 1695553559.559703, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "145180996": {"repository_manifest": {"name": "Feedparser", "homeassistant": "2021.4.0", "render_readme": true}, "full_name": "custom-components/feedparser", "authors": ["@iantrich", "@ogajduse"], "category": "integration", "description": "\ud83d\udcf0 RSS Feed Integration", "domain": "feedparser", "etag_repository": "W/\"d42841e6c7554c45931b7ada46651a3d1b5387766a130cdde3a973d1d224882c\"", "last_updated": "2023-09-13T21:26:35Z", "stargazers_count": 111, "topics": ["feedparser", "home-assistant-component", "rss", "rss-parser"], "last_fetched": 1695553607.31072, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199546187": {"repository_manifest": {}, "full_name": "PiotrMachowski/lovelace-google-keep-card", "category": "plugin", "description": "This is a companion card for Google Keep sensor. It displays notes downloaded by integration in a friendly way, similar to Google Keep app.", "etag_repository": "W/\"19f9961956018f9ba80eb6cbb23f79e3ba03b8dda47a1932b5c6013900d2efff\"", "last_updated": "2023-07-07T02:53:42Z", "stargazers_count": 50, "topics": ["lovelace-card"], "last_fetched": 1695553554.133682, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291157903": {"repository_manifest": {"name": "RRD Recorder", "render_readme": true}, "full_name": "dgomes/ha_rrd_recorder", "authors": ["@dgomes"], "category": "integration", "description": "RRD Custom Component for Home Assistant", "domain": "rrd_recorder", "etag_repository": "W/\"41789fe17c51703b453b98e6be0737ba30beb59724fdab3d4b847d3ac88eadcf\"", "last_updated": "2022-08-18T16:20:29Z", "stargazers_count": 10, "topics": ["home-assistant-component", "rrdtool"], "last_fetched": 1695553624.891757, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183064800": {"repository_manifest": {"name": "Email Sensor", "render_readme": true}, "full_name": "ljmerza/ha-email-sensor", "authors": ["@ljmerza"], "category": "integration", "description": "Email Sensor for collecting tracking numbers from over 40 providers.", "domain": "email", "etag_repository": "W/\"48c926ccd909af7b19b18fd62782ceaf2a428463d907041bff95afe4d716164d\"", "last_updated": "2023-07-27T17:36:02Z", "stargazers_count": 77, "last_fetched": 1695554112.779219, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "538235457": {"repository_manifest": {"name": "ZTE tracker", "render_readme": true, "country": "ES"}, "full_name": "juacas/zte_tracker", "authors": ["@juacas"], "category": "integration", "description": "Device tracker for ZTE F6640 Router in Home Assistant", "domain": "zte_tracker", "etag_repository": "W/\"f81b1fafa96ac06425d46742165ceb99fa580d92bf60956b5265e1bcd4d72e1e\"", "last_updated": "2023-08-31T07:59:31Z", "stargazers_count": 6, "topics": ["device-tracker", "router"], "last_fetched": 1695554094.848257, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "614083491": {"repository_manifest": {"name": "Horizon Card", "render_readme": true, "filename": "lovelace-horizon-card.js"}, "full_name": "rejuvenate/lovelace-horizon-card", "category": "plugin", "description": "Sun Card successor: Visualize the position of the Sun over the horizon.", "downloads": 5088, "etag_repository": "W/\"4d65107a3bd83270e4b09631c2310dc9ff2a0a0eafc19fce5702e1e1a9d304c1\"", "last_updated": "2023-08-15T23:47:23Z", "stargazers_count": 191, "topics": ["home-assistant-sun-card", "homeassistant-sun-card", "lovelace-card", "sun-card"], "last_fetched": 1695553557.3149, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236317072": {"repository_manifest": {"name": "Pie Chart Card", "content_in_root": true, "filename": "pie-chart-card.js", "render_readme": true}, "full_name": "sdelliot/pie-chart-card", "category": "plugin", "description": "Generalized Lovelace pie chart card", "etag_repository": "W/\"5f44ac221422eeb16638bd10cce9c2903696652bfdc2489f928ffcc987a12cc4\"", "last_updated": "2020-03-07T21:19:19Z", "stargazers_count": 11, "last_fetched": 1695553559.3051, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340616586": {"repository_manifest": {"name": "Narodmon Cloud Integration", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-narodmon", "authors": ["@Limych"], "category": "integration", "description": "Component to integrate Narodmon cloud into Home Assistant", "domain": "narodmon", "downloads": 54, "etag_repository": "W/\"baadb30cc4b0ee543415c99958433551b61b37d09e3f01ef7dbc2aae6f4b872a\"", "last_updated": "2023-03-09T08:57:47Z", "stargazers_count": 15, "topics": ["home-assistant-component", "narodmon", "weather"], "last_fetched": 1695554110.693264, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "594389396": {"repository_manifest": {"name": "Energy Overview Card", "render_readme": true, "filename": "energy-overview-card.js"}, "full_name": "Sese-Schneider/ha-energy-overview-card", "category": "plugin", "description": "A simple card which displays energy usage details of one or multiple entities.", "downloads": 5742, "etag_repository": "W/\"5e6111f1a46d8e012b857c3c79501213fe7093329c5a51bd59192ee680b69437\"", "last_updated": "2023-03-30T10:07:15Z", "stargazers_count": 35, "topics": ["energy", "energy-monitor", "power", "shelly-3em"], "last_fetched": 1695553559.491555, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "241706284": {"repository_manifest": {"name": "Button Text Card", "render_readme": true, "filename": "button-text-card.js"}, "full_name": "Savjee/button-text-card", "category": "plugin", "description": "Custom, \"neumorphism\" Lovelace card", "etag_repository": "W/\"1bb20da2c932664ddbac3e7e290a885c6055fa9824783070a04c03800b69e61f\"", "last_updated": "2023-04-06T05:55:03Z", "stargazers_count": 112, "topics": ["lovelace-card", "templating", "typescript"], "last_fetched": 1695553559.067606, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "218178802": {"repository_manifest": {"name": "Local Conditional card", "render_readme": true, "filename": "local-conditional-card.js"}, "full_name": "PiotrMachowski/Home-Assistant-Lovelace-Local-Conditional-card", "category": "plugin", "description": "This card can show and hide a specific card on current device while not affecting other windows. It does not require any integration to run.", "downloads": 1791, "etag_repository": "W/\"2257ef00603a9d5f2696a5143122c90adf5440cceeb2f8333fa7b5e4075f08c6\"", "last_updated": "2023-07-07T02:53:33Z", "stargazers_count": 53, "topics": ["lovelace-card"], "last_fetched": 1695553553.986945, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319346850": {"repository_manifest": {"name": "Snowtire Sensor", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-snowtire", "authors": ["@limych"], "category": "integration", "description": "Home Assistant sensor to predict if it's time to change car tires from summer to winter and vice versa.", "domain": "snowtire", "downloads": 6, "etag_repository": "W/\"eb41eef1deabbdbc54201608d70dd6efda64961632e9ee6992d4f918f8b12094\"", "last_updated": "2023-03-27T16:05:52Z", "stargazers_count": 24, "topics": ["car-winter-tires", "home-assistant-component", "tires"], "last_fetched": 1695554111.892169, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "417802358": {"repository_manifest": {"name": "TooGoodToGo", "render_readme": true}, "full_name": "Chouffy/home_assistant_tgtg", "authors": ["@chouffy", "@tjorim"], "category": "integration", "description": "TooGoodToGo items stock as sensor in Home Assistant", "domain": "tgtg", "etag_repository": "W/\"421c62a23f0053bdd63796b4e5e8113e11c6e6f053c870bc6b3a46b4473db001\"", "last_updated": "2023-09-15T07:20:57Z", "stargazers_count": 51, "topics": ["home-assistant-integration", "python3", "toogoodtogo"], "last_fetched": 1695553602.470487, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "205261230": {"repository_manifest": {"name": "HTML Jinja2 Template card", "filename": "html-template-card.js"}, "full_name": "PiotrMachowski/Home-Assistant-Lovelace-HTML-Jinja2-Template-card", "category": "plugin", "description": "This card displays provided Jinja2 template as an HTML content of a card. It uses exactly the same engine as Home Assistant in Developer tools.", "etag_repository": "W/\"1aad4cbfad87767aa7eb2f4053ef5b2114a8dd4014124fafa54d3d49f942bc9d\"", "last_updated": "2023-07-07T02:53:40Z", "stargazers_count": 47, "topics": ["jinja2", "lovelace-card"], "last_fetched": 1695553553.866811, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207110572": {"repository_manifest": {"name": "Avfallsor", "country": "NOR", "homeassistant": "0.96.0", "render_readme": true}, "full_name": "custom-components/sensor.avfallsor", "authors": ["@hellowlol"], "category": "integration", "description": "Simple sensor for avfallsor", "domain": "avfallsor", "etag_repository": "W/\"fc5cced35db2c810c7c39911d55fbc351ecc83e0fbfdaa02d3c1376b35967dd8\"", "last_updated": "2022-12-27T19:15:58Z", "stargazers_count": 8, "last_fetched": 1695553609.735268, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "536329656": {"repository_manifest": {"name": "Firemote Card", "render_readme": true, "filename": "HA-Firemote.js"}, "full_name": "PRProd/HA-Firemote", "category": "plugin", "description": "Amazon Fire TV, Fire streaming stick, Chromecast, NVIDIA Shield, and Xiaomi Mi remote control emulator for Home Assistant", "etag_repository": "W/\"be8fd2f64af0bdd2bcb2c73ff33f3bd43fcfe1635eafb3cabbc2270792684a47\"", "last_updated": "2023-09-23T20:12:46Z", "stargazers_count": 111, "topics": ["amazon-fire", "amazon-fire-cube", "amazon-fire-stick", "amazon-fire-tv", "android", "android-debug-bridge", "android-tv", "android-tv-remote", "chromecast", "chromecast-4k", "firestick4k", "nvidia", "nvidia-shield", "shield", "xiaomi", "xiaomi-mi"], "last_fetched": 1695553556.1371, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "383732864": {"repository_manifest": {"name": "Garmin Connect", "render_readme": true}, "full_name": "cyberjunky/home-assistant-garmin_connect", "authors": ["@cyberjunky"], "category": "integration", "description": "The Garmin Connect integration allows you to expose data from Garmin Connect to Home Assistant.", "domain": "garmin_connect", "etag_repository": "W/\"ecb972238dcb01a526b08efbeae06746355d0cd49f2094e57f8979f32b0abd2c\"", "last_updated": "2023-09-15T11:03:59Z", "stargazers_count": 138, "topics": ["garmin-connect", "home-assistant-component"], "last_fetched": 1695553613.006878, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "331701152": {"repository_manifest": {"name": "apexcharts-card", "render_readme": true}, "full_name": "RomRider/apexcharts-card", "category": "plugin", "description": "\ud83d\udcc8 A Lovelace card to display advanced graphs and charts based on ApexChartsJS for Home Assistant", "downloads": 59055, "etag_repository": "W/\"127fd13452d095b4b2fa9f1b812cd4d05f82740c63c1546e1060419fdb0d6037\"", "last_updated": "2023-09-07T13:36:12Z", "stargazers_count": 798, "topics": ["apexcharts", "iot"], "last_fetched": 1695553558.498092, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "465062337": {"repository_manifest": {"name": "Electrolux Care Integration (Not Official)", "hacs": "1.32.1", "homeassistant": "2023.5.3"}, "full_name": "mauro-midolo/homeassistant_electrolux_status", "authors": ["@mauro-midolo"], "category": "integration", "description": "Get the status from your Electrolux Care devices", "domain": "electrolux_status", "etag_repository": "W/\"5f74e90ccbb783e3fe4dfa0dc7f930438f46152a86139abfb8e4b78c910af9a6\"", "last_updated": "2023-09-22T11:03:52Z", "stargazers_count": 67, "topics": ["aeg", "electrolux", "home-assistant-integration"], "last_fetched": 1695554119.819442, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "175927964": {"repository_manifest": {"name": "Podcast Card", "render_readme": true}, "full_name": "iantrich/podcast-card", "category": "plugin", "description": "\ud83c\udfa7 Podcast Player Card", "downloads": 1371, "etag_repository": "W/\"9ed34161a009ef584b6c2cbc39fa6a48f02de1e1172dc69f20c8d3df8d9e15aa\"", "last_updated": "2023-07-11T01:43:27Z", "stargazers_count": 21, "last_fetched": 1695553536.011495, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "537806998": {"repository_manifest": {"name": "Overwolf Webhook"}, "full_name": "lociii/homeassistant-overwolf-status", "authors": ["@lociii"], "category": "integration", "description": "Home Assistant custom integration that handles game events from Overwolf and broadcasts them as events in Home Assistant", "domain": "overwolfstatus", "etag_repository": "W/\"4938d4cfe690127a0585c43847b6b6753e3b07cec41150e247425e74bb070dc8\"", "last_updated": "2023-03-29T18:56:17Z", "stargazers_count": 4, "topics": ["overwolf", "overwolf-hooks", "pubg"], "last_fetched": 1695554112.787835, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216008446": {"repository_manifest": {"name": "Logbook Card", "filename": "logbook-card.js"}, "full_name": "royto/logbook-card", "category": "plugin", "description": "Logbook card for Home Assistant UI Lovelace", "downloads": 2594, "etag_repository": "W/\"21ba1b88df89a2278eb7ebf601d2fc9b101445720917f0f79bbea972fe4d026b\"", "last_updated": "2023-08-23T20:17:02Z", "stargazers_count": 119, "last_fetched": 1695553558.902039, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "594007512": {"repository_manifest": {"name": "Moonraker", "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "marcolivierarsenault/moonraker-home-assistant", "authors": ["@marcolivierarsenault", "@cashew22"], "category": "integration", "description": "Home Assistant integration for Moonraker, Klipper and Mainsail", "domain": "moonraker", "etag_repository": "W/\"f581c2be9f35e6b730c27358b1fff5ac61ba5dd673050ec67f4bb8f83c3ba051\"", "last_updated": "2023-09-20T02:45:01Z", "stargazers_count": 103, "topics": ["klipper", "moonraker"], "last_fetched": 1695554117.240487, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "302122266": {"repository_manifest": {"name": "Cover Icon Element", "render_readme": true, "filename": "cover-icon-element.js"}, "full_name": "queimadus/cover-icon-element", "category": "plugin", "description": "Improved cover icon for home assistant picture element", "etag_repository": "W/\"d1adf8811ab51a84ed4ba733a055df9359a72de9de4164f5a33e5c28043113e3\"", "last_updated": "2023-08-07T18:15:04Z", "stargazers_count": 5, "topics": ["cover"], "last_fetched": 1695553555.965479, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458664750": {"repository_manifest": {"name": "Google Theme - Based on the Android light and dark interface", "render_readme": true}, "full_name": "JuanMTech/google-theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- Theme based on the Google Android light and dark mode interface", "etag_repository": "W/\"be6d46bd852cbc4247623cd58ac541b6e278763a922ace4601e9e3b818d7d421\"", "last_updated": "2023-01-13T19:49:35Z", "stargazers_count": 72, "topics": ["darkmode", "googletheme", "lightmode"], "last_fetched": 1695553500.449512, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "449218690": {"repository_manifest": {}, "full_name": "rautesamtr/thermal_comfort_icons", "category": "plugin", "description": "Thermal Comfort custom icons for Home Assistant to accompany the MDI icons", "etag_repository": "W/\"0238e4707990ffd6fc756cc1e59cb37b8096a22cbceecec2b6321799a1ef5acd\"", "last_updated": "2022-01-29T15:14:16Z", "stargazers_count": 19, "topics": ["absolute-humidity", "dew-point", "dew-point-perception", "frost-point", "frost-risk", "heat-index", "icons", "iconset", "simmer-index", "simmer-zone", "thermal-perception"], "last_fetched": 1695553557.112042, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "447474061": {"repository_manifest": {"name": "Irrigation Unlimited Card", "render_readme": true, "filename": "irrigation-unlimited-card.js"}, "full_name": "rgc99/irrigation-unlimited-card", "category": "plugin", "description": "A companion card for the Irrigation Unlimited integration", "downloads": 818, "etag_repository": "W/\"84ec1404207a131b1c3cb4e95675cccf5976c6e45fe7d6315948974b380061ae\"", "last_updated": "2023-08-07T02:00:24Z", "stargazers_count": 13, "topics": ["irrigation", "irrigation-controller", "sprinkler-controller", "watering"], "last_fetched": 1695553557.416884, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "313269367": {"repository_manifest": {"name": "kibibit Better Graph Colors", "render_readme": true, "filename": "kb-better-graph-colors.js"}, "full_name": "Kibibit/kb-better-graph-colors", "category": "plugin", "description": "Replace the history graph colors with a material design color palette.", "etag_repository": "W/\"15304f2aa88665061e191a8ce729f2b4cf9f122b8a5ebd1cab4b9398a15e55a6\"", "last_updated": "2022-06-19T17:37:46Z", "stargazers_count": 9, "topics": ["color-scheme", "graphs", "palette"], "last_fetched": 1695553541.929263, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "313270182": {"repository_manifest": {"name": "kibibit Frosted Cards", "render_readme": true, "filename": "kb-frosted-cards.js"}, "full_name": "Kibibit/kb-frosted-cards", "category": "plugin", "description": "Make Cards and Popups blur everything behind them.", "etag_repository": "W/\"8263ff09ab501abc947e9d421b2b142c093b6b6f4842cd158088d32db169c613\"", "last_updated": "2022-06-19T17:40:45Z", "stargazers_count": 9, "topics": ["effect", "frosted-glass"], "last_fetched": 1695553542.522551, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "376904517": {"repository_manifest": {"name": "Timer Bar Card", "render_readme": true, "filename": "timer-bar-card.js"}, "full_name": "rianadon/timer-bar-card", "category": "plugin", "description": "A progress bar display for Home Assistant timers", "downloads": 7656, "etag_repository": "W/\"78423f25cdb5281351356b803146c85ea0ea3af7f17def455fc30d1e946b466a\"", "last_updated": "2023-07-21T22:02:18Z", "stargazers_count": 206, "last_fetched": 1695553558.249985, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "378256174": {"repository_manifest": {"name": "OpenSprinkler Card", "render_readme": true, "filename": "opensprinkler-card.js"}, "full_name": "rianadon/opensprinkler-card", "category": "plugin", "description": "Home Assistant card for collecting OpenSprinkler status", "downloads": 2143, "etag_repository": "W/\"403d867ae0634f3ced7b358b55edb954d7ab148eed810841e1c41efeb7610dd6\"", "last_updated": "2022-11-25T09:22:58Z", "stargazers_count": 59, "topics": ["opensprinkler"], "last_fetched": 1695553557.940281, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197715418": {"repository_manifest": {}, "full_name": "RodBr/miflora-card", "category": "plugin", "description": "A Home Assistant Lovelace card to report MiFlora plant sensors based on the HA Plant Card.", "etag_repository": "W/\"fd2906e99422abead06682736df22ac95066e0b36e15f3e56fe70c46259bc77e\"", "last_updated": "2023-04-16T12:17:24Z", "stargazers_count": 21, "last_fetched": 1695553557.809264, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "420365062": {"repository_manifest": {"name": "Last Changed Element", "render_readme": true, "filename": "last-changed-element.js"}, "full_name": "queimadus/last-changed-element", "category": "plugin", "description": "Display when entity was last changed in home assistant picture element", "etag_repository": "W/\"a8f28b20e7ac1a09d7521e267d2d9fbd25a7d7a0cf22f5375ee6fd20339b89f8\"", "last_updated": "2023-08-07T18:16:25Z", "stargazers_count": 7, "last_fetched": 1695553556.023944, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256709811": {"repository_manifest": {"name": "JQ-300/200/100 Indoor Air Quality Meter", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-jq300", "authors": ["@Limych"], "category": "integration", "description": "JQ-300 Indoor Air Quality Meter Home Assistant Integration", "domain": "jq300", "downloads": 9, "etag_repository": "W/\"871fc83c5bdc1f63b8b0a44d03297337f6ba9664d6d15982b7db575d5812f63e\"", "last_updated": "2023-03-08T15:57:41Z", "stargazers_count": 44, "topics": ["air-quality", "air-quality-measurements", "air-quality-sensor", "home-assistant-component"], "last_fetched": 1695554110.593992, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "289188530": {"repository_manifest": {"name": "Tesla style solar power card", "content_in_root": true, "filename": "tesla-style-solar-power-card.js", "render_readme": true}, "full_name": "reptilex/tesla-style-solar-power-card", "category": "plugin", "description": "Home assistant power card mimicking the one tesla provides for the powerwall app.", "etag_repository": "W/\"83f90c50a59d73e9b711c3ba19baff040c0810dff723998a40cf40c35322bf3e\"", "last_updated": "2023-09-15T19:31:28Z", "stargazers_count": 184, "topics": ["battery", "card", "eletric-car", "power", "solar-energy"], "last_fetched": 1695553557.463109, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292008305": {"repository_manifest": {"name": "Steam Card", "render_readme": true, "filename": "kb-steam-card.js"}, "full_name": "Kibibit/kb-steam-card", "category": "plugin", "description": "A Home Assistant card for Steam integrations", "etag_repository": "W/\"846b6a272a3b15c3f69cea4f13ebea4eccecb5014003ad4962b6eab1a348441c\"", "last_updated": "2023-04-21T15:14:57Z", "stargazers_count": 22, "topics": ["card", "steam"], "last_fetched": 1695553542.85516, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "330454534": {"repository_manifest": {"name": "La Marzocco Config Card", "render_readme": true, "filename": "lamarzocco-config-card.js"}, "full_name": "rccoleman/lovelace-lamarzocco-config-card", "category": "plugin", "description": "Lovelace card to configure network-connected La Marzocco espresso machines", "downloads": 125, "etag_repository": "W/\"2f49893b0e76d216405e9ebeb317e631b0c4e416e9f7094ec9d5c1ed4aa1de86\"", "last_updated": "2022-11-15T05:00:39Z", "stargazers_count": 2, "topics": ["automation", "espresso", "lamarzocco", "lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553557.156144, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279157206": {"repository_manifest": {"name": "Water Heater Card", "render_readme": true, "homeassistant": "0.81.0", "filename": "water-heater-card.js"}, "full_name": "rsnodgrass/water-heater-card", "category": "plugin", "description": "Water Heater card for Home Assistant's Lovelace UI", "etag_repository": "W/\"a9267aab7aa856d0fbf0abff33f078764b690217423007546fab0aa685fe4d73\"", "last_updated": "2022-09-09T06:27:18Z", "stargazers_count": 4, "last_fetched": 1695553559.062387, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "173563704": {"repository_manifest": {}, "full_name": "custom-components/climate.programmable_thermostat", "category": "integration", "description": "Programmable thermostat that let you have a smart thermostat on budget.", "domain": "programmable_thermostat", "etag_repository": "W/\"114875d916282a17598ad9c9f2dc1dc21a065c5e146264315b98749832ceba58\"", "last_updated": "2023-08-25T10:25:15Z", "stargazers_count": 105, "last_fetched": 1695553606.782504, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228649088": {"repository_manifest": {"name": "P2000 Sensor", "country": "NL"}, "full_name": "cyberjunky/home-assistant-p2000", "authors": ["@cyberjunky"], "category": "integration", "description": ":fire_engine: This component tracks P2000 emergency events in The Netherlands.", "domain": "p2000", "etag_repository": "W/\"601c9d46b484ffc9f7356c2206eef8dfc8c7b8df6c6d12ddc1ecca19de0bafae\"", "last_updated": "2022-12-31T13:58:27Z", "stargazers_count": 50, "topics": ["emergency", "p2000"], "last_fetched": 1695553613.269647, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "578872078": {"repository_manifest": {"name": "Bouncie", "country": "US", "homeassistant": "2022.11.0"}, "full_name": "mandarons/ha-bouncie", "authors": ["@mandarons"], "category": "integration", "description": "Home Assistant custom integration for Bouncie.com - track your car stuff in Home Assistant", "domain": "bouncie", "downloads": 3, "etag_repository": "W/\"ce1a3ab3f08dbaf60358058b0f3a1f0542e9fb74f4f1a08beca52a31f436b439\"", "last_updated": "2023-08-19T22:50:22Z", "stargazers_count": 17, "topics": ["car", "car-metrics", "home-assistant-custom-component"], "last_fetched": 1695554117.07596, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262803775": {"repository_manifest": {"name": "Carbon Intensity UK", "hacs": "0.24.0", "homeassistant": "0.108.0"}, "full_name": "jscruz/sensor.carbon_intensity_uk", "authors": ["@jscruz"], "category": "integration", "description": "Carbon Intensity UK Sensor for Home Assistant", "domain": "carbon_intensity_uk", "etag_repository": "W/\"ddfc7d2a1a200f6cf177dd53e0971d9e9e0950b9abfcd423860bcc04a47972fe\"", "last_updated": "2022-07-07T21:57:10Z", "stargazers_count": 4, "topics": ["carbon", "custom-integration", "energy", "sensor-platform"], "last_fetched": 1695554094.502063, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "327695137": {"repository_manifest": {"name": "Kodi Media Sensors", "homeassistant": "2022.8.7", "render_readme": true}, "full_name": "jtbgroup/kodi-media-sensors", "authors": ["@boralyl", "@Gautier Vanderslyen"], "category": "integration", "description": "Custom component to feed multiple sensors in Home Assistan and so custom cards can be to display those sensors. This repository is a fork of https://github.com/boralyl/kodi-recently-added", "domain": "kodi_media_sensors", "etag_repository": "W/\"a1903e5f9e995e5de4f4645d1418ee75ca45dddde03fd6ca7d616f5f1d0d712c\"", "last_updated": "2023-04-30T15:03:45Z", "stargazers_count": 9, "topics": ["home-assistant-component", "homeassistant-custom-component", "kodi", "playlist", "playlists", "pyth"], "last_fetched": 1695554094.845413, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199291345": {"repository_manifest": {}, "full_name": "JurajNyiri/HomeAssistant-qBitTorrentAlternativeSpeed", "authors": ["@JurajNyiri"], "category": "integration", "description": "Adds ability to switch alternative speed in qBittorrent through Home Assistant.", "domain": "qbittorrent_alternative_speed", "etag_repository": "W/\"6dd43c7c71d6dba48ec994642936505cec11c43b001ebd9f8645b35859b1e467\"", "last_updated": "2022-07-07T10:39:14Z", "stargazers_count": 10, "last_fetched": 1695554096.614335, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "170309600": {"repository_manifest": {"name": "Atrea", "homeassistant": "2022.4.0"}, "full_name": "JurajNyiri/HomeAssistant-Atrea", "authors": ["@JurajNyiri"], "category": "integration", "description": "Custom component allowing control of Atrea ventilation units", "domain": "atrea", "etag_repository": "W/\"75a8d67dfd139c94ad9a81587978712a650d3f3d50a40a73124218df7878775e\"", "last_updated": "2023-01-21T12:42:13Z", "stargazers_count": 19, "last_fetched": 1695554096.829476, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "453890532": {"repository_manifest": {"name": "Ontario Energy Board", "render_readme": true, "country": "CA"}, "full_name": "jrfernandes/ontario_energy_board", "authors": ["@jrfernandes"], "category": "integration", "description": "Home Assistant component that installs a sensor with the current energy rate for Ontario energy companies", "domain": "ontario_energy_board", "etag_repository": "W/\"4a3ab29fffbb7418810527d30dd4f920ec35902a632746ab4c0311dfd40d3465\"", "last_updated": "2023-09-17T12:19:16Z", "stargazers_count": 27, "topics": ["canada", "electricity", "energy-prices", "hydro", "ontario"], "last_fetched": 1695554094.560908, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "625887812": {"repository_manifest": {"name": "Azure OpenAI Conversation", "filename": "azure_openai_conversation.zip", "homeassistant": "2023.4.0", "render_readme": true, "zip_release": true}, "full_name": "joselcaguilar/azure-openai-ha", "authors": ["@joselcaguilar"], "category": "integration", "description": "Azure OpenAI Conversation for Home Assistant", "domain": "azure_openai_conversation", "downloads": 758, "etag_repository": "W/\"bb5f9106b13fae13075d0c6d79e775683a7f96fe130d23d014915cdd8f0e5d54\"", "last_updated": "2023-09-18T16:58:50Z", "stargazers_count": 25, "topics": ["azure-openai", "gpt"], "last_fetched": 1695554094.565987, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "322881712": {"repository_manifest": {"name": "Honor Router 3/X3 tracker", "render_readme": "true"}, "full_name": "juacas/honor_x3", "authors": ["@juacas"], "category": "integration", "description": "Honor X3 router Device tracker for Home Assistant", "domain": "honor_x3", "etag_repository": "W/\"e52114fe48025c140a9d1726cbaa3d3aaf809ee4a4fba00eca4c1df06d4c06d3\"", "last_updated": "2021-08-24T07:44:17Z", "stargazers_count": 10, "topics": ["device-tracker", "presence-detection", "router"], "last_fetched": 1695554094.574927, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403062943": {"repository_manifest": {"name": "battery_consumption"}, "full_name": "jugla/battery_consumption", "authors": ["@jugla"], "category": "integration", "description": "Home Assistant Component to compute battery consumption", "domain": "battery_consumption", "etag_repository": "W/\"bfb450be79f7234b9d5bfa2f6f7ea465d425c389cb3ea4b696ce1f91a7d89fca\"", "last_updated": "2023-05-13T21:56:34Z", "stargazers_count": 12, "topics": ["battery", "consumption"], "last_fetched": 1695554094.802013, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "242335771": {"repository_manifest": {"name": "SVT Play", "country": ["SE"]}, "full_name": "lindell/home-assistant-svt-play", "category": "integration", "description": "Play SVT Play videos and channels via home assistant", "domain": "svt_play", "etag_repository": "W/\"a72f34466aba95e3ecb46f1e845383f2c1df440c646eed3ad77f2ffb7fe019b1\"", "last_updated": "2022-05-24T17:33:40Z", "stargazers_count": 20, "topics": ["svt", "svtplay", "sweden", "tv", "video"], "last_fetched": 1695554112.285513, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299123388": {"repository_manifest": {"name": "Magic Areas", "homeassistant": "2021.7.0"}, "full_name": "jseidl/hass-magic_areas", "authors": ["@jseidl"], "category": "integration", "description": "Areas with batteries included for Home Assistant", "domain": "magic_areas", "etag_repository": "W/\"35a1d5bee06c420ad00ba2968ea62c864f30a51ceefd5d5ab299d41d19862991\"", "last_updated": "2023-03-05T23:23:13Z", "stargazers_count": 153, "topics": ["automation"], "last_fetched": 1695554094.766639, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "300358676": {"repository_manifest": {"name": "Tapo: Cameras Control", "homeassistant": "2023.5.2"}, "full_name": "JurajNyiri/HomeAssistant-Tapo-Control", "authors": ["@JurajNyiri"], "category": "integration", "description": "Control for Tapo cameras as a Home Assistant component", "domain": "tapo_control", "etag_repository": "W/\"741eb3f8e07a99941ecb5d82b5fe791b943e467b512aa9a8312e2c53626f932d\"", "last_updated": "2023-08-21T12:19:34Z", "stargazers_count": 612, "topics": ["camera", "cameras", "homeassistant-custom-component", "ptz", "tapo"], "last_fetched": 1695554096.896495, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197950768": {"repository_manifest": {}, "full_name": "ljmerza/ha-our-groceries", "authors": ["@ljmerza"], "category": "integration", "description": "Our Groceries Integration for Home Assistant", "domain": "ourgroceries", "etag_repository": "W/\"ffbec4a30d3b18dcc33a0c5c2497e881ae12b4e9810e2b39a9f0d90159102ca3\"", "last_updated": "2023-09-19T14:58:29Z", "stargazers_count": 36, "last_fetched": 1695554112.577578, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "411736321": {"repository_manifest": {"name": "DWD Pollenflug", "render_readme": true, "homeassistant": "2023.2.0"}, "full_name": "mampfes/hacs_dwd_pollenflug", "authors": ["@mampfes"], "category": "integration", "description": "Adds pollen forecasts from DWD to Home Assistant.", "domain": "dwd_pollenflug", "etag_repository": "W/\"ea208d3a56ce97df0e442e4bb9a786936b4ad8ad6831fe73f6d01e622d965954\"", "last_updated": "2023-09-20T15:34:23Z", "stargazers_count": 42, "topics": ["dwd", "pollen", "pollenflug"], "last_fetched": 1695554116.842333, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195883127": {"repository_manifest": {}, "full_name": "Martinvdm/garbage-nissewaard-homeassistant", "authors": ["@Martinvdm", "@vloris"], "category": "integration", "description": "Garbage collection Nissewaard for Home Assistant", "domain": "nissewaard", "etag_repository": "W/\"301980ad4d758375995a30c2cbd958033b408ee0bedaf0f9e39e42e57cac9450\"", "last_updated": "2021-04-11T12:18:11Z", "last_fetched": 1695554118.672352, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "452866308": {"repository_manifest": {"name": "Tabbed Card", "render_readme": true}, "full_name": "kinghat/tabbed-card", "category": "plugin", "description": "a custom card for home assistant that utilizes tabs to segregate individual cards.", "downloads": 4664, "etag_repository": "W/\"ca373608db1d9e0e5baa2d09642a6c8ab7cdf9f8b10c72f09104d051f66bba36\"", "last_updated": "2023-09-20T20:37:40Z", "stargazers_count": 50, "topics": ["card", "hacs-custom", "home-assistant-component", "lovelace-custom-card"], "last_fetched": 1695553542.854377, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260940136": {"repository_manifest": {"name": "HA (Lovelace) Card Weather Conditions", "filename": "ha-card-weather-conditions.js"}, "full_name": "r-renato/ha-card-weather-conditions", "category": "plugin", "description": "Weather condition card (Lovelace) for Home Assistant.", "etag_repository": "W/\"55820313600d73f4271cc05ada4b9542f3753823a58ab4de131e0e90a90f321e\"", "last_updated": "2023-06-29T12:51:50Z", "stargazers_count": 171, "topics": ["card", "weather-conditions"], "last_fetched": 1695553556.437081, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215037975": {"repository_manifest": {"name": "HA (Lovelace) Card Waze Travel Time"}, "full_name": "r-renato/ha-card-waze-travel-time", "category": "plugin", "description": "Home Assistant Lovelace card for Waze Travel Time Sensor", "etag_repository": "W/\"fe3c18d6ca091854637a419cd34569dc7e936b42d1c7f64e369a73412d3d53d2\"", "last_updated": "2022-11-09T00:43:36Z", "stargazers_count": 35, "topics": ["lovelace-card"], "last_fetched": 1695553556.282121, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200035037": {"repository_manifest": {"name": "Discord Game", "homeassistant": "2022.03.0b0"}, "full_name": "LordBoos/discord_game", "category": "integration", "description": "Home Assistant custom component to get online and game status of Discord users", "domain": "discord_game", "etag_repository": "W/\"c04fb88c1197c23b1b9d052b6d4d2154d6cfb4b6a6d3f0a3b856bec8a03d957e\"", "last_updated": "2023-08-02T09:28:31Z", "stargazers_count": 47, "last_fetched": 1695554114.654377, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "344660161": {"repository_manifest": {"name": "eGauge", "hacs": "1.6.0", "homeassistant": "2021.9.0", "render_readme": true}, "full_name": "neggert/hass-egauge", "authors": ["@neggert"], "category": "integration", "description": "Home Assistant custom component for eGauge monitor", "domain": "egauge", "etag_repository": "W/\"57366e2bb5b1924caf51ae2e57fedd422fac81892a721f1700fbed6ee00127f1\"", "last_updated": "2023-05-24T06:57:35Z", "stargazers_count": 13, "last_fetched": 1695554132.355995, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334076222": {"repository_manifest": {"name": "AstroWeather", "render_readme": true}, "full_name": "mawinkler/astroweather", "authors": ["@mawinkler"], "category": "integration", "description": "Asynchronous Astro Weather Forecast for Home Assistant", "domain": "astroweather", "etag_repository": "W/\"ca61dedce80ae058577a83a06b22c07d31258461af89013447375cf3b8a8310c\"", "last_updated": "2023-09-23T06:53:45Z", "stargazers_count": 42, "topics": ["7timer", "astronomy", "forecast"], "last_fetched": 1695554119.717033, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234750356": {"repository_manifest": {"name": "iOS Light Mode Theme", "render_readme": true}, "full_name": "basnijholt/lovelace-ios-light-mode-theme", "category": "theme", "description": "\ud83c\udfe0\ud83e\udd16 Theme based on iOS Light Mode for Lovelace Home Assistant ", "etag_repository": "W/\"1a156e88708fa6ab2ddfbe272c0b7f4224d4cf9eaaf2a623f6f87844daf8a1e9\"", "last_updated": "2020-01-20T19:48:02Z", "stargazers_count": 9, "topics": ["ios", "light-mode", "lightmode"], "last_fetched": 1695553494.542608, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "173564471": {"repository_manifest": {}, "full_name": "custom-components/sensor.file_restore", "category": "integration", "description": "Improved file sensor component that let you read the whole last line content.", "domain": "file_restore", "etag_repository": "W/\"b12351bb821098b3cd7c2cac715b2dfd0126d633a78af3a3a07b1d57a84c6ff7\"", "last_updated": "2021-03-20T08:09:50Z", "stargazers_count": 11, "last_fetched": 1695553609.757661, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199306003": {"repository_manifest": {"name": "Buienalarm", "render_readme": true}, "full_name": "gieljnssns/buienalarm-sensor-homeassistant", "authors": ["@gieljnssns"], "category": "integration", "description": "Buienalarm custom_component for Home-Assistant", "domain": "buienalarm", "etag_repository": "W/\"162082137d7bba476d2e2ac55ccb92bb0f833d2540a0b911772f8664f2dfaeae\"", "last_updated": "2021-12-04T09:48:55Z", "stargazers_count": 26, "last_fetched": 1695553649.858432, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "330644825": {"repository_manifest": {"name": "Google Home", "homeassistant": "2023.2.4", "render_readme": true}, "full_name": "leikoilja/ha-google-home", "authors": ["@leikoilja", "@DurgNomis-drol", "@ArnyminerZ", "@KapJI"], "category": "integration", "description": "Home Assistant Google Home custom component ", "domain": "google_home", "etag_repository": "W/\"c4f6a69d1d378f19e129c99e922dec599515acf05bec5a965fc73f5e95c6dafe\"", "last_updated": "2023-09-20T14:30:47Z", "stargazers_count": 348, "topics": ["google-assistent", "google-home"], "last_fetched": 1695554108.134273, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255366214": {"repository_manifest": {"name": "Vintage", "render_readme": true, "filename": "themes/vintage.yaml"}, "full_name": "Banditen01/vintage_theme", "category": "theme", "description": "\ud83c\udf99\ufe0f Vintage theme original colours & style designed by @surendrananup HACS adapted by @Banditen01", "etag_repository": "W/\"3d749f2070254f3bc74fbcca1f46df9db321084ea19bd079119b0ec4a6a2d2b2\"", "last_updated": "2021-05-20T16:21:54Z", "stargazers_count": 5, "topics": ["unofficial"], "last_fetched": 1695553494.592841, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "230151505": {"repository_manifest": {"name": "Dijnet integration", "country": "HU", "render_readme": true, "zip_release": true, "filename": "homeassistant-dijnet.zip"}, "full_name": "laszlojakab/homeassistant-dijnet", "authors": ["@laszlojakab"], "category": "integration", "description": "Dijnet integration for Home Assistant", "domain": "dijnet", "downloads": 252, "etag_repository": "W/\"705062634979828efe4891145d8f20a82d1d789189943606d48fcae89c290ae2\"", "last_updated": "2023-01-03T20:18:28Z", "stargazers_count": 11, "topics": ["dijnet"], "last_fetched": 1695554107.825886, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236318024": {"repository_manifest": {"name": "iOS Themes - Dark Mode and Light Mode", "hacs": "0.21.2", "filename": "ios-themes.yaml", "render_readme": true}, "full_name": "basnijholt/lovelace-ios-themes", "category": "theme", "description": "\u2764\ufe0f\ud83d\udcf1\ud83c\udfe0\ud83e\udd16 Themes inspired by iOS Dark \u2b1b\ufe0f and Light \u25fb\ufe0f Mode for Lovelace Home Assistant with different backgrounds by @basnijholt", "etag_repository": "W/\"92f54edac372c417b3cbfe2fe7ad5fee5f133088518ad772d58475e113f0bf86\"", "last_updated": "2022-11-20T20:05:49Z", "stargazers_count": 471, "last_fetched": 1695553494.676825, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "391700886": {"repository_manifest": {"name": "aria2 integration", "homeassistant": "2021.7.4", "render_readme": true}, "full_name": "deblockt/hass-aria2", "authors": ["@deblockt"], "category": "integration", "description": "Aria2 integration for home assistant", "domain": "aria2", "etag_repository": "W/\"f98e5b9840cc13350bd7c36d748e8ff37e217b31a7a1f3bbb930e32a592c136f\"", "last_updated": "2023-09-23T14:03:10Z", "stargazers_count": 3, "topics": ["aria2", "download-manager", "downloader"], "last_fetched": 1695553620.743117, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "548554162": {"repository_manifest": {"name": "Waste Management", "render_readme": true, "country": ["CA", "US", "PR"]}, "full_name": "dcmeglio/homeassistant-waste_management", "authors": ["@dcmeglio"], "category": "integration", "description": "Determines your next Waste Management (https://www.wm.com) pickup times for use in Home Assistant.", "domain": "waste_management", "etag_repository": "W/\"708fee5857c48f7739eedca98713499725c5e600561010cae53699288e0349c6\"", "last_updated": "2023-02-27T19:35:10Z", "stargazers_count": 5, "topics": ["garbage", "recycle", "waste-management"], "last_fetched": 1695553620.595976, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "541834155": {"repository_manifest": {"name": "PetSafe", "render_readme": true}, "full_name": "dcmeglio/homeassistant-petsafe", "authors": ["@dcmeglio"], "category": "integration", "description": "Integrate PetSafe Smartfeed feeders an Scoopfree litter boxes into Home Assistant.", "domain": "petsafe", "etag_repository": "W/\"7dbdc01d6b2d9d4ab015545944ce661275fd1cdfbb4ae40dca880536e67617c2\"", "last_updated": "2023-01-29T14:46:05Z", "stargazers_count": 17, "topics": ["cats", "dogs", "feeder", "litterbox", "petsafe"], "last_fetched": 1695553620.585477, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "490422137": {"repository_manifest": {"name": "IPCamLive", "homeassistant": "2022.5.3"}, "full_name": "ddanssaert/home-assistant-ipcamlive", "authors": ["@ddanssaert"], "category": "integration", "description": "IPCamLive integration for Home Assistant", "domain": "ipcamlive", "etag_repository": "W/\"53a52e6b91b3fb7726fcaacf673b8cef4904d9e3dc73a7bf60a84a7c9daf9ecd\"", "last_updated": "2023-05-11T12:47:38Z", "stargazers_count": 2, "topics": ["ipcamera", "ipcamlive"], "last_fetched": 1695553620.541798, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "266557774": {"repository_manifest": {"name": "proscenic 790T vacuum", "homeassistant": "2021.7.4", "render_readme": true}, "full_name": "deblockt/hass-proscenic-790T-vacuum", "authors": ["@deblockt"], "category": "integration", "description": "proscenic 790T intergration for home assistant", "domain": "proscenic", "downloads": 61, "etag_repository": "W/\"2aae050f9b08a929cb9ff64a4bb2c4c7302d9a530201e9f6110a17d71075f205\"", "last_updated": "2023-09-23T14:34:25Z", "stargazers_count": 15, "topics": ["790t", "proscenic", "vacuum", "vacuum-cleaner"], "last_fetched": 1695553622.5673, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264655935": {"repository_manifest": {"name": "Entities Calendar", "homeassistant": "2022.5.0"}, "full_name": "gadgetchnnel/entities_calendar", "authors": ["@gadgetchnnel"], "category": "integration", "description": "A custom component for Home Assistant to allow regular entities to be used as a calendar", "domain": "entities_calendar", "etag_repository": "W/\"fe0b05eb74408f9deabd0a82f9b5dfee736e1c87ca7a55c9773976dff35d184b\"", "last_updated": "2023-05-29T14:52:27Z", "stargazers_count": 20, "topics": ["calendar", "entities-calendar"], "last_fetched": 1695553645.367897, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "498774862": {"repository_manifest": {"name": "Material 3 Dark & Light Theme C11: Purple", "filename": "m3-c11-purple.yaml", "render_readme": true}, "full_name": "AmoebeLabs/HA-Theme_M3-C11-Purple", "category": "theme", "description": "Material Design 3 / Material YOU theme for Home Assistant", "etag_repository": "W/\"523548bf73400df334b8afe82ae8dba4650a318a63908a9b804e84bf2009169a\"", "last_updated": "2022-06-15T07:58:53Z", "topics": ["dark-mode", "dark-theme", "home-assistant-theme", "light-mode", "light-theme", "material-3"], "last_fetched": 1695553492.754662, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "612652228": {"repository_manifest": {"name": "IMPC Energy", "render_readme": true, "zip_release": true, "filename": "impc_energy.zip"}, "full_name": "NiaoBlush/impc_energy", "authors": ["@NiaoBlush"], "category": "integration", "description": "\u901a\u8fc7\u5185\u8499\u53e4\u7535\u529b\u516c\u4f17\u53f7\u67e5\u8be2\u7535\u91cf\u7535\u8d39\u7684Home Assistant\u63d2\u4ef6", "domain": "impc_energy", "downloads": 7, "etag_repository": "W/\"8bed05e274933f5fef68a3dba174979dc4415e58822d0c311ea64f2428b233d4\"", "last_updated": "2023-04-27T09:26:46Z", "stargazers_count": 1, "topics": ["electricity-consumption"], "last_fetched": 1695554132.880238, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319608056": {"repository_manifest": {"homeassistant": "2023.7.0b0", "name": "Bodymiscale", "render_readme": true}, "full_name": "dckiller51/bodymiscale", "authors": ["@dckiller51", "@edenhaus"], "category": "integration", "description": "Custom_components Body Metrics for Xiaomi Miscale 1 and 2 (esphome or BLE monitor for Homeassistant)", "domain": "bodymiscale", "etag_repository": "W/\"f734718fbb520804c1187131d764a9188f3834f1fa2d7347e1b258a9861a6445\"", "last_updated": "2023-09-19T11:33:50Z", "stargazers_count": 154, "topics": ["ble-monitor", "esphome", "miscale", "mitemp-bt", "xiaomi"], "last_fetched": 1695553620.700498, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "317051290": {"repository_manifest": {"name": "Kan Program", "country": "IL", "render_readme": true}, "full_name": "eyalcha/kan_program", "authors": ["@eyalcha"], "category": "integration", "description": "Home assistant custom component to fetch kan program guide", "domain": "kan_program", "etag_repository": "W/\"a161c50a5988b0318834a59f8b9028a3816c80ef3b9da1570652b74e295840aa\"", "last_updated": "2022-07-14T17:31:08Z", "stargazers_count": 2, "last_fetched": 1695553638.191137, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "225248441": {"repository_manifest": {"name": "Mikrotik Router", "homeassistant": "2023.8.0", "zip_release": true, "filename": "mikrotik_router.zip"}, "full_name": "tomaae/homeassistant-mikrotik_router", "authors": ["@tomaae"], "category": "integration", "description": "Mikrotik router integration for Home Assistant", "domain": "mikrotik_router", "downloads": 1920, "etag_repository": "W/\"d4021b4ae85f22f39f06ab6355780b66643d75500b0db3ebdabd5c8ae8bf730e\"", "last_updated": "2023-09-18T07:53:34Z", "stargazers_count": 221, "topics": ["mikrotik"], "last_fetched": 1695554183.912553, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "137126619": {"repository_manifest": {"name": "Visonic Intruder Alarm - PowerMax and PowerMaster Series", "homeassistant": "2022.3.3"}, "full_name": "davesmeghead/visonic", "authors": ["@davesmeghead"], "category": "integration", "description": "Visonic Custom Component for integration with Home Assistant", "domain": "visonic", "etag_repository": "W/\"4f33e9c216ef7388453a88191ca1f1b53a73e5a6fed5dd2fdae175ce923138fc\"", "last_updated": "2023-09-15T22:13:06Z", "stargazers_count": 69, "topics": ["visonic"], "last_fetched": 1695553621.636055, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "594751789": {"repository_manifest": {"name": "Vaillant Plus", "hacs": "1.6.0", "homeassistant": "2022.11.3", "country": "CN"}, "full_name": "daxingplay/home-assistant-vaillant-plus", "authors": ["@daxingplay"], "category": "integration", "description": "Home Assistant custom component for controlling vSmart in Vaillant+ cn app.", "domain": "vaillant_plus", "etag_repository": "W/\"6eaace23bd05c261f397f6659abe16b5e867835d8805545f1b2a988f20c6b5bd\"", "last_updated": "2023-05-13T14:52:09Z", "stargazers_count": 1, "topics": ["vaillant", "vsmart"], "last_fetched": 1695553620.626652, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497924778": {"repository_manifest": {"name": "elkbledom", "render_readme": true}, "full_name": "dave-code-ruiz/elkbledom", "authors": ["@dave-code-ruiz"], "category": "integration", "description": "Home Assistant custom component for LED STRIP NAME ELK BLEDOM", "domain": "elkbledom", "etag_repository": "W/\"403c984abff425820cdaa5f9708537d949863afd6307cda1eb7fa8a3e285cf01\"", "last_updated": "2023-09-15T06:41:52Z", "stargazers_count": 39, "topics": ["hacs-custom", "led-controller", "ledstrips", "light"], "last_fetched": 1695553620.508683, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "422954081": {"repository_manifest": {"filename": "deebot.zip", "homeassistant": "2023.8.0b0", "name": "Deebot 4 Home Assistant", "render_readme": true, "zip_release": true}, "full_name": "DeebotUniverse/Deebot-4-Home-Assistant", "authors": ["@DeebotUniverse", "@edenhaus"], "category": "integration", "description": "Home Assistant integration for deebot vacuums", "domain": "deebot", "downloads": 6601, "etag_repository": "W/\"05d474e2103d4215df57b5557d025a98efbf5b9cf96329f14ea442070c259901\"", "last_updated": "2023-09-19T02:19:41Z", "stargazers_count": 143, "topics": ["deebot", "ecovacs", "vacuum"], "last_fetched": 1695553622.941044, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222422187": {"repository_manifest": {"name": "iOS Dark Mode Theme", "render_readme": true}, "full_name": "basnijholt/lovelace-ios-dark-mode-theme", "category": "theme", "description": "\ud83c\udfe0\ud83e\udd16 Theme by @basnijholt based on iOS Dark Mode for Lovelace Home Assistant ", "etag_repository": "W/\"b97720fc3dde54441ec78a73e3336469e7439eaf0d682d4decf3748cafa436c5\"", "last_updated": "2022-11-03T15:53:32Z", "stargazers_count": 424, "topics": ["dark-mode", "darkmode", "ios"], "last_fetched": 1695553494.494781, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203736221": {"repository_manifest": {"name": "Uponor Uhome integration", "render_readme": true}, "full_name": "dave-code-ruiz/uhomeuponor", "authors": ["@almirdelkic", "@dave-code-ruiz", "@LordMike"], "category": "integration", "description": "Custom Component to connect Home Assistant with Uhome Uponor Smatrix App", "domain": "uhomeuponor", "etag_repository": "W/\"35c8d48c348ff2f8de864ecd3d9e50afa5e155fa398b5c2d247a716c40e0de3f\"", "last_updated": "2022-11-24T15:02:00Z", "stargazers_count": 17, "topics": ["gateway", "rest-api", "setpoint", "smatrix", "smatrixwaveplus", "thermostat", "uponor"], "last_fetched": 1695553620.399547, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "168744428": {"repository_manifest": {"name": "Light Entity Card", "render_readme": true, "filename": "dist/light-entity-card.js"}, "full_name": "ljmerza/light-entity-card", "category": "plugin", "description": "Control any light or switch entity", "downloads": 21376, "etag_repository": "W/\"1c9e3e5b3ba08c740985edfa2473c96937a07a4dbe0aa82e8dc2ead568866aa3\"", "last_updated": "2023-06-10T01:05:50Z", "stargazers_count": 194, "last_fetched": 1695553545.038665, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534317237": {"repository_manifest": {"name": "QR-Code Generator", "render_readme": true}, "full_name": "DeerMaximum/QR-Code-Generator", "authors": ["@DeerMaximum"], "category": "integration", "description": "Custom Home Assistant integration to create a camera that displays a custom QR-Code", "domain": "qr_generator", "etag_repository": "W/\"fb00248ba299b8053b569024c8513753066b4dc0c3688b84941407de960efc68\"", "last_updated": "2023-09-18T19:36:59Z", "stargazers_count": 20, "topics": ["qrcode-generator"], "last_fetched": 1695553622.703351, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "541978646": {"repository_manifest": {"name": "Technische Alternative C.M.I.", "render_readme": true}, "full_name": "DeerMaximum/Technische-Alternative-CMI", "authors": ["@DeerMaximum"], "category": "integration", "description": "Custom Home Assistant integration to read data from a C.M.I", "domain": "ta_cmi", "etag_repository": "W/\"e794503830ae3215b66906e9cb6092b52581eb9a60caa9e22cfe794da94701b6\"", "last_updated": "2023-09-08T13:58:20Z", "stargazers_count": 18, "last_fetched": 1695553622.912889, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "163322610": {"repository_manifest": {"name": "Panasonic Comfort Cloud HA component", "homeassistant": "0.110.0"}, "full_name": "djbulsink/panasonic_ac", "authors": ["Djbulsink", "SeraphimSerapis"], "category": "integration", "description": "Panasonic Comfort Cloud HA component", "domain": "panasonic_ac", "etag_repository": "W/\"148228d0822760da99b6b8dc9b3075d200783c7f6b19293208e0872d1a632ef3\"", "last_updated": "2022-07-28T06:55:03Z", "stargazers_count": 30, "last_fetched": 1695553624.956522, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "326033921": {"repository_manifest": {"name": "Toggle Control Button Row", "filename": "toggle-control-button-row.js"}, "full_name": "finity69x2/toggle-control-button-row", "category": "plugin", "description": "A one-button control row for any Home Assistant binary entity", "etag_repository": "W/\"3f90b0e6f9c0bf2c9a9c55e487899468f13bbfdcada38e7bbc1e8243c0c6f14c\"", "last_updated": "2023-05-11T00:29:43Z", "stargazers_count": 12, "topics": ["button", "toggle"], "last_fetched": 1695553530.500835, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356725611": {"repository_manifest": {"name": "Wavin Sentio", "render_readme": true}, "full_name": "djerik/wavinsentio-ha", "authors": ["@djerik"], "category": "integration", "description": "Home Assistant component for monitoring and administration of Wavin Sentio underfloor heating system", "domain": "wavinsentio", "etag_repository": "W/\"deaa5af94d22c48e0c637fa677e66a8b41390f324008856df98c88312773d4db\"", "last_updated": "2023-06-25T21:40:58Z", "stargazers_count": 12, "topics": ["sentio", "wavin"], "last_fetched": 1695553625.014495, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "640516976": {"repository_manifest": {"name": "Energy Gauge Bundle Card", "render_readme": true, "filename": "energy-gauge-bundle-card.js"}, "full_name": "flixlix/energy-gauge-bundle-card", "category": "plugin", "description": "A collection of Gauge Cards for Home Assistant Energy Management", "downloads": 1696, "etag_repository": "W/\"bd719eb7820340661bfa11ebb3d813568d676cbcb1f9af68af4fba54586e65fd\"", "last_updated": "2023-08-11T09:09:03Z", "stargazers_count": 6, "topics": ["bundle", "card", "cards", "collection", "custom", "dashboard", "energy", "gauge", "panel"], "last_fetched": 1695553530.621143, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "308690707": {"repository_manifest": {"name": "Google WiFi", "country": "CA", "homeassistant": "0.115.0"}, "full_name": "djtimca/hagooglewifi", "authors": ["@djtimca"], "category": "integration", "description": "Home Assistant integration for Google Wifi systems.", "domain": "googlewifi", "etag_repository": "W/\"78600d4e7bffc5b6ef5f7316a18fc18b7ad43edaec9b33fb32790f13541b7f88\"", "last_updated": "2023-04-09T04:14:27Z", "stargazers_count": 66, "topics": ["google-wifi"], "last_fetched": 1695553625.403851, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "639953950": {"repository_manifest": {"name": "Energy Period Selector Plus", "render_readme": true, "filename": "energy-period-selector-plus.js"}, "full_name": "flixlix/energy-period-selector-plus", "category": "plugin", "description": "An upgraded Energy Date Selection Card for Home Assistant, with added customizability, while maintaining the Energy Dashboard's original design.", "downloads": 3106, "etag_repository": "W/\"ecb7ead8fa2b339be821df533cc65b2d3f48d59f0e1ee2b1e68a860f6f1fa621\"", "last_updated": "2023-07-31T12:59:07Z", "stargazers_count": 21, "topics": ["automation", "dashboard", "date", "datepicker", "picker", "plus", "time"], "last_fetched": 1695553530.702765, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "302145522": {"repository_manifest": {"name": "Rocket Launch Live - Next 5 Launches", "country": "CA", "homeassistant": "0.115.0"}, "full_name": "djtimca/harocketlaunchlive", "authors": ["@djtimca"], "category": "integration", "description": "Home Assistant custom HACS integration to integrate the next 5 global rocket launches from https://rocketlaunch.live", "domain": "rocketlaunchlive", "etag_repository": "W/\"d4dc1db676f40bf9067ace840387fd6bf1008f136dfad60484b57b69f11eed85\"", "last_updated": "2023-04-21T21:16:25Z", "stargazers_count": 13, "topics": ["launch", "nasa", "rocket", "spacex", "ula"], "last_fetched": 1695553626.363882, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "638230244": {"repository_manifest": {"name": "Energy Flow Card Plus", "render_readme": true, "filename": "energy-flow-card-plus.js"}, "full_name": "flixlix/energy-flow-card-plus", "category": "plugin", "description": "An upgraded Energy Distribution Card for Home Assistant, with added features like Individual Devices and refined UI enhancements, while maintaining the Energy Dashboard's original design.", "downloads": 3920, "etag_repository": "W/\"e7359ba17904635fb5694826f14b1b2d1d628217d101e4f1f7a7e24a35932623\"", "last_updated": "2023-08-11T12:04:22Z", "stargazers_count": 51, "topics": ["automation", "cards", "customization", "dashboard", "diy", "energy", "green", "renewable-energy", "renewables", "visualization"], "last_fetched": 1695553530.583766, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "314593331": {"repository_manifest": {"name": "Satellite Tracker (N2YO)", "country": "CA", "homeassistant": "0.115.0"}, "full_name": "djtimca/hasatellitetracker", "authors": ["@djtimca"], "category": "integration", "description": "Using the N2YO API, this Home Assistant integration will provide visible satellite passes (general) and to add specific satellites for monitoring.", "domain": "satellitetracker", "etag_repository": "W/\"5fc95cc31af1ce48ab440117508a8f6dba6bf3653703272a9cc3b9bec60e05d1\"", "last_updated": "2022-06-02T04:56:57Z", "stargazers_count": 13, "topics": ["international-space-station", "iss", "satellite", "satellite-tracker", "starlink", "tracking-satellites", "visible-passes"], "last_fetched": 1695553627.011084, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286860710": {"repository_manifest": {"name": "Cover Position Preset Row", "filename": "cover-position-preset-row.js"}, "full_name": "finity69x2/cover-position-preset-row", "category": "plugin", "description": "Plug-in for Home Assistant that provides an easy means to set 3 fixed positions for a programmable cover entity.", "etag_repository": "W/\"0ed0118dee9063d89c3d805f011453cf9e71b02673aa9911516bc72eb20e8b21\"", "last_updated": "2023-05-11T00:31:49Z", "stargazers_count": 18, "topics": ["cover", "lovelace-custom-card"], "last_fetched": 1695553528.781357, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "177469955": {"repository_manifest": {"name": "Mitsubishi Kumo Cloud", "render_readme": true, "homeassistant": "0.96.0"}, "full_name": "dlarrick/hass-kumo", "authors": ["@dlarrick"], "category": "integration", "description": "Home Assistant module interfacing with Mitsubishi mini-split units", "domain": "kumo", "etag_repository": "W/\"d6271052d7df514d4ee4afd6191ab770098e0fb7d24cdd132fb3306d18971738\"", "last_updated": "2023-09-03T13:02:31Z", "stargazers_count": 74, "topics": ["climate", "kumo", "kumocloud", "mini-split", "mitsubishi"], "last_fetched": 1695553627.26555, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "191663150": {"repository_manifest": {}, "full_name": "finity69x2/fan-control-entity-row", "category": "plugin", "description": "Provides a means to show a compact graphical control row for 2 or 3 speed fans in Home Assistant", "etag_repository": "W/\"9f0fdf780ff609249aeb0e0db4c9bb37943d71f29f84c49d409283b05dc3ee5f\"", "last_updated": "2022-09-12T22:09:11Z", "stargazers_count": 63, "last_fetched": 1695553528.676483, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200073618": {"repository_manifest": {}, "full_name": "dlashua/templatebinarysensor", "authors": ["@dlashua"], "category": "integration", "description": "Add template binary_sensors from the UI.", "domain": "templatebinarysensor", "etag_repository": "W/\"cf9822862c9566f253605c411c8832b4044ff01378707ee2f0ef5e50b8b2c85d\"", "last_updated": "2021-11-11T12:35:12Z", "stargazers_count": 1, "last_fetched": 1695553626.794931, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "350886220": {"repository_manifest": {"name": "Fan Mode Button Row", "filename": "fan-mode-button-row.js"}, "full_name": "finity69x2/fan-mode-button-row", "category": "plugin", "description": "Frontend plugin to control fans in Home Assistant using preset modes for speeds", "etag_repository": "W/\"9b71f7d05eeac0d2bac934501deee789a6f6cef2b352772e5d1c738cd636ac40\"", "last_updated": "2023-05-11T00:28:37Z", "stargazers_count": 11, "topics": ["fan", "preset"], "last_fetched": 1695553529.108267, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "342208616": {"repository_manifest": {"name": "Resol KM1/KM2, DL2/DL3, VBus/LAN, VBus/USB", "zip_release": true, "filename": "deltasol.zip", "render_readme": true}, "full_name": "dm82m/hass-Deltasol-KM2", "authors": ["@dm82m"], "category": "integration", "description": "Custom component for retrieving sensor information from Resol KM1/KM2, DL2/DL3, VBus/LAN, VBus/USB", "domain": "deltasol", "downloads": 147, "etag_repository": "W/\"95e4d97de4161b1d4a6b301a5347ce69b36cb8a96ed7f624199e84ef8c3836f3\"", "last_updated": "2023-09-02T15:00:25Z", "stargazers_count": 18, "topics": ["deltasol", "km2"], "last_fetched": 1695553627.163321, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "226862969": {"repository_manifest": {"name": "Light Brightness Preset Row", "filename": "light-brightness-preset-row.js"}, "full_name": "finity69x2/light-brightness-preset-row", "category": "plugin", "description": "Provides a means to program 3 preset brightness settings for dimmable lights in Home Assistant", "etag_repository": "W/\"e4a63c8f2c3e72883d93d623945c101ea58e8124da5782e5b940506ce3f9ac29\"", "last_updated": "2023-05-11T00:30:14Z", "stargazers_count": 28, "last_fetched": 1695553529.615017, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "438167239": {"repository_manifest": {"name": "LedFx", "render_readme": true, "homeassistant": "2023.3.0"}, "full_name": "dmamontov/hass-ledfx", "authors": ["@dmamontov"], "category": "integration", "description": "LedFx for Home Assistant", "domain": "ledfx", "etag_repository": "W/\"68dd884cac456d6f2b7d19970caee5a3f69803d52bb6c45504cc062696bb91bb\"", "last_updated": "2023-07-15T00:58:01Z", "stargazers_count": 33, "topics": ["audio-processing", "led-strips", "ledfx", "music-visualizer"], "last_fetched": 1695553627.205945, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "618081815": {"repository_manifest": {"name": "Power Flow Card Plus", "render_readme": true, "homeassistant": "2021.8.0"}, "full_name": "flixlix/power-flow-card-plus", "category": "plugin", "description": "A power distribution card inspired by the official Energy Distribution card for Home Assistant", "downloads": 7157, "etag_repository": "W/\"e8dd2d8a5f3addb775eb3e2a1c0b1e11b651dd5ea30ddb7b623d66a3aa258a89\"", "last_updated": "2023-09-14T00:16:36Z", "stargazers_count": 215, "topics": ["animation", "card", "cards", "custom", "energy", "flow", "plus", "power"], "last_fetched": 1695553530.912543, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "346329169": {"repository_manifest": {"name": "MiWiFi", "render_readme": true, "homeassistant": "2023.3.0"}, "full_name": "dmamontov/hass-miwifi", "authors": ["@dmamontov"], "category": "integration", "description": "MiWiFi for Home Assistant", "domain": "miwifi", "etag_repository": "W/\"0acb6b9c3daef71278ea00167e392e137ab6541e7566201c9e7b3e705dbc09b0\"", "last_updated": "2023-03-13T21:46:43Z", "stargazers_count": 138, "topics": ["mi", "miwifi", "redmi", "xiaomi"], "last_fetched": 1695553627.335186, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356655356": {"repository_manifest": {"name": "wienerlinien", "render_readme": true, "hacs": "0.19.0", "homeassistant": "2022.3.1", "country": "AT"}, "full_name": "tofuSCHNITZEL/home-assistant-wienerlinien", "authors": ["@tofuSCHNITZEL"], "category": "integration", "description": "A sensor that give you information about departures from a specified Wiener Linien stop.", "domain": "wienerlinien", "etag_repository": "W/\"24b8817d9124cf4fd6adf4d0340d175466df4ec847ed67a184bf685d1806d0a2\"", "last_updated": "2022-11-24T22:55:41Z", "stargazers_count": 17, "topics": ["wiener-linien"], "last_fetched": 1695554183.628536, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "345753205": {"repository_manifest": {"name": "Fan Percent Button Row", "filename": "fan-percent-button-row.js"}, "full_name": "finity69x2/fan-percent-button-row", "category": "plugin", "description": "Frontend plugin to control fans in Home Assistant using percent values for speeds", "etag_repository": "W/\"8ddf05314dee3b561caecfb4f54a547a9426303b57c090a758e613b409a38dd1\"", "last_updated": "2023-05-11T00:29:06Z", "stargazers_count": 27, "topics": ["assistant", "fan", "home", "percent", "speed"], "last_fetched": 1695553529.456808, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "523250759": {"repository_manifest": {"name": "Seafile", "render_readme": true, "homeassistant": "2023.3.0"}, "full_name": "dmamontov/hass-seafile", "authors": ["@dmamontov"], "category": "integration", "description": "Seafile for Home Assistant", "domain": "seafile", "etag_repository": "W/\"145b5d5acbe539bd05e7dc6770f97b31457888a75c444ec15dc634dd07894c63\"", "last_updated": "2023-03-14T09:16:03Z", "stargazers_count": 6, "topics": ["cloud", "cloud-storage", "file-sync", "files", "seafile", "storage", "sync"], "last_fetched": 1695553627.260687, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328671547": {"repository_manifest": {"name": "wattio", "homeassistant": "0.96.0", "render_readme": true}, "full_name": "dmoranf/home-assistant-wattio", "authors": ["@dmoranf"], "category": "integration", "description": "Wattio Smart Home custom integration for Home Assistant", "domain": "wattio", "etag_repository": "W/\"c4bfc0f56af39c2b52e1d1d9a76e70a6f53c81982903b544425a9d201be5774c\"", "last_updated": "2022-07-21T18:31:02Z", "stargazers_count": 7, "topics": ["home-assistant-component", "wattio"], "last_fetched": 1695553627.417054, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "521964078": {"repository_manifest": {"name": "Rewe Discounts", "render_readme": true, "country": ["DE"]}, "full_name": "FaserF/ha-rewe", "authors": ["@faserf"], "category": "integration", "description": "Rewe Discounts Homeassistant Integration", "domain": "rewe", "etag_repository": "W/\"879bca4b32168333b43c72ce9ce1e60aa9ee789b17b3e49e10acb4170988a64c\"", "last_updated": "2023-09-22T19:05:20Z", "stargazers_count": 12, "last_fetched": 1695553638.588157, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "466196192": {"repository_manifest": {"name": "Header Cards", "render_readme": true}, "full_name": "gadgetchnnel/lovelace-header-cards", "category": "plugin", "description": "Header Cards", "etag_repository": "W/\"ce1324177b2fc2c2d9ea5245558250e55fb9a4e4bddc0340acc78d3d6ae00ffe\"", "last_updated": "2023-04-06T10:44:52Z", "stargazers_count": 33, "topics": ["cards", "header"], "last_fetched": 1695553532.549959, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180032210": {"repository_manifest": {"name": "Thermal Comfort", "homeassistant": "2023.3.0", "render_readme": true, "filename": "thermal_comfort.zip"}, "full_name": "dolezsa/thermal_comfort", "authors": ["@dolezsa"], "category": "integration", "description": "Thermal Comfort sensor for HA (absolute humidity, heat index, dew point, thermal perception)", "domain": "thermal_comfort", "downloads": 206, "etag_repository": "W/\"0f6d600c054a5c1bd610651dd0a2b3fdbc7df3b06fb9ceaca5bc28dd8da6d85b\"", "last_updated": "2023-09-21T16:41:55Z", "stargazers_count": 390, "topics": ["absolute-humidity", "comfort-model", "comfort-zone", "dew-point", "dew-point-perception", "heat-index", "thermal-comfort", "thermal-perception", "thermal-stress"], "last_fetched": 1695553627.706866, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "581264508": {"repository_manifest": {"name": "\u00d6kofen Pellematic Compact", "render_readme": true, "homeassistant": "2022.11.0"}, "full_name": "dominikamann/oekofen-pellematic-compact", "authors": ["@dominikamann"], "category": "integration", "description": "A \u00d6kofen Pellematic Compact Integration based on JSON/TCP-Inteface for Home Assistant.", "domain": "oekofen_pellematic_compact", "etag_repository": "W/\"c814dbfd6ef1de662912bd43b1089cd2368434e2f64961f4916f380bcd114299\"", "last_updated": "2023-08-12T21:19:53Z", "stargazers_count": 15, "topics": ["oekofen", "oekofen-pellematic-compact"], "last_fetched": 1695553628.604542, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229014136": {"repository_manifest": {"name": "MyJDownloader", "render_readme": true, "homeassistant": "2022.4.0b0"}, "full_name": "doudz/homeassistant-myjdownloader", "authors": ["@doudz", "@oribafi"], "category": "integration", "description": "myjdownloader integration for home assistant", "domain": "myjdownloader", "etag_repository": "W/\"3bb2bd4e60d446d0b73f0454dd60338b79a2e99b0b23392a4163e427692aa9c3\"", "last_updated": "2023-04-20T05:00:59Z", "stargazers_count": 25, "last_fetched": 1695553629.007035, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "258852884": {"repository_manifest": {"name": "Helios EasyControls Modbus TCP/IP integration", "render_readme": true, "zip_release": true, "filename": "homeassistant-easycontrols.zip"}, "full_name": "laszlojakab/homeassistant-easycontrols", "authors": ["@laszlojakab"], "category": "integration", "description": "Helios EasyControls Modbus TCP/IP integration for Home Assistant", "domain": "easycontrols", "downloads": 226, "etag_repository": "W/\"ae2069f10a5ee8afc79845581fa981ada5bfef666c6f133336cafc0b4772d9f8\"", "last_updated": "2023-08-05T19:06:53Z", "stargazers_count": 14, "topics": ["easycontrols", "eazyctrl", "modbus"], "last_fetched": 1695554107.939162, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316597224": {"repository_manifest": {"name": "Budova Smart Home", "country": "UA", "render_readme": true, "homeassistant": "2021.8.1"}, "full_name": "dphae/bsh", "authors": ["@DarkPark"], "category": "integration", "description": "A Home Assistant Budova Smart Home integration", "domain": "bsh", "etag_repository": "W/\"c2d1b787a8afb1be669bd68dec3e15d295bc9c9e370f70ad127329eced6869c1\"", "last_updated": "2021-08-05T21:00:50Z", "stargazers_count": 3, "topics": ["budova"], "last_fetched": 1695553629.259767, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "480281490": {"repository_manifest": {"name": "Lektrico Charging Station"}, "full_name": "Lektrico/ha_lektrico", "authors": ["@mtarjoianu"], "category": "integration", "description": "Manage your Lektrico EV Charger", "domain": "lektrico_custom", "etag_repository": "W/\"03ac5d494eb6991e60af2bf515aa847819727d8cb030d676159ccb482fe03ee6\"", "last_updated": "2023-07-10T15:11:58Z", "stargazers_count": 7, "topics": ["lektrico"], "last_fetched": 1695554108.027337, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "485971293": {"repository_manifest": {"name": "Super Soco Custom", "hacs": "1.6.0", "homeassistant": "2022.3.0", "render_readme": true}, "full_name": "drakhart/ha-super-soco-custom", "authors": ["@Drakhart"], "category": "integration", "description": "Custom component for integrating your Super Soco or Vmoto Soco motorcycle into Home Assistant. It provides meaningful data like power status, battery percentage, location and a lot more.", "domain": "super_soco_custom", "etag_repository": "W/\"8f532032369fc412afe164aa7c3aa2baadcfbfe7008344b60cf9522f545cd8ec\"", "last_updated": "2023-08-30T19:35:18Z", "stargazers_count": 14, "topics": ["super-soco"], "last_fetched": 1695553629.572363, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "598381225": {"repository_manifest": {"name": "Fronius_Solarweb", "homeassistant": "2023.2.0", "render_readme": true, "zip_release": true, "filename": "solarweb.zip"}, "full_name": "drc38/Fronius_solarweb", "authors": ["@drc38"], "category": "integration", "description": "Home Assistant integration for cloud-based Fronius Solar.web api", "domain": "solarweb", "downloads": 374, "etag_repository": "W/\"16ab21cfeb116e28fb87b3da4abf6b1fab64edc39d3efffb2e4597a6fb9e3ac3\"", "last_updated": "2023-09-22T20:35:17Z", "stargazers_count": 1, "topics": ["fronius", "fronius-solar-api"], "last_fetched": 1695553629.35832, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362214884": {"repository_manifest": {"name": "Redfin", "homeassistant": "2021.6.0"}, "full_name": "dreed47/redfin", "authors": ["@dreed47"], "category": "integration", "description": "Redfin property estimate Sensor for Home Assistant", "domain": "redfin", "etag_repository": "W/\"eda6a946e3275da0ef7ec28d5a74d96cae13b137b56d11921ac4235e677de48a\"", "last_updated": "2023-08-19T01:57:33Z", "stargazers_count": 13, "topics": ["real-estate", "redfin"], "last_fetched": 1695553629.420757, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "478745957": {"repository_manifest": {"name": "Ile de france Mobilite", "hacs": "1.0.0", "homeassistant": "0.118.0", "render_readme": true, "country": ["FR"]}, "full_name": "droso-hass/idfm", "authors": ["@drosocode"], "category": "integration", "description": "Custom component for ile de france mobilit\u00e9s", "domain": "idfm", "etag_repository": "W/\"6edaafe7642dc14aaa712f4d2964f90591c52d3757eb0618fe045289dab8149a\"", "last_updated": "2023-08-13T22:49:12Z", "stargazers_count": 10, "topics": ["time", "transports"], "last_fetched": 1695553629.54782, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "566598076": {"repository_manifest": {"name": "ikuai", "render_readme": true}, "full_name": "dscao/ikuai", "authors": ["@dscao"], "category": "integration", "description": "Home Assistant integration for iKuai Router", "domain": "ikuai", "etag_repository": "W/\"5f030055479fc561ff766813f3c1a21aa3b4c433334aa60c4490e516f5d73073\"", "last_updated": "2023-09-12T18:33:46Z", "stargazers_count": 27, "topics": ["homeassistant-custom-component", "ikuai"], "last_fetched": 1695553629.467234, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "601894276": {"repository_manifest": {"name": "general_link", "render_readme": true, "country": "CN"}, "full_name": "leonardlcl/general_link", "authors": ["@leonardlcl"], "category": "integration", "description": "GeneralLink custom component for Home Assistant", "domain": "general_link", "etag_repository": "W/\"d55e755ce694beac37da22b373184497b59ed451a84c01045449b34e49d65673\"", "last_updated": "2023-09-11T07:31:42Z", "stargazers_count": 2, "topics": ["custom-integration", "general", "general-link", "generallink", "link"], "last_fetched": 1695554108.007626, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "341931266": {"repository_manifest": {"name": "Simple Clock Card", "content_in_root": true, "render_readme": true, "filename": "simple-clock-card.js"}, "full_name": "fufar/simple-clock-card", "category": "plugin", "description": "Simple clock card for Home assistant lovelace", "etag_repository": "W/\"1d7ebd9f5d14ff778789c0d790eb84d1cf5b0884bde5f14223df814bc3205bae\"", "last_updated": "2023-08-28T11:48:44Z", "stargazers_count": 35, "topics": ["clock", "lovelace-custom-card"], "last_fetched": 1695553531.380141, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "460392242": {"repository_manifest": {"name": "Svensk Postutdelning", "country": "SE", "homeassistant": "2022.03.0"}, "full_name": "DSorlov/swemail", "authors": ["@dsorlov"], "category": "integration", "description": "Swedish Post Delivery integration for Home Assistant", "domain": "swemail", "etag_repository": "W/\"7d8bc35b31dcba22bb7b0b20e5d2977ebb42e0bd84de3deea023f44b6e1368b8\"", "last_updated": "2023-06-12T09:48:08Z", "stargazers_count": 23, "topics": ["citymail", "postnord"], "last_fetched": 1695553629.620002, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "568186049": {"repository_manifest": {"name": "Aig\u00fces de Barcelona", "render_readme": true, "country": "ES", "homeassistant": "2021.11.0"}, "full_name": "duhow/hass-aigues-barcelona", "authors": ["@duhow"], "category": "integration", "description": "Custom component for Home Assistant to integrate data from Aigues de Barcelona", "domain": "aigues_barcelona", "etag_repository": "W/\"6f5a5fd3a578b0bd37db169a0c0c689e5626932602d7828137a8870cec95b7f3\"", "last_updated": "2023-03-06T14:38:34Z", "stargazers_count": 28, "topics": ["barcelona", "water-meter", "water-monitoring"], "last_fetched": 1695553629.835186, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "455174197": {"repository_manifest": {"name": "Watchman", "render_readme": true}, "full_name": "dummylabs/thewatchman", "authors": ["@dummylabs"], "category": "integration", "description": "Home Assistant custom integration to keep track of missing entities and services in your config files", "domain": "watchman", "etag_repository": "W/\"499e3eaf24270a19041018667d5dce5231d4bc43e6e5b096d498490c7d3b3f4b\"", "last_updated": "2023-08-05T21:02:10Z", "stargazers_count": 280, "topics": ["automation"], "last_fetched": 1695553630.817215, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "132661981": {"repository_manifest": {"name": "Elasticsearch integration", "render_readme": true, "homeassistant": "2022.4"}, "full_name": "legrego/homeassistant-elasticsearch", "authors": ["@legrego"], "category": "integration", "description": "Publish Home-Assistant events to Elasticsearch", "domain": "elasticsearch", "etag_repository": "W/\"c6d2dff93955b4cb207b5bcf0a75a3505f7b6ac33e666f0c36e662fb09ca64b8\"", "last_updated": "2023-09-15T13:57:50Z", "stargazers_count": 110, "topics": ["elasticsearch"], "last_fetched": 1695554107.987658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "346474804": {"repository_manifest": {"name": "Toyota Connected Services", "homeassistant": "2022.6.0", "zip_release": true, "filename": "toyota.zip"}, "full_name": "DurgNomis-drol/ha_toyota", "authors": ["@DurgNomis-drol"], "category": "integration", "description": "Toyota Connected Services integration for Home Assistant.", "domain": "toyota", "downloads": 1880, "etag_repository": "W/\"dc2fe343f30dda7f17ff0374ebddb8e3be762cf3a061946d08e46ca30ec18060\"", "last_updated": "2023-07-03T15:16:44Z", "stargazers_count": 89, "topics": ["car", "toyota", "vehicle"], "last_fetched": 1695553631.254029, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "248954055": {"repository_manifest": {"name": "Stack In Card", "render_readme": true, "filename": "stack-in-card.js"}, "full_name": "custom-cards/stack-in-card", "category": "plugin", "description": "\ud83d\udee0 group multiple cards into one card without the borders", "downloads": 54843, "etag_repository": "W/\"f634a9a187b179f95a8dc3b3e2e969f4ec1cb374a2f89b325e1b0720b272ed44\"", "last_updated": "2023-08-26T05:32:40Z", "stargazers_count": 202, "last_fetched": 1695553520.561821, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441028036": {"repository_manifest": {"name": "Hilo", "hacs": "1.6.0", "country": "CA", "render_readme": true, "homeassistant": "2022.9.0"}, "full_name": "dvd-dev/hilo", "authors": ["@dvd-dev"], "category": "integration", "description": "Home Assistant Hilo Integration via HACS", "domain": "hilo", "etag_repository": "W/\"3d8bee220872a7882bdc1e024e5b25f88fda730d5336144c1153dda9a5d58c7c\"", "last_updated": "2023-09-18T08:07:12Z", "stargazers_count": 89, "topics": ["hilo", "home-automation-system", "hydro-quebec", "signalr-client"], "last_fetched": 1695553631.714199, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "402799177": {"repository_manifest": {"name": "Blind Card", "filename": "hass-blind-card.js", "render_readme": true, "homeassistant": "2021.11.0"}, "full_name": "tungmeister/hass-blind-card", "category": "plugin", "description": "Blind card for Home Assistant Lovelace UI", "etag_repository": "W/\"11d470f96828a592b64413e584f715e7adf108b0823716b25a0b4621b6725649\"", "last_updated": "2023-09-08T05:23:14Z", "stargazers_count": 26, "last_fetched": 1695553567.137771, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222687548": {"repository_manifest": {"name": "Dwains Dashboard", "render_readme": true, "homeassistant": "2022.3.0"}, "full_name": "dwainscheeren/dwains-lovelace-dashboard", "authors": ["@dwainscheeren"], "category": "integration", "description": "An fully auto generating Home Assistant UI dashboard for desktop, tablet and mobile by Dwains for desktop, tablet, mobile", "domain": "dwains_dashboard", "etag_repository": "W/\"c1cca24ec9d10563d101e772a188bc839a99cae16fa98e077f9d235299458d8e\"", "last_updated": "2023-09-15T11:11:21Z", "stargazers_count": 1472, "topics": ["dashboard", "dwains-lovelace-dashboard", "home-assistant-dashboard"], "last_fetched": 1695553631.766802, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "384704004": {"repository_manifest": {"name": "Trakt", "render_readme": true}, "full_name": "dylandoamaral/trakt-integration", "authors": ["@dylandoamaral"], "category": "integration", "description": "A Trakt integration for Home Assistant compatible with upcoming media card", "domain": "trakt_tv", "etag_repository": "W/\"44fb635978ed428a2fc9f716480018adde437103d480c0f0e18b0e199a246bf3\"", "last_updated": "2023-05-26T06:53:56Z", "stargazers_count": 23, "topics": ["custom", "movie", "show", "trakt", "upcoming-media-card"], "last_fetched": 1695553631.802992, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231083679": {"repository_manifest": {"name": "Dark Teal"}, "full_name": "aFFekopp/dark_teal", "category": "theme", "description": "\ud83d\udc35 Dark Theme based on clear-theme-dark by @naofireblade", "etag_repository": "W/\"572109289b2c8256a77b47b2bcb5f6f9934b388159586eac3bf05f4900534575\"", "last_updated": "2022-03-15T09:06:42Z", "stargazers_count": 20, "topics": ["dark-theme", "home-assistant-theme"], "last_fetched": 1695553492.634573, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "450898706": {"repository_manifest": {"name": "Only Lock Lock Row", "filename": "content.js", "render_readme": true}, "full_name": "frozenwizard/onlylocklock", "category": "plugin", "description": "Custom entity rows that prevent users from unlocking a lock, disarming a security system(alarm), opening a cover(garage door).", "etag_repository": "W/\"2553089a91c956cddb987ff31ea2d7dfe325c9bb3a41a87e1af971ec4eb655f6\"", "last_updated": "2023-05-21T19:31:15Z", "stargazers_count": 5, "topics": ["alarm", "cover", "frontend", "lock"], "last_fetched": 1695553531.032258, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "267076188": {"repository_manifest": {"name": "Gigaset Elements", "render_readme": "true", "homeassistant": "2022.5.0"}, "full_name": "dynasticorpheus/gigasetelements-ha", "authors": ["@dynasticorpheus"], "category": "integration", "description": "Gigaset Smart Home integration for Home Assistant", "domain": "gigasetelements", "etag_repository": "W/\"2a31cc749a1b165de5b468e595a433e82af02195c629b8d1a6055e2c5a71f774\"", "last_updated": "2023-04-17T09:45:37Z", "stargazers_count": 17, "topics": ["community", "gigaset", "gigasetelements", "python3"], "last_fetched": 1695553631.865925, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "348464316": {"repository_manifest": {"name": "Magic Switchbot", "render_readme": true, "homeassistant": "2022.9.1"}, "full_name": "ec-blaster/magicswitchbot-homeassistant", "authors": ["@ec-blaster"], "category": "integration", "description": "Magic Switchbot integration component for Home Assistant", "domain": "magicswitchbot", "etag_repository": "W/\"eb19365be4c21a4f67390955457568c7438add10bd13ec3227673b290eb8a883\"", "last_updated": "2022-10-08T15:57:58Z", "stargazers_count": 15, "topics": ["magicswitchbot", "switches"], "last_fetched": 1695553631.664159, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261277563": {"repository_manifest": {"name": "Open Source Routing Machine"}, "full_name": "edekeijzer/osrm_travel_time", "authors": ["@edekeijzer"], "category": "integration", "description": "OSRM travel time sensor for Home Assistant", "domain": "osrm_travel_time", "etag_repository": "W/\"9326d0bcb187c14cadd40fbfc0c3a3a21a8f18b31415660e3f8d5a0c2c598075\"", "last_updated": "2022-03-11T11:58:30Z", "stargazers_count": 7, "topics": ["osrm", "python3", "self-hosted"], "last_fetched": 1695553631.792503, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "573737078": {"repository_manifest": {"name": "SAJ eSolar Air", "homeassistant": "2022.11.1", "render_readme": true, "country": ["ALL"]}, "full_name": "faanskit/ha-esolar", "authors": ["@faanskit"], "category": "integration", "description": "Custom Integration of SAJ eSOLAR", "domain": "saj_esolar_air", "etag_repository": "W/\"5b65320f75ac1f9f388ab54ad8ba06dd432963979644af83aef21dbff47c5509\"", "last_updated": "2023-03-22T12:51:26Z", "stargazers_count": 3, "topics": ["esolar", "esolar-air", "homeassistant-config", "homeassistant-custom-component", "saj", "saj-h1", "saj-inverters", "saj-r5", "solar"], "last_fetched": 1695553638.369486, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292390011": {"repository_manifest": {"name": "Peloton", "render_readme": true, "homeassistant": "2023.1"}, "full_name": "edwork/homeassistant-peloton-sensor", "authors": ["@edwork"], "category": "integration", "description": "A platform which allows you to get current and past ride data from Peloton into HomeAssistant", "domain": "peloton", "downloads": 6, "etag_repository": "W/\"b0b6bf73149f249e188055e81afb896681dd4959900323e5c6909d91e71dbb82\"", "last_updated": "2023-06-14T17:59:57Z", "stargazers_count": 65, "topics": ["peloton", "peloton-api", "peloton-client"], "last_fetched": 1695553631.847746, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250345421": {"repository_manifest": {"name": "Folding@HomeControl", "homeassistant": "2022.2.3"}, "full_name": "eifinger/hass-foldingathomecontrol", "authors": ["@eifinger"], "category": "integration", "description": "Homeassistant integration for FoldingAtHomeControl", "domain": "foldingathomecontrol", "etag_repository": "W/\"cc7e5ccd042b4dfbed2876cd20acf89188a41c86eaeb5a2e0aebe30e541aa5fa\"", "last_updated": "2023-09-04T17:53:22Z", "stargazers_count": 16, "topics": ["asyncio", "folding-at-home", "foldingathome", "python3"], "last_fetched": 1695553632.238271, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403401396": {"repository_manifest": {"name": "HERE Destination Weather", "hacs": "1.6.0", "homeassistant": "2023.3.0"}, "full_name": "eifinger/hass-here-weather", "authors": ["@eifinger"], "category": "integration", "description": "Custom Home Assistant Integration for the HERE Destination Weather API", "domain": "here_weather", "etag_repository": "W/\"fa98537b57a203333f45f34a5e9f7da39815d064b92d5e0616ef724e0836c393\"", "last_updated": "2023-09-18T07:40:26Z", "stargazers_count": 6, "topics": ["here-maps-api", "herepy", "homeassistant-custom-component", "pyton"], "last_fetched": 1695553633.237651, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "358505160": {"repository_manifest": {"name": "Weenect", "hacs": "1.6.0", "homeassistant": "2023.3.0"}, "full_name": "eifinger/hass-weenect", "authors": ["@eifinger"], "category": "integration", "description": "Homeassistant integration for weenect", "domain": "weenect", "etag_repository": "W/\"8b563f3cbb7bc0b0fe7b60450624314a2430e639fb38cffe636c055633847127\"", "last_updated": "2023-09-18T06:32:10Z", "stargazers_count": 4, "topics": ["weenect"], "last_fetched": 1695553633.636211, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497829589": {"repository_manifest": {"name": "FR24 card", "render_readme": true, "homeassistant": "2022.6.0"}, "full_name": "fratsloos/fr24_card", "category": "plugin", "description": "Lovelace card for showing Dump1090 data from FR24 in Home Assistant", "etag_repository": "W/\"14fbcb763c536553c0831625bf3cb3a5978e28a82e5e48112f3fda7c494d5d45\"", "last_updated": "2023-01-16T17:09:48Z", "stargazers_count": 27, "topics": ["ads-b", "flightradar24", "lovelace-card", "mode-s"], "last_fetched": 1695553530.81347, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202322117": {"repository_manifest": {"name": "open_route_service"}, "full_name": "eifinger/open_route_service", "authors": ["@eifinger"], "category": "integration", "description": "Custom Component for Homeassistant Providing Travel Time Information using openrouteservice.org", "domain": "open_route_service", "etag_repository": "W/\"e72c6230fba9fdfb42d096f2a2c3845cb442f6364fcff42b7ac2f064cc222fa9\"", "last_updated": "2022-12-24T16:44:40Z", "stargazers_count": 11, "topics": ["open-route-service", "python3"], "last_fetched": 1695553633.848932, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229060565": {"repository_manifest": {"name": "Xiaomi Mijia Multifunctional MJYSH01YM", "render_readme": true, "homeassistant": "0.99.9"}, "full_name": "fineemb/Xiaomi-Smart-Multipurpose-Kettle", "authors": ["@fineemb"], "category": "integration", "description": "\u5c0f\u7c73\u517b\u751f\u58f6", "domain": "health_pot", "etag_repository": "W/\"aed0cb5300797d7a5a0ac4d80de8491305e6cb37e2b389592ab1d52ea5f0b08e\"", "last_updated": "2022-06-02T18:40:56Z", "stargazers_count": 6, "last_fetched": 1695553640.770296, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334364176": {"repository_manifest": {"name": "WEBFLEET", "render_readme": true}, "full_name": "tom-winkler/ha-webfleet-integration", "authors": ["@tom-winkler"], "category": "integration", "description": "Homeassistant WEBFLEET integration to be installed via HACS.", "domain": "webfleet", "etag_repository": "W/\"47301cc648b9f6027c4d7a75689c6b5d300ae38de98960f31f43cbb770cb68c5\"", "last_updated": "2023-03-13T07:57:06Z", "last_fetched": 1695554183.492437, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "514391925": {"repository_manifest": {"name": "AppWash", "render_readme": true}, "full_name": "fapfaff/homeassistant-appwash", "authors": ["@fapfaff"], "category": "integration", "description": "AppWash integration for HomeAssistant", "domain": "appwash", "etag_repository": "W/\"821ee71825fd86e7eb1143a400a63c0f636d9f52ada64bf13861165928bcfbc0\"", "last_updated": "2022-07-21T16:30:20Z", "topics": ["dryer", "miele", "washing-machine"], "last_fetched": 1695553638.272987, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "263757123": {"repository_manifest": {"name": "NWS Alerts", "homeassistant": "0.95.4"}, "full_name": "finity69x2/nws_alerts", "authors": ["@finity69x2"], "category": "integration", "description": "An updated version of the nws_alerts custom integration for Home Assistant", "domain": "nws_alerts", "etag_repository": "W/\"e4e80bb015062542163911675ee45398e9d4ef02ea742ce9cf241ade993564a0\"", "last_updated": "2023-08-31T17:15:38Z", "stargazers_count": 56, "topics": ["alerts", "assistant", "home", "weather"], "last_fetched": 1695553640.573662, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "395770920": {"repository_manifest": {"name": "OpenEI", "homeassistant": "2021.8.0", "zip_release": true, "filename": "openei.zip"}, "full_name": "firstof9/ha-openei", "authors": ["@firstof9"], "category": "integration", "description": "OpenEI integration for Home Assistant", "domain": "openei", "downloads": 43, "etag_repository": "W/\"5901eea06dc4a652bdea86317db0fcc24c7677a9b8e204ee64c7ade93a58a1b0\"", "last_updated": "2023-09-21T14:15:13Z", "stargazers_count": 11, "topics": ["api", "energy", "rates"], "last_fetched": 1695553640.78619, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "240906060": {"repository_manifest": {"name": "PHICOMM DC1 card", "render_readme": true, "country": ["CN"]}, "full_name": "fineemb/lovelace-dc1-card", "category": "plugin", "description": "\u6590\u8bafDC1\u6392\u63d2\u7684Lovelace\u5361\u7247", "etag_repository": "W/\"013500120024e49d6a090edb5fd6a6a2561500cf2ffe62aa370b7a0f4839daea\"", "last_updated": "2022-06-03T03:36:28Z", "stargazers_count": 20, "last_fetched": 1695553528.521273, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "285560672": {"repository_manifest": {"name": "Deutscher Wetterdienst", "homeassistant": "2022.07.1", "zip_release": true, "filename": "dwd_weather.zip"}, "full_name": "FL550/dwd_weather", "authors": ["@FL550"], "category": "integration", "description": "Deutscher Wetterdienst integration for Home-Assistant", "domain": "dwd_weather", "downloads": 5802, "etag_repository": "W/\"7004252c97e855573417d3931acbd17687c40fc8a2170c84fc9a8221fd0f0ce6\"", "last_updated": "2023-09-21T12:33:03Z", "stargazers_count": 108, "topics": ["deutscher-wetterdienst", "dwd", "dwd-weather", "weather", "weather-entity", "weather-forecast"], "last_fetched": 1695553640.763058, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "276915021": {"repository_manifest": {"name": "Easee EV Charger", "homeassistant": "2023.4.0", "zip_release": true, "filename": "easee.zip"}, "full_name": "fondberg/easee_hass", "authors": ["@fondberg", "@tmjo", "@olalid", "@astrandb"], "category": "integration", "description": "Custom component for Easee EV charger", "domain": "easee", "downloads": 3503, "etag_repository": "W/\"280e6ba719753d371be6b36a20aec01456eff58a14927bbf8eab33249018a20d\"", "last_updated": "2023-09-22T11:40:28Z", "stargazers_count": 168, "topics": ["easee", "ev-charging"], "last_fetched": 1695553640.929886, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183212377": {"repository_manifest": {"name": "Spotcast", "homeassistant": "2022.3.0"}, "full_name": "fondberg/spotcast", "authors": ["@fondberg", "@fcusson"], "category": "integration", "description": "Home assistant custom component to start Spotify playback on an idle chromecast device as well as control spotify connect devices", "domain": "spotcast", "etag_repository": "W/\"fbff528fdab4a45cc807bde27f52f1014771a097b52697787e99eddb6a378cd4\"", "last_updated": "2023-09-16T15:41:35Z", "stargazers_count": 546, "last_fetched": 1695553641.291465, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "560614992": {"repository_manifest": {"name": "System Flow Card", "render_readme": true, "homeassistant": "2021.8.0"}, "full_name": "flyrmyr/system-flow-card", "category": "plugin", "description": "A system flow card inspired by the official Energy Distribution card for Home Assistant", "etag_repository": "W/\"856d3f5bd60049a4a274adcac05debcc434ec70a25e9634dd3fca29a6a9a68ca\"", "last_updated": "2023-07-20T06:41:23Z", "stargazers_count": 24, "topics": ["dashboard", "lovelace-custom-card"], "last_fetched": 1695553530.596974, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "545119372": {"repository_manifest": {"name": "Camect", "render_readme": true, "homeassistant": "2022.9"}, "full_name": "Fr3d/camect-ha", "authors": ["@Fr3d"], "category": "integration", "description": "Full Camect Hub integration for Home Assistant / HACS", "domain": "camect", "etag_repository": "W/\"03e613fbe2acd720e7a1ce831b1ec2bd13edfb77ea05aef7b52b5010f168a6f3\"", "last_updated": "2023-05-12T09:17:41Z", "stargazers_count": 5, "topics": ["camect", "home-assistant-integration"], "last_fetched": 1695553641.099148, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214792276": {"repository_manifest": {"name": "Xiaomi Fan Lovelace Card", "render_readme": true}, "full_name": "fineemb/lovelace-fan-xiaomi", "category": "plugin", "description": "Xiaomi Smartmi Fan Lovelace card for HASS/Home Assistant.", "etag_repository": "W/\"e1105b16dcc1230617fc4cf4a653ffb9d71ca226a11f6c106094e079ec63f2bc\"", "last_updated": "2022-06-06T14:18:26Z", "stargazers_count": 41, "last_fetched": 1695553528.584337, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200665691": {"repository_manifest": {"homeassistant": "2023.6.0", "name": "ICS Calendar (iCalendar)"}, "full_name": "franc6/ics_calendar", "authors": ["@franc6"], "category": "integration", "description": "Provides an ICS (icalendar) platform for the Home Assistant calendar", "domain": "ics_calendar", "etag_repository": "W/\"27bef20749cd4ea83edcc8a3260937debfb9b69959edd9bc39bfe4338f607a3b\"", "last_updated": "2023-09-19T13:19:42Z", "stargazers_count": 87, "topics": ["calendar", "ics"], "last_fetched": 1695553642.403466, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220685552": {"repository_manifest": {"name": "Popular Times", "render_readme": true}, "full_name": "freakshock88/hass-populartimes", "authors": ["@freakshock88"], "category": "integration", "description": "Custom component for Home Assistant which generates a sensor to show popularity for a google maps place.", "domain": "populartimes", "etag_repository": "W/\"9b402bb9996e28d28a494e7bcd6bea4962c1d451c6b1d1ffebc33a20a6ab680f\"", "last_updated": "2022-12-30T10:42:30Z", "stargazers_count": 27, "topics": ["google-maps", "google-places-api"], "last_fetched": 1695553642.394371, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "620855349": {"repository_manifest": {"name": "Lightener", "filename": "lightener.zip", "hide_default_branch": true, "homeassistant": "2023.3.0", "render_readme": true, "zip_release": true}, "full_name": "fredck/lightener", "authors": ["@fredck"], "category": "integration", "description": "Magically control the state and brightness of lights in Home Assistant.", "domain": "lightener", "downloads": 2184, "etag_repository": "W/\"c2578119f4cb38698f79c8d960f5e29da9c1c295c4ec45c18bfd5257b6f00387\"", "last_updated": "2023-09-18T15:21:35Z", "stargazers_count": 60, "topics": ["brightness", "light"], "last_fetched": 1695553642.555703, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259784620": {"repository_manifest": {"name": "Gaode Map card", "render_readme": true, "country": ["CN"]}, "full_name": "fineemb/lovelace-cn-map-card", "category": "plugin", "description": "\u590d\u523b\u5b98\u65b9Lovelace\u5730\u56fe\u5361\u7247,\u57fa\u4e8e\u9ad8\u5fb7\u5730\u56fe", "etag_repository": "W/\"34372a474f9e9e3cf6e301028f49f49948cce63242ed8979f5ce41b27f5f3c8e\"", "last_updated": "2022-06-03T03:35:37Z", "stargazers_count": 47, "last_fetched": 1695553527.483826, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "605635573": {"repository_manifest": {"name": "Spook \ud83d\udc7b Not your homie", "render_readme": true, "homeassistant": "2023.8.0", "zip_release": true, "filename": "spook.zip"}, "full_name": "frenck/spook", "authors": ["@frenck"], "category": "integration", "description": "Spook \ud83d\udc7b Not your homie", "domain": "spook", "downloads": 685, "etag_repository": "W/\"1c53bfdbe37c94d1a4d0b15207e5dece33fbcd4f3a970c1ea52be49a56d5e3c8\"", "last_updated": "2023-09-23T10:53:23Z", "stargazers_count": 184, "topics": ["do-not-use", "home-assistant-component", "home-assistant-config", "home-assistant-configuration", "home-assistant-integration", "home-destruction", "homeassistant-homie", "homey", "homie", "passive-agressive", "powerful", "powertools", "random", "spooky", "toolbox"], "last_fetched": 1695553643.018152, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237887092": {"repository_manifest": {"name": "Climate thermostat card", "render_readme": true, "filename": "main.js"}, "full_name": "fineemb/lovelace-thermostat-card", "category": "plugin", "description": "Thermostat Lovelace card", "etag_repository": "W/\"2b50e4138a63df9f3b954b4b871ff57e65f59c0301d51ad7cdd291d4de9f17b4\"", "last_updated": "2023-04-14T11:01:13Z", "stargazers_count": 101, "last_fetched": 1695553528.681786, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "169783299": {"repository_manifest": {}, "full_name": "ljmerza/github-card", "category": "plugin", "description": "Track your repo issues, starts, forks, and pull requests", "downloads": 903, "etag_repository": "W/\"ef53c68c0d2ed10b250bc62f6ae6f1b69f6612354f3d6c5adcdd1e5e6750bbf7\"", "last_updated": "2020-01-13T23:55:00Z", "stargazers_count": 10, "last_fetched": 1695553544.348305, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "226707533": {"repository_manifest": {"name": "ltss", "render_readme": true}, "full_name": "freol35241/ltss", "authors": ["@freol35241"], "category": "integration", "description": "Long time state storage (LTSS) custom component for Home Assistant using Timescale DB", "domain": "ltss", "etag_repository": "W/\"b805dfd481185d0fae62d91e2ca8f5d15266a5a8e3c09749a42f15bb48dad8e5\"", "last_updated": "2023-09-13T18:20:36Z", "stargazers_count": 65, "topics": ["database", "ltss", "state-storage", "storage", "timescaledb"], "last_fetched": 1695553642.915958, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250552447": {"repository_manifest": {"name": "Binary Control Button Row", "filename": "binary-control-button-row.js"}, "full_name": "finity69x2/binary-control-button-row", "category": "plugin", "description": "Provides a customizable button row for binary entities in Home Assistant", "etag_repository": "W/\"5e1b511ed961f834ee61c19c086b386836e4bf9125981eb573dad652b89c8068\"", "last_updated": "2023-05-11T00:30:49Z", "stargazers_count": 20, "last_fetched": 1695553528.712384, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291480917": {"repository_manifest": {"name": "Colorfulclouds Weather Card", "render_readme": true, "filename": "colorfulclouds-weather-card.js", "country": ["CN"]}, "full_name": "fineemb/lovelace-colorfulclouds-weather-card", "category": "plugin", "description": "\u8fd9\u662f\u4e00\u4e2a\u9002\u7528\u4e8e\u5f69\u4e91\u5929\u6c14\u96c6\u6210\u7684Lovelace\u5361\u7247", "etag_repository": "W/\"60b8f8edb27c03f6c5dc16899464d5cd82b0f0149c12891ca7fbe7b1ad04ad2e\"", "last_updated": "2022-06-02T18:43:02Z", "stargazers_count": 48, "topics": ["lovelace-custom-card", "weather"], "last_fetched": 1695553527.634064, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "152294445": {"repository_manifest": {"name": "Remote Home-Assistant", "render_readme": true}, "full_name": "custom-components/remote_homeassistant", "authors": ["@lukas-hetzenecker", "@postlund"], "category": "integration", "description": "Links multiple home-assistant instances together", "domain": "remote_homeassistant", "etag_repository": "W/\"a85da0eb1a6fcf45d357c833d722f192a2a13495a9ee4a9dc5e2abec9603382d\"", "last_updated": "2023-09-09T08:08:21Z", "stargazers_count": 693, "last_fetched": 1695553609.174751, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245239101": {"repository_manifest": {"name": "Lovelace Card Preloader", "render_readme": true}, "full_name": "gadgetchnnel/lovelace-card-preloader", "category": "plugin", "description": "Allows preloading of Lovelace cards as a work around for changes in Home Assistant 0.107", "etag_repository": "W/\"b99df11224abe098aef5f21f5a3f75337f93967c90ea3320d86af60b42dda59d\"", "last_updated": "2023-03-04T06:21:16Z", "stargazers_count": 22, "last_fetched": 1695553531.553922, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "174016256": {"repository_manifest": {"name": "Lovelace Home Feed Card", "render_readme": true}, "full_name": "gadgetchnnel/lovelace-home-feed-card", "category": "plugin", "description": "A custom Lovelace card for displaying a combination of persistent notifications, calendar events, and entities in the style of a feed.", "etag_repository": "W/\"e3d1744c5aa567681972b16fca18e6ae4b86b4e592d2bf7b8770e0d957592088\"", "last_updated": "2023-06-13T18:03:12Z", "stargazers_count": 205, "last_fetched": 1695553532.799723, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "182915754": {"repository_manifest": {"name": "Grocy custom component", "render_readme": true, "zip_release": true, "hide_default_branch": true, "homeassistant": "2021.12.0", "filename": "grocy.zip"}, "full_name": "custom-components/grocy", "authors": ["@SebRut", "@isabellaalstrom"], "category": "integration", "description": "Custom Grocy integration for Home Assistant", "domain": "grocy", "downloads": 2112, "etag_repository": "W/\"5a3bfb470f83a96b5ae6a28565d0495ced99d281f0011ab366e8786c1485bddd\"", "last_updated": "2023-08-17T13:22:13Z", "stargazers_count": 120, "topics": ["grocy"], "last_fetched": 1695553607.578331, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "247134044": {"repository_manifest": {"name": "Multiline Text Input Card"}, "full_name": "faeibson/lovelace-multiline-text-input-card", "category": "plugin", "description": "A simple lovelace multiline text input card", "downloads": 1711, "etag_repository": "W/\"eb96eec410aceac691b7eebbd74be49fc4727f370e8d051f19de2db713704e69\"", "last_updated": "2020-10-15T00:16:17Z", "stargazers_count": 8, "topics": ["lovelace-card", "multiline", "text-input"], "last_fetched": 1695553526.776388, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307058107": {"repository_manifest": {"name": "Car card", "render_readme": true, "country": ["CN"]}, "full_name": "fineemb/lovelace-car-card", "category": "plugin", "description": "\u8f66\u8f86\u4eea\u8868\u76d8", "etag_repository": "W/\"0d07a858d3ff7be6061b5063058cc613aa6eef3c9fcc95a8abefe522fdfe81ad\"", "last_updated": "2022-06-02T18:44:43Z", "stargazers_count": 5, "topics": ["car", "lovelace-custom-card", "lynkco"], "last_fetched": 1695553527.160937, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "287409957": {"repository_manifest": {"name": "Cover Control Button Row", "filename": "cover-control-button-row.js"}, "full_name": "finity69x2/cover-control-button-row", "category": "plugin", "description": "button row for controlling open/close covers in Home Assistant", "etag_repository": "W/\"c0f98253f96f58cf0e9baf062c657377538797153c308c865c120ef16c4da33e\"", "last_updated": "2023-05-11T00:31:16Z", "stargazers_count": 11, "topics": ["cover"], "last_fetched": 1695553528.692421, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260597137": {"repository_manifest": {"name": "Air Purifier Card", "render_readme": true}, "full_name": "fineemb/lovelace-air-filter-card", "category": "plugin", "description": "\u7528\u4e8eLovelace\u7684\u5c0f\u7c73\u7a7a\u6c14\u51c0\u5316\u5668\u5361\u7247", "etag_repository": "W/\"0c9e2fdcb66688d2684ca4b9203d21eb40a407d4b51cbf7e59cc71f0bfbf8642\"", "last_updated": "2022-06-02T18:43:53Z", "stargazers_count": 13, "last_fetched": 1695553526.772766, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "574693804": {"repository_manifest": {"name": "Hypervolt Charger", "country": ["GB", "AU"]}, "full_name": "gndean/home-assistant-hypervolt-charger", "authors": ["@gndean"], "category": "integration", "description": "Home Assistant integration for Hypervolt EV charger", "domain": "hypervolt_charger", "etag_repository": "W/\"816e5879ed10812e02c95c614f54779694623b5583a6fc199c5e5f57219a7845\"", "last_updated": "2023-04-10T20:49:23Z", "stargazers_count": 32, "topics": ["ev-charger", "ev-charging", "hypervolt"], "last_fetched": 1695553650.067849, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202203063": {"repository_manifest": {}, "full_name": "bbbenji/synthwave-hass", "category": "theme", "description": "Synthwave inspired theme for Home Assistant", "etag_repository": "W/\"db6c8716c77edbc4c8ddbddad305b2b02b2ed0b17dc32a9ef7d3203a3cd7da70\"", "last_updated": "2022-06-13T03:57:15Z", "stargazers_count": 148, "topics": ["css", "home-assistant-theme", "javascript", "synthwave"], "last_fetched": 1695553494.483651, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262140617": {"repository_manifest": {"name": "Read Your Meter", "country": "IL", "homeassistant": "0.106.0"}, "full_name": "eyalcha/read_your_meter", "authors": ["@eyalcha"], "category": "integration", "description": "Home Assistant sensor to read water meter", "domain": "read_your_meter", "etag_repository": "W/\"7becdbfc113d0308cbc96bb628ea97ad4698130b259ba1a953736f19da60e64c\"", "last_updated": "2022-07-25T19:36:44Z", "stargazers_count": 34, "last_fetched": 1695553638.427805, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234118477": {"repository_manifest": {"name": "Afvalinfo", "render_readme": true, "country": ["NL"], "homeassistant": "0.100.0"}, "full_name": "heyajohnny/afvalinfo", "authors": ["@heyajohnny"], "category": "integration", "description": "Provides Home Assistant sensors for multiple Dutch waste collectors. The idea is to add more cities and features in the future.", "domain": "afvalinfo", "etag_repository": "W/\"f02d0d85925a9ab92527779efeedcd2a694db0e4f423a2a5c869e80a6427aace\"", "last_updated": "2023-08-19T19:38:47Z", "stargazers_count": 79, "last_fetched": 1695553659.145959, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "377012187": {"repository_manifest": {"name": "Weight Gurus", "render_readme": true}, "full_name": "jcgoette/weight_gurus_homeassistant", "authors": ["@jcgoette"], "category": "integration", "description": "This custom integration provides sensors for Weight Gurus API endpoints.", "domain": "weight_gurus", "etag_repository": "W/\"edc3c1ed1b714b43996ab73ff462fde61252f647643ef66e59dc257641e33664\"", "last_updated": "2021-12-18T04:00:33Z", "stargazers_count": 3, "topics": ["health", "home-assistant-component", "weight"], "last_fetched": 1695553671.448881, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "452272431": {"repository_manifest": {"name": "bemfa", "render_readme": true, "country": "CN", "homeassistant": "2022.5.5"}, "full_name": "larry-wong/bemfa", "authors": ["@larry-wong"], "category": "integration", "description": "\u5c06 Home Assistant \u5b9e\u4f53\u540c\u6b65\u81f3\u5df4\u6cd5\u4e91\uff0c\u5e76\u4f7f\u7528\u5c0f\u7231\u540c\u5b66/\u5929\u732b\u7cbe\u7075/\u5c0f\u5ea6\u97f3\u7bb1\u63a7\u5236\u3002", "domain": "bemfa", "etag_repository": "W/\"4937a2ee42f79c2ad0d297395eb3ef5628f61af36da9a0770343c2f9fcb30846\"", "last_updated": "2023-04-29T12:55:00Z", "stargazers_count": 271, "topics": ["bemfa"], "last_fetched": 1695554107.471476, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "139894340": {"repository_manifest": {"name": "Weatheralerts", "render_readme": true, "country": "US"}, "full_name": "custom-components/weatheralerts", "authors": ["@ludeeus", "@jlverhagen"], "category": "integration", "description": "A sensor that gives you weather alerts from alerts.weather.gov.", "domain": "weatheralerts", "etag_repository": "W/\"896e87efed45461449ca483889042cd2a81a3b8c08e7291f351acc63a5ea81b8\"", "last_updated": "2023-04-06T17:24:06Z", "stargazers_count": 105, "topics": ["weatheralerts"], "last_fetched": 1695553611.982867, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "336054515": {"repository_manifest": {"name": "Open Charge Point Protocol (OCPP)", "homeassistant": "2022.7.0", "render_readme": true, "zip_release": true, "filename": "ocpp.zip"}, "full_name": "lbbrhzn/ocpp", "authors": ["@lbbrhzn"], "category": "integration", "description": "Home Assistant integration for electric vehicle chargers that support the Open Charge Point Protocol (OCPP).", "domain": "ocpp", "downloads": 1783, "etag_repository": "W/\"dc1c9799bdd6f8ca70d358438e5b6f893a9d5932de0351aad00443f017eee331\"", "last_updated": "2023-09-22T15:09:17Z", "stargazers_count": 144, "topics": ["ocpp"], "last_fetched": 1695554108.21218, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "162468030": {"repository_manifest": {"name": "Dark Theme Pack for Home Assistant", "render_readme": true, "filename": "dark_themes.yaml"}, "full_name": "awolkers/home-assistant-themes", "category": "theme", "description": "A collection of modern, clean but colorfull dark themes for the Home Assistant UI. Comes in six different colors (Blue / Green / Orange / Pink / Turqoise / Yellow).", "etag_repository": "W/\"89b02c7ee5b0a768824722db38c18bfdf3b1b7c06d6af3a327813c3e2f89f11f\"", "last_updated": "2022-11-04T12:54:46Z", "stargazers_count": 11, "topics": ["dark-mode", "dark-theme", "home-assistant-theme", "lovelace-theme"], "last_fetched": 1695553492.708665, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "499901994": {"repository_manifest": {"name": "Solarfocus eco manager-touch", "country": ["DE", "AT", "CH"], "homeassistant": "2023.1.2", "hacs": "1.29.1", "render_readme": true}, "full_name": "LavermanJJ/home-assistant-solarfocus", "authors": ["@lavermanjj"], "category": "integration", "description": "\ud83c\udfe1 Solarfocus eco manager touch integration for Home Assistant", "domain": "solarfocus", "etag_repository": "W/\"8f022301b4b174de4e684ac8d8a59d3577ffd58aeb2dfcb2cc29987faddc617d\"", "last_updated": "2023-09-19T18:42:50Z", "stargazers_count": 8, "topics": ["home-assistant-component", "solarfocus"], "last_fetched": 1695554108.004162, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "495607253": {"repository_manifest": {"name": "Nordnet investments API sensors", "render_readme": true, "country": ["DK", "NO", "SE", "FI"]}, "full_name": "jippi/hass-nordnet", "authors": ["@jippi"], "category": "integration", "description": "Home Assistant + Nordnet API = awesome sensors with for your investments & holdings", "domain": "nordnet", "etag_repository": "W/\"8434c52f8b07b0f52e16c38eb089d9fd897ada99ce8c5444f92c15b1cfa762b1\"", "last_updated": "2022-05-29T09:42:20Z", "stargazers_count": 5, "topics": ["finance", "stock-market", "stocks"], "last_fetched": 1695553677.780022, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223541049": {"repository_manifest": {"name": "SamsungTV Tizen"}, "full_name": "jaruba/ha-samsungtv-tizen", "authors": ["@jaruba"], "category": "integration", "description": "\ud83d\udcfa HomeAssistant - For Samsung TVs 2016+, Includes SmartThings API and Channel List Support", "domain": "samsungtv_tizen", "etag_repository": "W/\"9d5f43e5529bcb9303880abd067dd331be6d137cd90186bb2abc8b13995bf210\"", "last_updated": "2022-12-31T20:09:24Z", "stargazers_count": 261, "last_fetched": 1695553669.068659, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146510412": {"repository_manifest": {"name": "ICY E-thermostaat", "zip_release": true, "filename": "combined.zip", "hide_default_branch": true, "homeassistant": "0.96.0"}, "full_name": "custom-components/climate.e_thermostaat", "authors": ["@gerard33"], "category": "integration", "description": "E-Thermostaat (ICY) component for Home Assistant", "domain": "e_thermostaat", "downloads": 68, "etag_repository": "W/\"638a4e23f67dc2d0d972a06de1825da3c99b68978d89e8588f7fbe44e4dc9624\"", "last_updated": "2023-02-06T21:02:40Z", "stargazers_count": 3, "topics": ["e-thermostaat", "icy"], "last_fetched": 1695553606.437872, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "457458731": {"repository_manifest": {"name": "Material 3 Dark & Light Theme 07: DarkOliveGreen", "filename": "m3-07-darkolivegreen.yaml", "render_readme": "true"}, "full_name": "AmoebeLabs/HA-Theme_M3-07-DarkOliveGreen", "category": "theme", "description": "Material Design 3 based theme (dark olive green) for Home Assistant", "etag_repository": "W/\"4392ec8ce886788d15efd108564b366a577f38914bc1b06a6c021f21b9bbca50\"", "last_updated": "2022-06-15T07:56:39Z", "stargazers_count": 1, "topics": ["dark-mode", "dark-theme", "home-assistant-theme", "light-mode", "light-theme", "material-3"], "last_fetched": 1695553492.719443, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195594888": {"repository_manifest": {"name": "Sinope GT125", "filename": false, "render_readme": true, "country": ["CA"], "homeassistant": "0.110.0"}, "full_name": "claudegel/sinope-gt125", "authors": ["@claudegel"], "category": "integration", "description": "Sinope custom component for Home Assistant to manage Sinop\u00e9 devices directly via the GT125 gateway", "domain": "sinope", "etag_repository": "W/\"0a66ffe0558a9c091ea0b0865f347f72b296de75143a568d0bcfec682b334198\"", "last_updated": "2023-04-02T21:18:15Z", "stargazers_count": 14, "topics": ["sinope"], "last_fetched": 1695553604.071083, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "456292486": {"repository_manifest": {"name": "Dabbler.dk reader for Echelon/NES smart power meter", "render_readme": true, "country": "DK"}, "full_name": "jnxxx/homeassistant-dabblerdk_powermeterreader", "authors": ["@jnxxx"], "category": "integration", "description": "Home Assistant integration for reading Echelon/NES smart power meter, by utilizing the Dabbler.dk MEP module ", "domain": "dabblerdk_powermeterreader", "downloads": 5, "etag_repository": "W/\"88e6aa1c68440cb2de1e0652d3d2e2e4105b8abd9cfad0c7ddaf3b5833e4c68f\"", "last_updated": "2023-03-19T14:54:23Z", "stargazers_count": 18, "topics": ["83331-3i", "dabbler-dk", "echelon", "energy", "nes", "powermeter"], "last_fetched": 1695554092.318731, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "401856574": {"repository_manifest": {"name": "Windcentrale", "zip_release": true, "filename": "windcentrale.zip", "homeassistant": "2022.8.0"}, "full_name": "jobvk/Home-Assistant-Windcentrale", "authors": ["@jobvk"], "category": "integration", "description": "Provides Home Assistant sensors for multiple wind turbines from the Windcentrale", "domain": "windcentrale", "downloads": 146, "etag_repository": "W/\"d8ac5f7f85e9eb72ffb76fa83902dce86cf8b53263c85feab40c767d6147aaed\"", "last_updated": "2023-09-24T10:12:30Z", "stargazers_count": 13, "topics": ["dutch", "wind-turbines", "windcentrale"], "last_fetched": 1695554092.437248, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "230974064": {"repository_manifest": {"name": "Oxford Blue", "render_readme": true}, "full_name": "arsaboo/oxford_blue_theme", "category": "theme", "description": "Oxford blue theme for Home Assistant", "etag_repository": "W/\"ac2553ff20c0159800b18580f88ac09db629c7ba26f9f19248347e6509448d20\"", "last_updated": "2020-02-27T00:08:56Z", "stargazers_count": 5, "last_fetched": 1695553492.724853, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197960232": {"repository_manifest": {}, "full_name": "ljmerza/our-groceries-card", "category": "plugin", "description": "our groceries lovelace card", "etag_repository": "W/\"e587767b01c833441533f23dd71182f636761872df5cda4b91b807ba70339afe\"", "last_updated": "2023-03-21T20:01:43Z", "stargazers_count": 29, "last_fetched": 1695553544.57639, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209855666": {"repository_manifest": {"name": "UPS", "country": "US"}, "full_name": "custom-components/ups", "category": "integration", "description": "The ups platform allows one to track deliveries by the UPS", "domain": "ups", "etag_repository": "W/\"e475cec6441376dd7469b9593df76ddf164edd90e0948e1388c5fa7b240af7d2\"", "last_updated": "2021-05-19T10:28:06Z", "stargazers_count": 5, "last_fetched": 1695553611.783437, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "238802974": {"repository_manifest": {"name": "Roomba Vacuum Card", "render_readme": true}, "full_name": "jeremywillans/lovelace-roomba-vacuum-card", "category": "plugin", "description": "HA Lovelace Card for iRobot Roomba Vacuum Cleaner leveraging the rest980 Docker Image", "etag_repository": "W/\"20549102f5356e83460f681b019bdce12e7995e1f2eebd3776bf163ad2266051\"", "last_updated": "2023-04-06T18:55:12Z", "stargazers_count": 41, "topics": ["irobot", "irobot-roomba", "lovelace-custom-card", "vacuum"], "last_fetched": 1695553539.069989, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "296320952": {"repository_manifest": {"name": "\u5c0f\u7c73\u4e91\u670d\u52a1", "render_readme": true, "homeassistant": "0.99.9", "country": ["CN"]}, "full_name": "fineemb/xiaomi-cloud", "authors": ["@fineemb"], "category": "integration", "description": "HASS\u7684\u5c0f\u7c73\u4e91\u670d\u52a1\u96c6\u6210", "domain": "xiaomi_cloud", "etag_repository": "W/\"31c8f5427c1a5d35b44d7f9639bd939d2b8c11e8f1fa5a58c10a317971252f5a\"", "last_updated": "2023-09-14T13:28:45Z", "stargazers_count": 38, "topics": ["cloud", "xiaomi"], "last_fetched": 1695553640.375617, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "542686924": {"repository_manifest": {"name": "ENTSO-e Transparency Platform", "render_readme": true}, "full_name": "JaccoR/hass-entso-e", "authors": ["@JaccoR"], "category": "integration", "description": "Integration for Home Assistant to fetch day ahead energy prices from European countries via ENTSO-e Transparency Platform", "domain": "entsoe", "etag_repository": "W/\"3234fe26708be1a855a6cc4154bdf273a40b019a02e4278fa9920e5b284ca801\"", "last_updated": "2023-01-16T13:39:58Z", "stargazers_count": 124, "topics": ["day-ahead", "day-ahead-auction", "day-ahead-market", "electricity-market", "electricity-prices", "energy", "energy-prices", "entso-e", "entsoe"], "last_fetched": 1695553668.766204, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "139892990": {"repository_manifest": {"name": "BrewDog", "render_readme": true}, "full_name": "custom-components/brewdog", "authors": ["@ludeeus"], "category": "integration", "description": "\ud83c\udf7b Display information about random beers from Brewdog as a sensor in Home Assistant, you can use this in a push notification next time you visit a bar.", "domain": "brewdog", "etag_repository": "W/\"f5c1afbde2810c0f09d05bd65168bf0d67e56300b181bba6776fc258a22ec4bc\"", "last_updated": "2022-03-11T08:08:33Z", "stargazers_count": 5, "topics": ["api", "brewdog", "punkapi"], "last_fetched": 1695553606.408059, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "213950645": {"repository_manifest": {"name": "ElkoEP Lara", "render_readme": true}, "full_name": "exKAjFASH/media_player.elkoep_lara", "category": "integration", "description": "Support for interface with an ElkoEP Lara devices", "domain": "elkoep_lara", "etag_repository": "W/\"7b81a29a3d43fb37265713a89cab22097a430c23f056b43b4cc8107cc0b179c6\"", "last_updated": "2022-04-21T20:37:03Z", "last_fetched": 1695553637.904164, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "184333163": {"repository_manifest": {"name": "Lovelace Card Templater", "render_readme": true}, "full_name": "gadgetchnnel/lovelace-card-templater", "category": "plugin", "description": "Custom Lovelace card which allows Jinja2 templates to be applied to other cards", "etag_repository": "W/\"0bfbd80321c548c87f250e513e3b0fa128e8827dbc28bcec3d3d0ba246a93844\"", "last_updated": "2023-01-07T15:41:51Z", "stargazers_count": 106, "last_fetched": 1695553532.668376, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "177169766": {"repository_manifest": {"name": "Wattbox", "homeassistant": "2022.3.0"}, "full_name": "eseglem/hass-wattbox", "authors": ["@eseglem"], "category": "integration", "description": "Home Assistant WattBox Component", "domain": "wattbox", "etag_repository": "W/\"fa36372d1946b492d864f3614c9a49904962e5ee82fd0877ff7ab215e4e90f3a\"", "last_updated": "2023-06-13T16:18:49Z", "stargazers_count": 9, "topics": ["battery", "ups", "wattbox"], "last_fetched": 1695553636.360477, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237880993": {"repository_manifest": {"name": "Smartmi smart heater", "render_readme": true, "homeassistant": "0.99.9", "country": ["CN"]}, "full_name": "fineemb/Smartmi-smart-heater", "authors": ["@fineemb"], "category": "integration", "description": "\u667a\u7c73\u667a\u80fd\u7535\u6696\u5668", "domain": "miheater", "etag_repository": "W/\"f9cabdbf9a0e977dc7051e7754081400de6eac0d25815e8bfeeafb563341f02c\"", "last_updated": "2022-12-20T03:16:37Z", "stargazers_count": 18, "last_fetched": 1695553640.170671, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "552532860": {"repository_manifest": {"name": "Seiverkot", "country": "FI", "render_readme": true}, "full_name": "evantaur/seiverkot-consumption", "authors": ["@evantaur"], "category": "integration", "description": "Add seiverkot consumption sensor to home assistant", "domain": "seiverkot", "etag_repository": "W/\"fe06d36e7d9354dc5669c5e1026cdc3d18eb488953899f29242f1d0f5392ba74\"", "last_updated": "2023-07-13T18:08:25Z", "stargazers_count": 2, "topics": ["energy-consumption", "energy-monitor", "seinajoen-energia", "seiverkot"], "last_fetched": 1695553636.479427, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "644033469": {"repository_manifest": {"name": "Weather.com", "render_readme": true}, "full_name": "jaydeethree/Home-Assistant-weatherdotcom", "authors": ["@jaydeethree"], "category": "integration", "description": "Home Assistant custom component sensor for Weather.com", "domain": "weatherdotcom", "etag_repository": "W/\"5e4aac0a209fb710e1c224339dc881da27261fdfe268b554e009c297e54a65d8\"", "last_updated": "2023-09-07T18:56:29Z", "stargazers_count": 15, "topics": ["hassio-integration", "weather", "weather-forecast"], "last_fetched": 1695553671.461616, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "290436986": {"repository_manifest": {"name": "\u5f69\u4e91\u5929\u6c14", "render_readme": true, "homeassistant": "0.99.9", "country": ["CN"]}, "full_name": "fineemb/Colorfulclouds-weather", "authors": ["@fineemb"], "category": "integration", "description": "\u7528\u4e8eHASS\u7684\u5f69\u4e91\u5929\u6c14\u7ec4\u4ef6", "domain": "colorfulclouds", "etag_repository": "W/\"528a8a5c10d3af179327e2370899c87a289ca8da73ebf6f6badd5cc9f5598e0c\"", "last_updated": "2023-05-19T01:22:07Z", "stargazers_count": 104, "topics": ["weather"], "last_fetched": 1695553639.888242, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "159711605": {"repository_manifest": {"name": "Secondaryinfo Entity Row", "content_in_root": true, "filename": "secondaryinfo-entity-row.js", "render_readme": true, "homeassistant": "0.88"}, "full_name": "custom-cards/secondaryinfo-entity-row", "category": "plugin", "description": "Custom entity row for HomeAssistant, providing additional types of data to be displayed in the secondary info area of the Lovelace Entities card", "etag_repository": "W/\"92f2a2edb71b18c22df5903109f47874789735f146da48b73cb49527c6d3fe79\"", "last_updated": "2021-06-05T21:12:36Z", "stargazers_count": 155, "last_fetched": 1695553520.253322, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "358585486": {"repository_manifest": {"name": "Multiscrape", "homeassistant": "2023.8.0", "render_readme": true}, "full_name": "danieldotnl/ha-multiscrape", "authors": ["@danieldotnl"], "category": "integration", "description": "Home Assistant custom component for scraping (html, xml or json) multiple values (from a single HTTP request) with a separate sensor/attribute for each value. Support for (login) form-submit functionality.", "domain": "multiscrape", "etag_repository": "W/\"82efbc85abd12228f1915cf61929d16e7bec5e7c0a5befaffcb8681eb7d7105d\"", "last_updated": "2023-09-18T14:27:55Z", "stargazers_count": 173, "topics": ["rest", "scrape", "scraper", "scraping"], "last_fetched": 1695553618.524707, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286186485": {"repository_manifest": {"name": "Scheduler component", "render_readme": true}, "full_name": "nielsfaber/scheduler-component", "authors": ["@nielsfaber"], "category": "integration", "description": "Custom component for HA that enables the creation of scheduler entities", "domain": "scheduler", "downloads": 187, "etag_repository": "W/\"126b1b4a4f8e1aa012aaef35b00fba44687aea6f6553950723b0e1c973d73ec9\"", "last_updated": "2023-09-19T19:05:32Z", "stargazers_count": 451, "topics": ["scheduler"], "last_fetched": 1695554134.974246, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "173955605": {"repository_manifest": {"name": "Spotify Lovelace Card", "render_readme": true, "filename": "spotify-card.js"}, "full_name": "custom-cards/spotify-card", "category": "plugin", "description": "Spotify playlist card for Home Assistant card", "etag_repository": "W/\"953224b272eecdf744ac9f1d58353eb0b7977b570e394faec2b4a11357813caa\"", "last_updated": "2023-05-29T10:51:50Z", "stargazers_count": 327, "last_fetched": 1695553520.637889, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "451209586": {"repository_manifest": {"name": "Flagdays DK", "country": ["DK"], "render_readme": true}, "full_name": "J-Lindvig/Flagdays_DK", "authors": ["@J-Lindvig"], "category": "integration", "description": "\ud83c\udde9\ud83c\uddf0 Official flagdays in Denmark with a lot of useful logic and attributes. It is possible to add your own anniversaries \ud83c\udf82 or special flags \ud83c\udff3\ufe0f\u200d\ud83c\udf08 \ud83c\udff4\u200d\u2620\ufe0f", "domain": "flagdays_dk", "etag_repository": "W/\"06a217d2333adfd8d9a9c3888aceaffcde2b88851375964b6e757476faf93ca0\"", "last_updated": "2023-02-07T15:39:45Z", "stargazers_count": 4, "topics": ["anniversaries", "denmark", "flagdays", "pride"], "last_fetched": 1695553666.943744, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "242700009": {"repository_manifest": {"name": "Kostal Plenticore"}, "full_name": "ITTV-tools/homeassistant-kostalplenticore", "authors": ["@ITTV-Tools"], "category": "integration", "description": "Home Assistant Component for Kostal Plenticore ", "domain": "kostal_plenticore", "etag_repository": "W/\"c3e857e539c073902f781d6f763c0f4ff00c92416b9bc9b2df1871fea1c873fa\"", "last_updated": "2022-07-21T18:38:06Z", "stargazers_count": 14, "topics": ["component", "kostal", "plenticore"], "last_fetched": 1695553666.80149, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "517642950": {"repository_manifest": {"name": "Apex"}, "full_name": "itchannel/apex-ha", "authors": ["@itchannel"], "category": "integration", "description": "Local Neptune Apex HA Integration (Aquarium Controller)", "domain": "apex", "etag_repository": "W/\"c3453bae484d702b222214e154ec5dbb2e1b00c7768a17af84f69dd28c0651a6\"", "last_updated": "2023-08-04T11:26:42Z", "stargazers_count": 8, "topics": ["aquarium", "aquarium-controller"], "last_fetched": 1695553666.805778, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512169290": {"repository_manifest": {"name": "CoCT Loadshedding Interface", "homeassistant": "2022.7.1", "country": "ZA"}, "full_name": "tinuva/ha-coct-loadshedding", "authors": ["@tinuva"], "category": "integration", "description": "Fetches loadshedding data from City of Cape Town", "domain": "coct_loadshedding", "etag_repository": "W/\"f5e031fdfb9996cc32b32625a9cf34d7fc32453a95446cd996671d287b32021c\"", "last_updated": "2023-07-19T06:51:59Z", "stargazers_count": 20, "topics": ["cape", "cape-town", "capetown", "eskom", "loadshedding", "south-africa"], "last_fetched": 1695554183.621578, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "625369698": {"repository_manifest": {"name": "FreeDS"}, "full_name": "IvanSanchez/homeassistant-freeds", "authors": ["@ivansanchez"], "category": "integration", "description": "FreeDS integration for Home Assistant (read-only clone of gitlab repo)", "domain": "freeds", "etag_repository": "W/\"22dc47d75c5a253562d7a5d138a2af659e9a2609e7d02c4f122c1266e93d95af\"", "last_updated": "2023-09-18T22:13:17Z", "stargazers_count": 6, "topics": ["freeds"], "last_fetched": 1695553666.762548, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "479221839": {"repository_manifest": {"hacs": "1.6.0", "name": "Swatch", "homeassistant": "2021.12.0b2"}, "full_name": "NickM-27/swatch-hass-integration", "authors": ["@NickM-27"], "category": "integration", "description": "HomeAssistant Integration For Swatch: Color detection in images to capture presense of known objects.", "domain": "swatch", "etag_repository": "W/\"b8d33426368debb56e09f937c1fa935beb2b4759386a4822a91dfee4bf30b72f\"", "last_updated": "2023-05-13T12:52:31Z", "stargazers_count": 10, "topics": ["ai", "camera", "home-assistant-integration", "object-detection", "opencv"], "last_fetched": 1695554134.184218, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "178838527": {"repository_manifest": {"name": "Niko Home Control II", "render_readme": true, "homeassistant": "0.114.1"}, "full_name": "filipvh/hass-nhc2", "authors": ["@filipvh"], "category": "integration", "description": "Niko Home Control II Home Assistant Integration", "domain": "nhc2", "etag_repository": "W/\"0c3ef761ba46c018c27bf509eae01f7affec4d0e2db853b26488ca8beacefcde\"", "last_updated": "2023-01-08T16:29:48Z", "stargazers_count": 37, "topics": ["coco", "domotica", "nhc", "nhc2", "niko", "niko-home-control"], "last_fetched": 1695553638.992005, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316396217": {"repository_manifest": {"name": "Mjpeg Timelapse", "homeassistant": "0.118.0", "render_readme": true}, "full_name": "evilmarty/mjpeg-timelapse", "authors": ["@evilmarty"], "category": "integration", "description": "Mjpeg Timelapse integration for Home Assistant", "domain": "mjpeg_timelapse", "etag_repository": "W/\"a3623c6c99f9d5619ab6303b12a5e51ee93736436bbd6cbd45061c30b8cb947b\"", "last_updated": "2023-05-20T10:05:33Z", "stargazers_count": 21, "topics": ["camera"], "last_fetched": 1695553637.706753, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "147764937": {"repository_manifest": {"name": "surveillance-card", "content_in_root": true, "render_readme": true}, "full_name": "custom-cards/surveillance-card", "category": "plugin", "description": "A custom component for displaying camera feeds in the style of a surveillance system.", "etag_repository": "W/\"f29aa92f5da8ca6a04eb80169577d075df50f7ba55c32ff54f8a8e7e7b91ec26\"", "last_updated": "2023-05-15T22:13:17Z", "stargazers_count": 214, "topics": ["camera", "motion", "security"], "last_fetched": 1695553520.541188, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "327779379": {"repository_manifest": {"name": "Optus"}, "full_name": "itchannel/optus-ha", "authors": ["@itchannel"], "category": "integration", "description": "Optus Mobile Home Assistant Integration", "domain": "optus", "etag_repository": "W/\"4e6d068e4fa3e9134f82bf940880610bcc468c94a973fabb06d24f47a0e1708a\"", "last_updated": "2021-06-13T00:40:48Z", "stargazers_count": 3, "topics": ["assistant", "mobile", "optus"], "last_fetched": 1695553666.716281, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164367214": {"repository_manifest": {"name": "Roku Card", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "iantrich/roku-card", "category": "plugin", "description": "\ud83d\udcfa Roku Remote Card", "downloads": 7891, "etag_repository": "W/\"466844c222efea474deb47d241fbf2e00fea05a2c8c8c5f53bf408d6358d9fb8\"", "last_updated": "2023-04-30T04:51:39Z", "stargazers_count": 102, "topics": ["roku"], "last_fetched": 1695553536.338344, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "585050790": {"repository_manifest": {"name": "tdarr"}, "full_name": "itchannel/tdarr_ha", "authors": ["@itchannel"], "category": "integration", "description": "Tdarr Home Assistant Integration", "domain": "tdarr", "etag_repository": "W/\"722ccba1e98a66de5b90fc82847d51927eb67dfd291930255686597f96971656\"", "last_updated": "2023-07-27T04:19:12Z", "stargazers_count": 7, "topics": ["assistant", "home", "tdarr", "transcoding"], "last_fetched": 1695553666.783574, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "290281267": {"repository_manifest": {"name": "Fullscreen Card", "render_readme": true}, "full_name": "KTibow/fullscreen-card", "category": "plugin", "description": "Make your Home Assistant browser fullscreen with one tap.", "downloads": 1714, "etag_repository": "W/\"cdac43c402542f48f8f0b6882c46a7aefba589c5ebdb815ef716fc42f283cfc9\"", "last_updated": "2023-05-18T14:00:38Z", "stargazers_count": 34, "topics": ["card", "fullscreen", "hacktoberfest2020"], "last_fetched": 1695553543.876392, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215633404": {"repository_manifest": {"name": "Restriction Card", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "iantrich/restriction-card", "category": "plugin", "description": "\ud83d\udd12 Apply restrictions to Lovelace cards", "downloads": 5650, "etag_repository": "W/\"1450aa1f9846ee9cca276e4985c21ff244145869cd7b49e330d70acbc6a9aa75\"", "last_updated": "2023-07-06T19:12:35Z", "stargazers_count": 210, "topics": ["security"], "last_fetched": 1695553535.760667, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "364769821": {"repository_manifest": {"name": "Harmony Remote Card", "render_readme": true, "filename": "dist/harmony-remote-card.js"}, "full_name": "ljmerza/harmony-remote-card", "category": "plugin", "description": "Harmony Hub Remote Control Card for Home Assistant", "downloads": 1149, "etag_repository": "W/\"5285b227810daf3a0baef197a8d208b50aad37e332ecb3133b3eea3f178a08b6\"", "last_updated": "2023-08-29T20:33:08Z", "stargazers_count": 10, "topics": ["harmony", "remote"], "last_fetched": 1695553544.885292, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "433577406": {"repository_manifest": {"name": "Config Editor", "render_readme": "true"}, "full_name": "htmltiger/config-editor", "authors": ["@htmltiger"], "category": "integration", "description": "Home Assistant Configuration Editor Helper", "domain": "config_editor", "etag_repository": "W/\"5097e486cc156f631901bd1892769abb069358196b61679598c4252c129f7cc5\"", "last_updated": "2023-02-27T01:32:43Z", "stargazers_count": 20, "topics": ["homeassistant-config"], "last_fetched": 1695553661.122115, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534083455": {"repository_manifest": {"name": "Deutsche Bahn", "render_readme": true, "country": ["DE"]}, "full_name": "FaserF/ha-deutschebahn", "authors": ["@faserf"], "category": "integration", "description": "Unofficial HA DB Integration, due to removal as of Home Assistant 2022.11", "domain": "deutschebahn", "etag_repository": "W/\"44703be8c303a12a373314a20319e67123e46086f419b127d57e98eabfdfe41c\"", "last_updated": "2023-09-22T20:16:55Z", "stargazers_count": 24, "last_fetched": 1695553638.512934, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "168570875": {"repository_manifest": {}, "full_name": "ljmerza/fitbit-card", "category": "plugin", "description": "fitbit-card for lovelace", "downloads": 2270, "etag_repository": "W/\"4a397421b41e8723909fd8abeec245e8a1cf804bb51dd8d5909cdb892e787686\"", "last_updated": "2020-07-10T20:55:32Z", "stargazers_count": 25, "last_fetched": 1695553543.822756, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "179347477": {"repository_manifest": {"name": "Circadian Lighting"}, "full_name": "claytonjn/hass-circadian_lighting", "authors": ["@claytonjn"], "category": "integration", "description": "Circadian Lighting custom component for Home Assistant", "domain": "circadian_lighting", "etag_repository": "W/\"0dc2d2146e690b43be561bc1d48c0c3b26452f758dfec4fd0421434a57936da3\"", "last_updated": "2023-08-29T10:24:42Z", "stargazers_count": 692, "topics": ["circadian", "circadian-rhythms", "lighting", "sleep", "wellness"], "last_fetched": 1695553604.217606, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233092629": {"repository_manifest": {"name": "tvh_rec", "country": "NO"}, "full_name": "kodi1/tvh_rec", "authors": ["@kodi1"], "category": "integration", "description": "tvheadend recorder sensor - lovelace upcoming media card", "domain": "tvh_rec", "etag_repository": "W/\"bfccbeeb9ab790a35116a0b8b5e100cab7c4831ccbfc9e12ff23656530f1f2f5\"", "last_updated": "2022-01-09T10:38:49Z", "stargazers_count": 3, "topics": ["recordings", "tvheadend"], "last_fetched": 1695554101.219608, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232077394": {"repository_manifest": {"name": "Chargeamps", "render_readme": true}, "full_name": "kirei/hass-chargeamps", "authors": ["@kirei"], "category": "integration", "description": "Home Assistant Component for Chargeamps", "domain": "chargeamps", "etag_repository": "W/\"278eb28b62a51f6595f061c16e5b1b4deb0b4f50be65cc75a57733d3ef05dce3\"", "last_updated": "2023-08-05T19:11:30Z", "stargazers_count": 21, "topics": ["chargeamps"], "last_fetched": 1695554099.282511, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234983286": {"repository_manifest": {"name": "Govee BLE HCI monitor sensor integration"}, "full_name": "Home-Is-Where-You-Hang-Your-Hack/sensor.goveetemp_bt_hci", "authors": ["@thrilleratplay"], "category": "integration", "description": "Govee Temperature/Humidity BLE Home Assistant Component", "domain": "govee_ble_hci", "etag_repository": "W/\"afd2e8aede43ebe145cd86426d71d8471f38603859358c1f72c23b1bc7878b50\"", "last_updated": "2023-01-07T20:46:55Z", "stargazers_count": 154, "topics": ["ble", "govee", "h5051", "h5072", "h5074", "h5075", "h5101", "h5102", "h5177", "h5179", "home-assistant-component"], "last_fetched": 1695553659.171286, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "603218187": {"repository_manifest": {"name": "MyLight Systems", "render_readme": true, "homeassistant": "2022.2.0"}, "full_name": "acesyde/hassio_mylight_integration", "authors": ["@acesyde"], "category": "integration", "description": "MyLight Systems integration - Home Assistant", "domain": "mylight_systems", "etag_repository": "W/\"49f0a89f49e8709750f02c6630665b799b206328f4a524f927f7b9b4d4f287b1\"", "last_updated": "2023-09-01T06:44:07Z", "stargazers_count": 3, "topics": ["mylight"], "last_fetched": 1695553571.68579, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "198460710": {"repository_manifest": {"name": "Date Countdown"}, "full_name": "point-4ward/ps-date-countdown", "category": "python_script", "description": "A python script for Homeassistant that counts down the days to birthdays, anniversaries etc", "etag_repository": "W/\"05b131a5942e5a347824f121991a0d45adf6ededecffe894506985e71b12ba02\"", "last_updated": "2021-05-15T02:00:07Z", "stargazers_count": 21, "last_fetched": 1695553508.148929, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202546107": {"repository_manifest": {}, "full_name": "bbbenji/synthwave-hass-extras", "category": "plugin", "description": "Extras for the synthwave inspired theme for Home Assistant", "etag_repository": "W/\"99e908db71d7dbca1d223f75f4bbdea44a1b98b35087d3b77177778ad29053b9\"", "last_updated": "2020-10-30T00:24:02Z", "stargazers_count": 13, "last_fetched": 1695553512.673833, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "484538222": {"repository_manifest": {"name": "Power Flow Card", "render_readme": true, "homeassistant": "2021.8.0"}, "full_name": "ulic75/power-flow-card", "category": "plugin", "description": "A power distribution card inspired by the official Energy Distribution card for Home Assistant", "downloads": 12424, "etag_repository": "W/\"b90f4386edca6d03ed7843ec575ab6f5322779ece21ce161d348a67f9e0c389f\"", "last_updated": "2023-08-03T05:13:49Z", "stargazers_count": 134, "topics": ["dashboard"], "last_fetched": 1695553567.255052, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201292040": {"repository_manifest": {"name": "Zigbee2mqtt Networkmap Card", "render_readme": true}, "full_name": "azuwis/zigbee2mqtt-networkmap", "category": "plugin", "description": "Home Assistant Custom Card to show Zigbee2mqtt network map", "downloads": 5138, "etag_repository": "W/\"1d177108ea8bbc43936c559022154d7c6b9265f2d3d4e5e1c4ac99b40f61f25f\"", "last_updated": "2023-07-20T05:58:52Z", "stargazers_count": 172, "topics": ["zigbee2mqtt"], "last_fetched": 1695553512.688338, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "159025199": {"repository_manifest": {}, "full_name": "kalanda/homeassistant-aemet-sensor", "authors": ["@kalanda"], "category": "integration", "description": "AEMET integration for Home Assistant", "domain": "aemet", "etag_repository": "W/\"89aca8cac69565758fbc5ca301ba118d3eb3c3cbfcc3d2b068277fc871af84f1\"", "last_updated": "2022-06-03T06:00:18Z", "stargazers_count": 21, "topics": ["aemet"], "last_fetched": 1695554096.836729, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "437278224": {"repository_manifest": {"name": "Dell Printer", "render_readme": true}, "full_name": "kongo09/hass-dell-printer", "authors": ["@kongo09"], "category": "integration", "description": "Support DELL printers in Home Assistant", "domain": "dell_printer", "etag_repository": "W/\"d8d936bcb9e9e3d8b4639ddf25411b000cf8ac2bed642d46d9a2ec5bdd60cb0a\"", "last_updated": "2022-06-26T17:26:42Z", "stargazers_count": 6, "topics": ["dell", "printer"], "last_fetched": 1695554103.383201, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233089370": {"repository_manifest": {"name": "esp_wd", "render_readme": "true", "country": "NO"}, "full_name": "kodi1/esp_wd", "authors": ["@kodi1"], "category": "integration", "description": "easyesp status sensor", "domain": "esp_wd", "etag_repository": "W/\"d60f64fdd00c54a3d91e73c8f31350d8a713453fdf333d013c123f09ff7e579a\"", "last_updated": "2022-02-23T01:23:48Z", "stargazers_count": 2, "topics": ["esp-easy"], "last_fetched": 1695554101.220913, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233092112": {"repository_manifest": {"name": "songpal_m", "render_readme": "true", "country": "NO"}, "full_name": "kodi1/songpal_m", "authors": ["@kodi1"], "category": "integration", "description": "songpal - volume down workaround", "domain": "songpal_m", "etag_repository": "W/\"6b6536864c8026f83edf728e92538884c8c25093029a698150a5a065bf408140\"", "last_updated": "2021-03-28T10:15:20Z", "stargazers_count": 1, "topics": ["songpal"], "last_fetched": 1695554101.150709, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279680951": {"repository_manifest": {"name": "Jablotron 100", "country": ["CS", "DA", "DE", "EN", "IT", "NB", "NL", "SK"], "homeassistant": "2023.8.0", "render_readme": true}, "full_name": "kukulich/home-assistant-jablotron100", "authors": ["@kukulich"], "category": "integration", "description": "Home Assistant custom component for JABLOTRON 100+ alarm system", "domain": "jablotron100", "etag_repository": "W/\"a30a282a01399f7a8dcac1d00961b8a8aab07c5cd9e1e178162a8cf785840926\"", "last_updated": "2023-09-24T08:04:59Z", "stargazers_count": 55, "topics": ["alarm", "jablotron"], "last_fetched": 1695554105.779967, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "645730299": {"repository_manifest": {"name": "LeoNTP", "render_readme": true}, "full_name": "CumpsD/home-assistant-leo-ntp", "authors": ["@CumpsD"], "category": "integration", "description": "Home Assistant integration for LeoNTP 1200", "domain": "leo_ntp", "etag_repository": "W/\"0e13bf1c71c9ef2eb6846dde64c49e3404a2b33ea59bde3acad5f9c8e68581df\"", "last_updated": "2023-09-18T12:53:15Z", "stargazers_count": 2, "topics": ["leo-ntp", "ntp", "timeserver"], "last_fetched": 1695553605.440403, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207292725": {"repository_manifest": {"name": "Flexible Horseshoe Card for Lovelace", "content_in_root": true, "filename": "flex-horseshoe-card.js"}, "full_name": "AmoebeLabs/flex-horseshoe-card", "category": "plugin", "description": "Flexible Horseshoe card for Home Assistant Lovelace UI. A card with a flexible layout, a horseshoe-like donut graph, multiple entities or attributes, graphics and animations!", "etag_repository": "W/\"92925f9ee2f01aaa65464b6c0f44e3e1a37569aa6dffee33da81b3c5ce97a30e\"", "last_updated": "2023-05-09T16:13:21Z", "stargazers_count": 183, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553510.936893, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "446609758": {"repository_manifest": {"name": "Nicehash Excavator API", "render_readme": true, "homeassistant": "2021.12.1"}, "full_name": "MesserschmittX/ha-nicehash-excavator-monitor", "authors": ["@MesserschmittX"], "category": "integration", "description": "Home Assistant integration for Nicehash Excavator miner API", "domain": "nicehash_excavator", "etag_repository": "W/\"885465705273fce51de85e9dac95d043eb4f7ef71b7ac3d35392f4f5b097b6bb\"", "last_updated": "2022-05-15T07:11:45Z", "stargazers_count": 4, "topics": ["excavator", "mining", "nicehash"], "last_fetched": 1695554121.856755, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316807165": {"repository_manifest": {"name": "Miele integration"}, "full_name": "HomeAssistant-Mods/home-assistant-miele", "authors": ["@kloknibor", "@docbobo"], "category": "integration", "description": "Miele integration for Home assistant", "domain": "miele", "etag_repository": "W/\"8ad9a29701d9a1b1ebe13c8bcccda23b71a2079fb15c7be9667919e76fcb15f7\"", "last_updated": "2023-09-06T10:20:58Z", "stargazers_count": 118, "topics": ["miele"], "last_fetched": 1695553659.023103, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "335750566": {"repository_manifest": {"name": "Brandstofprijzen", "render_readme": true, "country": ["NL"]}, "full_name": "metbril/home-assistant-brandstofprijzen", "authors": ["@metbril"], "category": "integration", "description": "Home Assistant component for fuel prices from United Consumers", "domain": "brandstofprijzen", "etag_repository": "W/\"f3699dd55e197228d1600f05edb67d6b8a587b4d6a22ff728d7aa9be6189362e\"", "last_updated": "2023-09-04T14:37:50Z", "stargazers_count": 5, "last_fetched": 1695554121.858194, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "602776380": {"repository_manifest": {"name": "Balance Neto", "render_readme": true, "homeassistant": "2023.1.0", "country": "ES"}, "full_name": "MiguelAngelLV/balance_neto", "authors": ["@miguelangellv"], "category": "integration", "description": "Componente para Home Assistant que calcula el Balance Neto Horario para instalaciones fotovolt\u00e1icas.", "domain": "balance_neto", "etag_repository": "W/\"04c7ebe727848ac6140226cfbdbfd585a59d79eb307573c7b931752c945ba38e\"", "last_updated": "2023-09-21T10:53:06Z", "stargazers_count": 17, "topics": ["fotovoltaica"], "last_fetched": 1695554122.983064, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "410667735": {"repository_manifest": {"name": "Reaper DAW", "homeassistant": "2021.9.0", "zip_release": true, "filename": "reaper.zip", "render_readme": true}, "full_name": "kubawolanin/ha-reaper", "authors": ["@kubawolanin"], "category": "integration", "description": "Reaper DAW custom integration for Home Assistant", "domain": "reaper", "downloads": 211, "etag_repository": "W/\"1a1503464272994a2bfceb94ab194d9dacfb9b6efeb23457f0e5f0249f30cc00\"", "last_updated": "2021-11-12T16:36:27Z", "stargazers_count": 15, "topics": ["daw", "digital-audio-workstation", "reaper"], "last_fetched": 1695554105.533881, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "242635439": {"repository_manifest": {"name": "Disk Space", "render_readme": true}, "full_name": "kuchel77/diskspace", "authors": ["@kuchel77"], "category": "integration", "description": "Disk space for a path. For use with Home Assistant", "domain": "diskspace", "etag_repository": "W/\"3a77fc3091ef1d22432af6fa2fd820d36822e89ab998bd353d5f08af376b0562\"", "last_updated": "2021-04-18T05:13:59Z", "stargazers_count": 9, "topics": ["assistant", "disk", "home", "space"], "last_fetched": 1695554105.764106, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "295627573": {"repository_manifest": {"name": "Fortnite Stats", "hacs": "0.24.0", "homeassistant": "0.110.0", "render_readme": true}, "full_name": "michaellunzer/Home-Assistant-Custom-Component-Fortnite", "authors": ["@michaellunzer", "@clyra"], "category": "integration", "description": "This is a Home-Assistant custom component that pulls Fortnite stats using the python API library from the site fortnitetracker.com", "domain": "fortnite", "downloads": 18, "etag_repository": "W/\"345d9f4d3a2d4151818edac4fbe1b8b6f6de90878806eb633fb65f311dc2ae98\"", "last_updated": "2021-11-03T06:00:38Z", "stargazers_count": 4, "topics": ["fortnite", "fortnite-api", "fortnite-stats"], "last_fetched": 1695554121.992533, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582589896": {"repository_manifest": {"name": "Versatile Thermostat", "render_readme": true, "homeassistant": "2023.7.3"}, "full_name": "jmcollin78/versatile_thermostat", "authors": ["@jmcollin78"], "category": "integration", "description": "A full featured Thermostat for Home Assistant: presets, window, motion, presence and overpowering management", "domain": "versatile_thermostat", "etag_repository": "W/\"8f951569ec9a1badff3cbd780f16e89c333af603dc8c25cea7d376f038b6a81a\"", "last_updated": "2023-09-24T02:58:48Z", "stargazers_count": 72, "topics": ["hacs-custom", "thermostat"], "last_fetched": 1695554092.599656, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214786112": {"repository_manifest": {"name": "Swiss Army Knife custom card", "render_readme": true}, "full_name": "AmoebeLabs/swiss-army-knife-card", "category": "plugin", "description": "The versatile custom Swiss Army Knife card for Home Assistant allows you to create your unique visualization using several graphical tools, styling options and animations.", "etag_repository": "W/\"8298a484d3f74032878140174f2867b8573af8910d697ceff609ad6da6162370\"", "last_updated": "2023-09-02T13:29:17Z", "stargazers_count": 178, "topics": ["home-assistant-custom-card", "lovelace-card", "lovelace-custom-card", "material-3", "svg"], "last_fetched": 1695553512.202135, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "420701401": {"repository_manifest": {"name": "Water heater CLAGE DSX Touch", "render_readme": true, "country": ["DE"], "homeassistant": "2021.11.0"}, "full_name": "klacol/homeassistant-clage_homeserver", "authors": ["@klacol"], "category": "integration", "description": "Home Assistant integration for the water heater CLAGE DSX Touch connected through a Clage Homeserver", "domain": "clage_homeserver", "etag_repository": "W/\"d9cde36b7ffd9aed8558d254f5301435710fc6e5e9ef7537f426129bc7ca157d\"", "last_updated": "2023-06-19T04:43:36Z", "stargazers_count": 1, "topics": ["clage", "waterheater"], "last_fetched": 1695554100.891419, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "305188358": {"repository_manifest": {"name": "Heatmiser Wifi", "render_readme": true}, "full_name": "midstar/heatmiser_wifi_ha", "authors": ["@midstar"], "category": "integration", "description": "Heatmiser Wifi Home Assistant Component", "domain": "heatmiser_wifi", "etag_repository": "W/\"8a2581fed05af6b52aeb64cc83aea7a3a22cf598f59be5a73c823e7348589390\"", "last_updated": "2022-05-12T14:24:49Z", "stargazers_count": 3, "topics": ["climate", "heatmiser", "homeassisant", "thermostat", "wifi"], "last_fetched": 1695554121.94097, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192664631": {"repository_manifest": {"name": "Bosch Indego Mower", "country": ["AT", "BY", "BE", "HR", "CZ", "DK", "EE", "FI", "FR", "DE", "HU", "IT", "KZ", "LV", "LT", "NL", "NO", "PL", "PT", "RU", "SK", "SI", "ES", "SE", "CH", "GB", "SA", "AE"], "homeassistant": "0.110.0"}, "full_name": "jm-73/Indego", "authors": ["@jm-73", "@eavanvalkenburg", "@sander1988"], "category": "integration", "description": "Home Assistant Custom Component for Bosch Indego Lawn Mower", "domain": "indego", "etag_repository": "W/\"6b5d9d97651defc2e5076bdf0b05c796567ec7dfdccb542545b71d915afed152\"", "last_updated": "2023-09-24T08:41:35Z", "stargazers_count": 66, "topics": ["bosch-mower", "indego", "iot"], "last_fetched": 1695554092.411157, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "408429126": {"repository_manifest": {"name": "MQTT DiscoveryStream", "render_readme": true}, "full_name": "koying/mqtt_discoverystream_ha", "authors": ["@koying"], "category": "integration", "description": "Extension of HA mqtt_statestream integration with discovery config publishing", "domain": "mqtt_discoverystream", "etag_repository": "W/\"0f7f3a5b158da84bf79651190443d2a3b13f7c7d0d77010b07347c9529145321\"", "last_updated": "2023-07-22T07:08:14Z", "stargazers_count": 6, "topics": ["mqtt"], "last_fetched": 1695554103.377116, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441920613": {"repository_manifest": {"name": "Thermia Heat Pump", "render_readme": true}, "full_name": "klejejs/ha-thermia-heat-pump-integration", "authors": ["@klejejs"], "category": "integration", "description": "Thermia Heat Pump Integration for Home Assistant", "domain": "thermia", "etag_repository": "W/\"294080fdfec2fec7a5e0007dfaee1739689b8d3fe729d7deb78240b969c310eb\"", "last_updated": "2023-08-21T12:27:29Z", "stargazers_count": 21, "topics": ["heat-pump", "thermia"], "last_fetched": 1695554101.216006, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "591270696": {"repository_manifest": {"name": "windrose-card", "render_readme": true, "filename": "windrose-card.js"}, "full_name": "aukedejong/lovelace-windrose-card", "category": "plugin", "description": "Home Assistant Lovelace Windrose Card", "downloads": 2302, "etag_repository": "W/\"0992df3ffea765e814878ec8bfa7d91cd022acbd39f1abcaf5769c325712a48e\"", "last_updated": "2023-07-17T18:12:35Z", "stargazers_count": 36, "topics": ["weather-dashboard", "windrose"], "last_fetched": 1695553512.800363, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "253019926": {"repository_manifest": {"name": "mini humidifier", "filename": "mini-humidifier-bundle.js"}, "full_name": "artem-sedykh/mini-humidifier", "category": "plugin", "description": "Minimalistic humidifier card for Home Assistant Lovelace UI", "downloads": 2445, "etag_repository": "W/\"e871863cf367f346b37cda3a6df6e0dca92baebc8c375e71e1d878d5fb2c77e3\"", "last_updated": "2023-09-06T14:11:42Z", "stargazers_count": 144, "topics": ["automation", "custom", "humidifier"], "last_fetched": 1695553512.570499, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207018200": {"repository_manifest": {"name": "Garbage Collection Card", "filename": "garbage-collection-card.js", "render_readme": "true"}, "full_name": "amaximus/garbage-collection-card", "category": "plugin", "description": "Custom Lovelace card for Garbage Collection custom component", "downloads": 7495, "etag_repository": "W/\"07a69a2160a9e910e19cdbb0160438863833dd2fe4446165f478e552876c8fe3\"", "last_updated": "2023-05-07T18:31:32Z", "stargazers_count": 108, "topics": ["garbage-collection", "lovelace-custom-card", "ui-lovelace"], "last_fetched": 1695553510.772101, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "364208180": {"repository_manifest": {"name": "Jellyfin", "render_readme": true}, "full_name": "koying/jellyfin_ha", "authors": ["@koying"], "category": "integration", "description": "Jellyfin integration for Home Assistant", "domain": "jellyfin", "etag_repository": "W/\"159a87bac68e91c8c5dc2b641e4ec0d7c3af213194506701189e1eec852377ce\"", "last_updated": "2022-10-22T14:54:07Z", "stargazers_count": 79, "topics": ["jellyfin"], "last_fetched": 1695554103.492964, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233079250": {"repository_manifest": {"name": "darksky_m", "render_readme": "true", "country": "NO"}, "full_name": "kodi1/darksky_m", "authors": ["@kodi1"], "category": "integration", "description": "darksky - clouds cover and alerts", "domain": "darksky_m", "etag_repository": "W/\"412d8d1b1f0cf9de05f2da97e97b4f8bc7c00c5ca234b9474e26d995cb7e5a4d\"", "last_updated": "2021-03-28T10:12:47Z", "topics": ["darksky"], "last_fetched": 1695554101.168577, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "139664351": {"repository_manifest": {"name": "Alexa Media Player", "zip_release": true, "filename": "alexa_media.zip", "homeassistant": "2022.11.0b0"}, "full_name": "custom-components/alexa_media_player", "authors": ["@alandtse", "@keatontaylor"], "category": "integration", "description": "This is a custom component to allow control of Amazon Alexa devices in Home Assistant using the unofficial Alexa API.", "domain": "alexa_media", "downloads": 4987, "etag_repository": "W/\"b1c9a406bc827523bb94ab71664ca90184c6218989e1c87c396d730ff396d46c\"", "last_updated": "2023-09-22T08:16:05Z", "stargazers_count": 1158, "topics": ["alexa"], "last_fetched": 1695553605.705047, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "378213601": {"repository_manifest": {"name": "Argoclima", "homeassistant": "2022.7.0"}, "full_name": "nyffchanium/argoclima-integration", "authors": ["@nyffchanium"], "category": "integration", "description": "Home Assistant integration for Argoclima (Argo) climate control devices", "domain": "argoclima", "etag_repository": "W/\"ecc4ac77d20df66d283675ddd4b55a5f5f0af07845c64fbfa896894981016da2\"", "last_updated": "2023-06-11T10:46:28Z", "stargazers_count": 14, "topics": ["argo", "argoclima", "climate-control"], "last_fetched": 1695554135.10421, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269474857": {"repository_manifest": {"name": "Tab Redirect Card", "render_readme": true}, "full_name": "ben8p/lovelace-tab-redirect-card", "category": "plugin", "description": "Custom lovelace card to use in\u00a0Home assistant allowing you to redirect a user to certain view based on entity states.", "etag_repository": "W/\"da6ed1dee5b3ae3965b276697362d30a7f670d178f93e7dc3f6f1618aa4556ff\"", "last_updated": "2023-04-29T05:41:43Z", "stargazers_count": 14, "topics": ["lovelace-custom-card"], "last_fetched": 1695553514.019154, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "422931599": {"repository_manifest": {"name": "Better Thermostat", "render_readme": true, "homeassistant": "2022.8.0", "hide_default_branch": true}, "full_name": "KartoffelToby/better_thermostat", "authors": ["@kartoffeltoby"], "category": "integration", "description": "This custom component for Home Assistant will add crucial features to your climate-controlling TRV (Thermostatic Radiator Valves) to save you the work of creating automations to make it smart. It combines a room-temperature sensor, window/door sensors, weather forecasts, or an ambient temperature probe to decide when it should call for heat and automatically calibrate your TRVs to fix the imprecise measurements taken in the radiator's vicinity.", "domain": "better_thermostat", "etag_repository": "W/\"9a203b03b67656effc7d1ab388ce4bec133cd088ca76c27bb327b3a061c16566\"", "last_updated": "2023-09-23T07:43:46Z", "stargazers_count": 466, "topics": ["climate", "energy-efficiency", "moes", "sea801", "sea802", "spzb0001", "thermostat", "ts0601", "tuya", "zigbee", "zigbee2mqtt"], "last_fetched": 1695554099.040992, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "341500126": {"repository_manifest": {"name": "Meross LAN", "render_readme": true, "country": ["IT", "GB", "US", "JP", "ES", "FR", "DE"], "homeassistant": "2023.1.0", "persistent_directory": "traces", "hacs": "1.6.0"}, "full_name": "krahabb/meross_lan", "authors": ["@krahabb"], "category": "integration", "description": "Home Assistant integration for Meross devices", "domain": "meross_lan", "etag_repository": "W/\"b62fc7301bbe676c1253c67aa0b50ad44d4875135fac85a16949f28aadfbbf53\"", "last_updated": "2023-08-14T19:06:34Z", "stargazers_count": 273, "topics": ["meross", "meross-devices", "meross-homeassistant", "meross-lan"], "last_fetched": 1695554105.791608, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "303857065": {"repository_manifest": {"name": "Battery Entity Row", "filename": "battery-entity-row.js", "render_readme": true}, "full_name": "benct/lovelace-battery-entity-row", "category": "plugin", "description": "Show battery states or attributes with dynamic icon on entity rows in Home Assistant's Lovelace UI", "downloads": 12616, "etag_repository": "W/\"c396b4cd62a48332abf586d316ad3ea9b018e75caa15e7ebfafc72dc878fea80\"", "last_updated": "2021-03-12T15:50:43Z", "stargazers_count": 59, "topics": ["attribute", "battery", "card", "entity", "entity-rows", "state"], "last_fetched": 1695553514.208454, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "226567922": {"repository_manifest": {"name": "Red slate theme", "render_readme": "True"}, "full_name": "Poeschl/slate_red", "category": "theme", "description": "My red\"isch\" home assistant theme.", "etag_repository": "W/\"2e386858265ee5eedd867d7b6eec6829709b7212ccba95f8cc0a575fce58e653\"", "last_updated": "2022-04-20T19:04:35Z", "stargazers_count": 1, "topics": ["material-design", "red"], "last_fetched": 1695553504.589344, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "295523408": {"repository_manifest": {"name": "Salus iT600", "render_readme": true}, "full_name": "jvitkauskas/homeassistant_salus", "authors": ["@jvitkauskas"], "category": "integration", "description": "Home Assistant integration with Salus devices", "domain": "salus", "etag_repository": "W/\"f42e2da9807b1800f0ef307d92c893bfdaffc42c725654f3df44e4e1e5ededa5\"", "last_updated": "2022-11-09T00:09:03Z", "stargazers_count": 43, "last_fetched": 1695554097.000144, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246406566": {"repository_manifest": {"name": "UpdateClimate", "render_readme": true, "homeassistant": "0.47.0"}, "full_name": "Santobert/HA-UpdateClimate", "category": "python_script", "description": "Python script to update climate devices", "etag_repository": "W/\"e3de65d80cdcbeee1257c86cf55ae5289facb2420e9a5e988bc5c2b6cd767a18\"", "last_updated": "2021-03-30T17:22:29Z", "stargazers_count": 7, "topics": ["climate", "hvac", "preset", "scheduler"], "last_fetched": 1695553508.161011, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "312080478": {"repository_manifest": {"name": "govee", "hacs": "0.2.2", "homeassistant": "2021.4.5"}, "full_name": "LaggAt/hacs-govee", "authors": ["@LaggAt"], "category": "integration", "description": "A HACS repository for Govee light integration", "domain": "govee", "etag_repository": "W/\"28ae471796d296ffdb62212c79b32ac326551e64a5204efef1ad4fb219976c97\"", "last_updated": "2023-06-26T17:21:29Z", "stargazers_count": 197, "topics": ["devcontainer", "govee", "light"], "last_fetched": 1695554106.092588, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246410785": {"repository_manifest": {"name": "ICS", "render_readme": true}, "full_name": "KoljaWindeler/ics", "authors": ["@KoljaWindeler"], "category": "integration", "description": "Integration that displays the next event of an ics link (support reoccuring events)", "domain": "ics", "etag_repository": "W/\"7eac6d8638539a7bb28dbd19c91fb97be3d65c2149f3044e04e41d413d504c54\"", "last_updated": "2022-02-10T18:31:39Z", "stargazers_count": 51, "topics": ["appointments", "filtering", "ics", "reoccuring-events"], "last_fetched": 1695554101.461658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "349455097": {"repository_manifest": {"name": "Ubee Router", "render_readme": true}, "full_name": "KevinHaendel/ha-ubee", "authors": ["@mzdrale", "@kevinhaendel"], "category": "integration", "description": "This platform integrates Ubee Routers into Home Assistant.", "domain": "ubee", "etag_repository": "W/\"b5658a9f842e659e7300361ef0c3aaedc613adbb821868f2fd60266fd04d252c\"", "last_updated": "2022-05-28T17:44:54Z", "stargazers_count": 1, "topics": ["ubee"], "last_fetched": 1695554098.8903, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "384434522": {"repository_manifest": {"name": "Hass Hue Icons", "render_readme": true}, "full_name": "arallsopp/hass-hue-icons", "category": "plugin", "description": "Additional vector icons for home assistant to model Philips Hue bulbs and fixtures. ", "downloads": 11393, "etag_repository": "W/\"9605a60d9b23f3dc3cb0342bce4766386b472a01943eaa67918807931e2fba7f\"", "last_updated": "2023-03-05T00:33:44Z", "stargazers_count": 229, "topics": ["custom-icons", "hue", "hue-lights", "icons", "iconset", "philips-hue", "svg"], "last_fetched": 1695553512.38864, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "375838748": {"repository_manifest": {"name": "Selve NG"}, "full_name": "Kannix2005/homeassistant-selve", "authors": ["@Kannix2005"], "category": "integration", "description": "Home Assistant Custom component to manage Selve devices", "domain": "selve", "etag_repository": "W/\"b1a16539758da4681806b6174f0a86b6cc965a6dc9aefe52cf39bb9004efd348\"", "last_updated": "2023-08-09T08:57:42Z", "stargazers_count": 10, "topics": ["selve"], "last_fetched": 1695554099.121797, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325635211": {"repository_manifest": {"name": "dobiss", "hacs": "1.6.0", "homeassistant": "2012.12.0"}, "full_name": "kesteraernoudt/dobiss", "authors": ["@kesteraernoudt"], "category": "integration", "description": "Custom Home Assistant Integration for the Dobiss NXT platform", "domain": "dobiss", "etag_repository": "W/\"bce893d2d46b12bdb8fcfe2a3d60c9c0de46b18233f18cc257d3e5d276e7fff6\"", "last_updated": "2023-09-18T19:07:40Z", "stargazers_count": 4, "last_fetched": 1695554099.042761, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "175020245": {"repository_manifest": {}, "full_name": "JurajNyiri/HomeAssistant-Tavos", "authors": ["@JurajNyiri"], "category": "integration", "description": "Sensor which gathers water outage information from Tavos (Slovakia) website", "domain": "tavos_water_outage", "etag_repository": "W/\"113075c2d7df74716b69585e5bd023f9b93ca4c0a16a0398211191e04f89f051\"", "last_updated": "2022-06-16T17:05:17Z", "last_fetched": 1695554096.714969, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "184658908": {"repository_manifest": {"name": "GitHub Entity Row", "filename": "github-entity-row.js", "render_readme": true}, "full_name": "benct/lovelace-github-entity-row", "category": "plugin", "description": "GitHub repository sensor data on entity rows in Home Assistant's Lovelace UI", "downloads": 444, "etag_repository": "W/\"8d81347de39509f0688002e9972dfe8b10898cf62ee71636de8a0f75e090c780\"", "last_updated": "2022-02-15T17:55:32Z", "stargazers_count": 22, "topics": ["card", "entity", "entity-rows", "github"], "last_fetched": 1695553514.344996, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214365813": {"repository_manifest": {"name": "StarLine Card", "homeassistant": "0.103.0"}, "full_name": "Anonym-tsk/lovelace-starline-card", "category": "plugin", "description": "StarLine lovelace card for Home Assistant", "etag_repository": "W/\"51029305ae634a79d85fc0116387cf492b99564ac685df836047538c40d78727\"", "last_updated": "2022-10-11T15:30:23Z", "stargazers_count": 22, "last_fetched": 1695553512.182365, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "321140869": {"repository_manifest": {"name": "Auto Reload", "render_readme": true}, "full_name": "ben8p/lovelace-auto-reload-card", "category": "plugin", "description": "Custom home assitant lovelace for UI auto reload", "etag_repository": "W/\"5fa0e82004cf614927f8b96ade84dfe3fc2f7b8e67049ebf9b272f40b3389537\"", "last_updated": "2023-05-24T20:46:18Z", "stargazers_count": 29, "topics": ["lovelace-card"], "last_fetched": 1695553512.795824, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264499592": {"repository_manifest": {"name": "Cryptoinfo", "render_readme": true, "homeassistant": "0.100.0"}, "full_name": "heyajohnny/cryptoinfo", "authors": ["@heyajohnny"], "category": "integration", "description": "Provides Home Assistant sensors for all cryptocurrencies supported by CoinGecko", "domain": "cryptoinfo", "etag_repository": "W/\"174a9aa4b49a558ca531dcfed802d3e0eaa816e1e02b12f6a4aae6a864e0a099\"", "last_updated": "2023-05-06T21:09:25Z", "stargazers_count": 38, "last_fetched": 1695553658.996372, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "401145616": {"repository_manifest": {"name": "myenergi", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2021.9.1"}, "full_name": "CJNE/ha-myenergi", "authors": ["@cjne"], "category": "integration", "description": "Home Assistant integration for MyEnergi devices", "domain": "myenergi", "etag_repository": "W/\"b2f9b7bb1f669fd8408c0b1978f8520e885fb66234b9cccfa02bf92dafacb5fa\"", "last_updated": "2023-09-22T08:53:32Z", "stargazers_count": 100, "topics": ["ev-charging", "green-energy", "myenergi"], "last_fetched": 1695553602.86722, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "268163975": {"repository_manifest": {"name": "mini climate card", "filename": "mini-climate-card-bundle.js"}, "full_name": "artem-sedykh/mini-climate-card", "category": "plugin", "description": "Minimalistic climate card for Home Assistant Lovelace UI", "downloads": 8420, "etag_repository": "W/\"3b56bf7f48c53be4ceef9ca82dfcbca281b8133adfb634f4571f839ad2bd9a71\"", "last_updated": "2023-07-19T08:01:46Z", "stargazers_count": 228, "topics": ["automation", "climate", "climate-entity", "custom", "hacktoberfest2021"], "last_fetched": 1695553512.699987, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448355900": {"repository_manifest": {"name": "Vastayan Bond", "render_readme": true}, "full_name": "SnakeFist007/ha_vastayan_bond", "category": "theme", "description": "\ud83c\udfa8 Home Assistant Theme inspired by the color schemes of Xayah & Rakan!", "etag_repository": "W/\"6339da9539e631dfd516a39dadc0743df027e0a672f0088a4bb7a2217edef5d3\"", "last_updated": "2023-02-28T15:06:25Z", "stargazers_count": 2, "topics": ["bond", "rakan", "vastayan", "xayah"], "last_fetched": 1695553505.996417, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328957716": {"repository_manifest": {"name": "Time Elapsed Card", "render_readme": true, "filename": "elapsed-time-card.js"}, "full_name": "Kirbo/ha-lovelace-elapsed-time-card", "category": "plugin", "description": "Home Assistant Lovelace Custom Card to calculate time elapsed/left", "downloads": 1750, "etag_repository": "W/\"df0a82f68a57b06414e04e93a496c076044eac1a3cb031d38ce51e475ee8bafe\"", "last_updated": "2021-06-03T08:58:27Z", "stargazers_count": 25, "topics": ["lovelace-custom-card"], "last_fetched": 1695553542.860966, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200081161": {"repository_manifest": {"name": "BKK Stop Information Card", "content_in_root": "true", "filename": "bkk-stop-card.js", "render_readme": "true", "country": ["HU"]}, "full_name": "amaximus/bkk-stop-card", "category": "plugin", "description": "Custom Lovelace card for Budapest Public Transportation custom component", "downloads": 284, "etag_repository": "W/\"2a3595c34438f3fd21b5ce336ecc4ce2178a9cf41bb02d71e79f2645c7483a5e\"", "last_updated": "2022-12-28T19:13:42Z", "stargazers_count": 7, "topics": ["bkk", "budapest", "lovelace-custom-card", "transportation"], "last_fetched": 1695553510.106519, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "556306418": {"repository_manifest": {"name": "Daily Schedule Card", "filename": "daily-schedule-card.js", "render_readme": true}, "full_name": "amitfin/lovelace-daily-schedule-card", "category": "plugin", "description": "Home Assistant Custom Card for Daily Schedule Integration", "etag_repository": "W/\"7281e008a78a902685b00614b51a1d73ca13e9e8398f96112cf5bbddd99e8ace\"", "last_updated": "2023-06-21T18:13:39Z", "stargazers_count": 6, "topics": ["lovelace-custom-card"], "last_fetched": 1695553510.644871, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257102434": {"repository_manifest": {"name": "FKF Budapest Garbage Collection Card", "filename": "fkf-garbage-collection-card.js", "render_readme": "true"}, "full_name": "amaximus/fkf-garbage-collection-card", "category": "plugin", "description": "FKF Budapest Garbage Collection Card for Home Assistant/Lovelace", "downloads": 493, "etag_repository": "W/\"95e3dbdd55926619431cd897ecefb1eb3c87d2ad12b6358b40fa62b306f25430\"", "last_updated": "2022-09-16T08:09:59Z", "stargazers_count": 9, "topics": ["budapest", "lovelace-custom-card"], "last_fetched": 1695553510.220293, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "341707887": {"repository_manifest": {"name": "Pollen Information Card for Hungary ", "filename": "pollen-hu-card.js", "render_readme": "true"}, "full_name": "amaximus/pollen-hu-card", "category": "plugin", "description": "Home Assistant custom Lovelace card for pollen information in Hungary", "downloads": 841, "etag_repository": "W/\"ba3f15665c6e5f5372d0a04e95ec2f0254da35a020b8e3623f6327274e251db9\"", "last_updated": "2023-04-20T09:35:25Z", "stargazers_count": 11, "topics": ["hungary", "lovelace-custom-card"], "last_fetched": 1695553510.353965, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197058358": {"repository_manifest": {}, "full_name": "jxlarrea/ha-emfitqs", "authors": ["@jxlarrea"], "category": "integration", "description": "Emfit QS Sleep Tracker Component for Home Assistant", "domain": "emfitqs", "etag_repository": "W/\"a66fce2564ab8e0dc8859cddbd4817490b079c0951b698c2a9f76c4cbe518956\"", "last_updated": "2022-03-06T21:31:42Z", "stargazers_count": 17, "topics": ["emfit", "emfitqs", "presence", "presence-detection", "sleep-tracker"], "last_fetched": 1695554096.713731, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "485281791": {"repository_manifest": {"name": "HASS.Agent MediaPlayer", "homeassistant": "2022.5", "render_readme": true}, "full_name": "LAB02-Research/HASS.Agent-MediaPlayer", "authors": ["@LAB02-Admin"], "category": "integration", "description": "HASS.Agent MediaPlayer integrations. Adds TTS and the ability to control local media to HASS.Agent - a Windows based client for Home Assistant.", "domain": "hass_agent_mediaplayer", "etag_repository": "W/\"c2ed7f53f6c8182408dda5a1d136849323704d7b1e0e9ee9c93be33681777bae\"", "last_updated": "2022-11-17T13:28:30Z", "stargazers_count": 15, "last_fetched": 1695554105.543798, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "315044466": {"repository_manifest": {"name": "Transmission Card", "filename": "transmission-card.js", "render_readme": "true"}, "full_name": "amaximus/transmission-card", "category": "plugin", "description": "Custom Transmission card for Home Assistant/Lovelace", "downloads": 819, "etag_repository": "W/\"74ed7eccd9fe4d368dae38d994c74a1078d7c569357f748327a98a9cfbb25b9d\"", "last_updated": "2023-09-10T05:41:42Z", "stargazers_count": 30, "topics": ["lovelace-card", "lovelace-custom-card", "transmission"], "last_fetched": 1695553510.994459, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180651910": {"repository_manifest": {}, "full_name": "custom-components/zaptec", "authors": ["hellowlol"], "category": "integration", "description": "zaptec charger custom component for home assistant", "domain": "zaptec", "etag_repository": "W/\"ef1f9ae299df8a51e09adc3fe3e26790782e030f1eb78fd9d69e98a04a521ab0\"", "last_updated": "2023-09-22T21:08:16Z", "stargazers_count": 29, "topics": ["api", "zaptec"], "last_fetched": 1695553611.830317, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223993584": {"repository_manifest": {"name": "Passive BLE monitor integration", "homeassistant": "2023.1.0"}, "full_name": "custom-components/ble_monitor", "authors": ["@Ernst79", "@Magalex2x14", "@Thrilleratplay"], "category": "integration", "description": "BLE monitor for passive BLE sensors", "domain": "ble_monitor", "etag_repository": "W/\"0db577d69cff73b5f3329b5c4ae1a27cdc685dca3045be921819af558bc50fc4\"", "last_updated": "2023-09-24T07:46:07Z", "stargazers_count": 1665, "topics": ["atc", "govee", "inkbird", "kegtron", "mibeacon", "mijia", "mitemp-bt", "qingping", "scales", "thermoplus", "thermopro", "thermplus", "xiaomi", "xiaomi-sensors"], "last_fetched": 1695553606.435819, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "254253124": {"repository_manifest": {"name": "Noonlight - Alarm Monitoring", "render_readme": true, "country": "US", "homeassistant": "0.96"}, "full_name": "konnected-io/noonlight-hass", "authors": ["@heythisisnate", "@snicker"], "category": "integration", "description": "HomeAssistant integration for Noonlight", "domain": "noonlight", "etag_repository": "W/\"a855df3f115ade5521cd53014d05466bcd96d01db849dd2e00cb2faf6653973a\"", "last_updated": "2022-10-16T17:36:02Z", "stargazers_count": 29, "topics": ["alarm", "monitoring", "noonlight", "security"], "last_fetched": 1695554103.3449, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "461802716": {"repository_manifest": {"name": "Skolmat Integration", "country": ["SE"], "render_readme": true}, "full_name": "Kaptensanders/skolmat", "authors": ["@kaptensanders"], "category": "integration", "description": "Skolmat Home Assistant custom component for the food menu in Swedish schools", "domain": "skolmat", "etag_repository": "W/\"f63e0dce479866ad146a9de20c1155f2651834cbdaa8d16954ea5e83d096ebb3\"", "last_updated": "2023-09-09T20:40:20Z", "stargazers_count": 9, "topics": ["food", "food-menu", "school", "skola"], "last_fetched": 1695554098.841049, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340926904": {"repository_manifest": {"name": "Novafos", "render_readme": true, "country": "DK", "homeassistant": "2022.8"}, "full_name": "kpoppel/homeassistant-novafos", "authors": ["@kpoppel"], "category": "integration", "description": "Homeassistant wrapper around the Novafos KMD water metering data warehouse.", "domain": "novafos", "etag_repository": "W/\"34ad9c5f57f7711ebf9fc648f96e274f509240f9db2fb0b966fe9dcec63900fe\"", "last_updated": "2023-05-03T22:55:31Z", "stargazers_count": 7, "topics": ["water"], "last_fetched": 1695554105.249437, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "387055527": {"repository_manifest": {"name": "Waves"}, "full_name": "tgcowell/waves", "category": "theme", "description": "This is a blend of 2 themes found within the Home Assistant community. Inspired mostly by Noctis, I've adjust colours slightly and have also opted to pull some features from Caule Theme packs to build my own 'ultimate' theme. I will continue to update overtime and do my best to credit those whom I have 'referenced' ", "etag_repository": "W/\"ef70c1ed44f88bb6aa040e36bbe7e02ae819b366142160b339ba785efc83525d\"", "last_updated": "2023-03-26T08:21:03Z", "stargazers_count": 62, "last_fetched": 1695553506.204946, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "503045365": {"repository_manifest": {"name": "Senertec Energy System", "render_readme": true, "homeassistant": "2021.11.0"}, "full_name": "Kleinrotti/hass-senertec", "authors": ["@Kleinrotti"], "category": "integration", "description": "Home Assistant custom component integration for Senertec energy units.", "domain": "senertec", "downloads": 2, "etag_repository": "W/\"6338efb4be0510c00116372f86cc2b155e144f2c2465935d29307d7ac554da33\"", "last_updated": "2023-05-25T16:27:07Z", "topics": ["senertec"], "last_fetched": 1695554100.962821, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286554328": {"repository_manifest": {"name": "Kaco", "render_readme": true}, "full_name": "KoljaWindeler/kaco", "authors": ["@KoljaWindeler"], "category": "integration", "description": "custom integration for kaco solar inverter", "domain": "kaco", "etag_repository": "W/\"bf620904253d4a0d716fe6484ffebfe7221d53caaeb7dfbd75f9cd4df0717414\"", "last_updated": "2023-02-03T11:49:57Z", "stargazers_count": 8, "topics": ["inverter", "solar-energy"], "last_fetched": 1695554102.981078, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "315447202": {"repository_manifest": {"name": "ytube_music_player", "render_readme": true}, "full_name": "KoljaWindeler/ytube_music_player", "authors": ["@KoljaWindeler"], "category": "integration", "description": "YouTube music player for homeassistant", "domain": "ytube_music_player", "etag_repository": "W/\"c4f80fda816e96e731dbcfb83cd5f28ea77c32f51a9f1730f8d4d98baca159b7\"", "last_updated": "2023-08-27T10:30:13Z", "stargazers_count": 247, "topics": ["youtube"], "last_fetched": 1695554103.442761, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "477001098": {"repository_manifest": {"name": "Philips AirPurifier (with CoAP)", "render_readme": true, "homeassistant": "2021.11.0b0"}, "full_name": "kongo09/philips-airpurifier-coap", "authors": ["@kongo09"], "category": "integration", "description": "\ud83d\udca8 Philips AirPurifier custom component for Home Assistant. Supports local CoAP protocol.", "domain": "philips_airpurifier_coap", "etag_repository": "W/\"3ad96fb3bc07c0e6559fb1a7014f6f732af28698ccf6704460181526cc880c1e\"", "last_updated": "2023-08-17T15:48:13Z", "stargazers_count": 98, "topics": ["air-purifier", "philips"], "last_fetched": 1695554103.56251, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "382905556": {"repository_manifest": {"name": "Cover Time Based Synced", "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "kotborealis/home-assistant-custom-components-cover-time-based-synced", "authors": ["@kotborealis"], "category": "integration", "description": "\u231b Time-based cover. Install it via HACS.", "domain": "cover_time_based_synced", "etag_repository": "W/\"c6f6d1be8309182566feea7b86ace27a204dfea83bafc215e5c064fd63b05fe0\"", "last_updated": "2023-04-18T13:20:55Z", "stargazers_count": 12, "topics": ["cover", "roller-shutters", "service", "shutter", "trigger"], "last_fetched": 1695554103.40972, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "154417419": {"repository_manifest": {}, "full_name": "nstrelow/ha_philips_android_tv", "category": "integration", "description": "Home Assistant custom component for the newer (2016+) Philips Android TVs", "domain": "philips_android_tv", "etag_repository": "W/\"b6d60cc86fc3962e545a6c06c1474b3cc6e134b1c469ac20203ff9b3a5e29b17\"", "last_updated": "2021-07-22T15:04:24Z", "stargazers_count": 108, "topics": ["philips-tv", "tv"], "last_fetched": 1695554134.716539, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "566085483": {"repository_manifest": {"name": "jokes", "hacs": "0.0.1", "homeassistant": "2022.11.1"}, "full_name": "LaggAt/ha-jokes", "authors": ["@LaggAt"], "category": "integration", "description": "Home Assistant Sensor providing a random joke every minute.", "domain": "jokes", "etag_repository": "W/\"9056af9550d7c0548ef77adb16232c76631d6518a9c24fce8ec60411842c227e\"", "last_updated": "2023-03-13T18:19:14Z", "stargazers_count": 10, "topics": ["devcontainer", "fun", "jokes"], "last_fetched": 1695554105.625041, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "562404203": {"repository_manifest": {"name": "RecycleApp", "render_readme": true, "country": "BE"}, "full_name": "olibos/HomeAssistant-RecycleApp", "authors": ["@olibos"], "category": "integration", "description": "Integrate RecycleApp into your Home Assistant.", "domain": "recycle_app", "etag_repository": "W/\"9bfe7b49af5284dac272802b1121a9e0ab4861f59f438dfa168375470d82b2b3\"", "last_updated": "2023-09-21T12:23:07Z", "stargazers_count": 12, "topics": ["fostplus", "recycle"], "last_fetched": 1695554136.397152, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "523485043": {"repository_manifest": {"name": "HIQ-Home", "hacs": "1.32.1", "filename": "hiq.zip", "hide_default_branch": true, "homeassistant": "2023.3.0", "render_readme": true, "zip_release": true}, "full_name": "killer0071234/ha-hiq", "authors": ["@killer0071234"], "category": "integration", "description": "HIQ-Home Integration for Home Assistant HACS Store", "domain": "hiq", "downloads": 16, "etag_repository": "W/\"bd50a2adced27f286ef9ece034605c81ece1860d50c3502643a029f4f66bd147\"", "last_updated": "2023-09-18T17:30:30Z", "topics": ["blind", "cybro", "cybrotech", "hiq", "hiq-home", "homeassistant-custom-component", "robotina"], "last_fetched": 1695554099.115269, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "552426092": {"repository_manifest": {"name": "HeishaMon", "render_readme": true, "homeassistant": "2023.2"}, "full_name": "kamaradclimber/heishamon-homeassistant", "authors": ["@kamaradclimber"], "category": "integration", "description": "An integration for heatpumps handled by heishamon", "domain": "aquarea", "etag_repository": "W/\"54bd231bb71ed89ede9a6e7585fe325eed7793a1bc3edbe15b11fee3c9101281\"", "last_updated": "2023-09-17T08:27:21Z", "stargazers_count": 15, "topics": ["heatpump", "heishamon", "mqtt"], "last_fetched": 1695554099.067721, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "171854441": {"repository_manifest": {"name": "youtube", "zip_release": true, "filename": "youtube.zip", "homeassistant": "2021.4.0"}, "full_name": "custom-components/youtube", "authors": ["@pinkywafer"], "category": "integration", "description": "A platform which give you info about the newest video on a channel", "domain": "youtube", "downloads": 2389, "etag_repository": "W/\"00ebeb58ad74ed03f916c6e8919bca2af43b44e4d756bf3c7449a17df1d125b2\"", "last_updated": "2023-09-06T16:03:08Z", "stargazers_count": 45, "topics": ["youtube"], "last_fetched": 1695553611.955658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "471000066": {"repository_manifest": {"name": "Peaqev ev-Charging", "homeassistant": "2022.10.5", "country": ["SE", "BE", "NO"], "zip_release": true, "filename": "peaqev.zip", "render_readme": true}, "full_name": "elden1337/hass-peaq", "authors": ["@elden1337"], "category": "integration", "description": "Home Assistant custom component to help ev-chargers stay below peak hourly energy levels.", "domain": "peaqev", "downloads": 40, "etag_repository": "W/\"cf433860aaccbc873054e30b2c51c1a6ddca296ec4a689442956354c6fced32a\"", "last_updated": "2023-09-23T20:28:13Z", "stargazers_count": 40, "topics": ["chargeamps", "easee", "effektavgift", "effekttariff", "ev-charging", "garo", "peak-shaving", "smart-pricing", "zaptec"], "last_fetched": 1695553635.630319, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "333849286": {"repository_manifest": {"name": "Eforsyning", "render_readme": true, "country": "DK", "homeassistant": "2022.12"}, "full_name": "kpoppel/homeassistant-eforsyning", "authors": ["@kpoppel"], "category": "integration", "description": "Home Assistant module enabling retrieval of regional heating data from eForsyning.", "domain": "eforsyning", "etag_repository": "W/\"b1101fedd4ceff9e6ea2986ca35c9ac7960a17dd4643971e4a571a50a3d1e83c\"", "last_updated": "2023-04-25T22:39:29Z", "stargazers_count": 25, "topics": ["energy", "heating"], "last_fetched": 1695554103.893764, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "398781181": {"repository_manifest": {"name": "Candy Simply-Fi", "render_readme": true}, "full_name": "ofalvai/home-assistant-candy", "authors": ["@ofalvai"], "category": "integration", "description": "Unofficial Candy/Haier appliance integration for Home Assistant ", "domain": "candy", "etag_repository": "W/\"4b428145c2aeb7fb92f5a2baf0bf3e14f9f430a779ff49d43251e510a5cc5a47\"", "last_updated": "2023-09-14T23:30:56Z", "stargazers_count": 95, "topics": ["candy", "haier", "home-assistant-component", "home-assistant-integration"], "last_fetched": 1695554135.200598, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334284822": {"repository_manifest": {"name": "AWS Codepipeline"}, "full_name": "ohheyrj/home-assistant-aws-codepipeline", "authors": ["@rj175"], "category": "integration", "description": "An integration to monitor and execute AWS Codepipeline projects within Home Assistant.", "domain": "aws_codepipeline", "etag_repository": "W/\"ea655eb4815bb0da8a7eaa9f6eb3f9e053ff6aec98c5ce738c8ae6fefb8df202\"", "last_updated": "2021-01-30T22:52:54Z", "stargazers_count": 1, "topics": ["aws", "ci", "cloud", "codepipeline"], "last_fetched": 1695554135.648956, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "567001290": {"repository_manifest": {"name": "EnergyScore", "render_readme": true}, "full_name": "knudsvik/EnergyScore", "authors": ["@knudsvik"], "category": "integration", "description": "Custom Integration for Home Assistant to score how energy is utilized based on price point", "domain": "energyscore", "etag_repository": "W/\"4e6a0f7a4f4c55f9ab8c3de2f19dcf46e2a21fdd395ace5b653b008ad6799a89\"", "last_updated": "2023-04-28T21:46:06Z", "stargazers_count": 27, "topics": ["energy"], "last_fetched": 1695554101.179339, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "586345918": {"repository_manifest": {"name": "Binance Integration for Home Assistant", "render_readme": true}, "full_name": "Kartax/home-assistant-binance", "authors": ["@Kartax"], "category": "integration", "description": "A Home Assistant Integration for the cryptocurrency trading platform Binance.", "domain": "binance", "etag_repository": "W/\"c9e59124162d7b1f4be29c0cc208e360ecb3915901802977675d9e55c5114ebc\"", "last_updated": "2023-06-14T10:57:21Z", "stargazers_count": 5, "topics": ["binance", "bitcoin", "crypto", "cryptocurrency", "dogecoin", "ethereum", "home-assistant-integration", "ripp"], "last_fetched": 1695554098.82072, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "646875198": {"repository_manifest": {"name": "Chime TTS", "filename": "chime_tts.zip", "hide_default_branch": true, "homeassistant": "2023.3.0", "render_readme": true, "zip_release": true}, "full_name": "nimroddolev/chime_tts", "authors": ["@nimroddolev"], "category": "integration", "description": "A custom Home Assistant integration to play an audio file before and/or after text-to-speech (TTS) messages", "domain": "chime_tts", "downloads": 434, "etag_repository": "W/\"078a549401d0ad435288a8d306d7b35f559202adcbfd69e2d9484ede2ce0a8d5\"", "last_updated": "2023-09-22T13:10:57Z", "stargazers_count": 10, "last_fetched": 1695554134.961017, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233090507": {"repository_manifest": {"name": "meteoalarm", "render_readme": "true", "country": "NO"}, "full_name": "kodi1/meteoalarm", "authors": ["@kodi1"], "category": "integration", "description": "meteoalarm sensor", "domain": "meteoalarm_m", "etag_repository": "W/\"f020803e2ca9c35d30b8c5a883ee5fcc412bb43b954402cc98b1f5bfb7814490\"", "last_updated": "2021-12-31T18:00:45Z", "stargazers_count": 5, "topics": ["meteoalarm"], "last_fetched": 1695554101.124091, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "431440766": {"repository_manifest": {"name": "HASS.Agent Notifier", "homeassistant": "2021.4", "render_readme": true}, "full_name": "LAB02-Research/HASS.Agent-Notifier", "authors": ["@LAB02-Admin"], "category": "integration", "description": "HASS.Agent Notifier integration. Adds notifications to HASS.Agent - a Windows based client for Home Assistant.", "domain": "hass_agent_notifier", "etag_repository": "W/\"7fa172b5d85451e2940b20f59b4af139ad346ec197f3490f583a7bf63b64aa3a\"", "last_updated": "2022-11-17T13:29:03Z", "stargazers_count": 65, "topics": ["notifications"], "last_fetched": 1695554105.67782, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283243425": {"repository_manifest": {"name": "SoX", "render_readme": true}, "full_name": "definitio/ha-sox", "authors": ["@definitio"], "category": "integration", "description": "A Home Assistant integration to turn your vacuum into an audio player.", "domain": "sox", "etag_repository": "W/\"e7740d87cfd9448d32a1135aa64ec88b47079310007617392554162cb8ca079f\"", "last_updated": "2023-06-18T18:23:24Z", "stargazers_count": 19, "topics": ["audio-player", "roborock", "robot-vacuum", "vacuum", "xiaomi"], "last_fetched": 1695553622.882323, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "271886611": {"repository_manifest": {"name": "Plant Picture Card", "render_readme": true, "filename": "PlantPictureCard.js"}, "full_name": "badguy99/PlantPictureCard", "category": "plugin", "description": "Like a picture glance card, but for plant data", "etag_repository": "W/\"b433924dd87314f257ca7341eea2ff31b22dd5d93c6108e3ea4c2461893a3648\"", "last_updated": "2022-07-07T21:55:54Z", "stargazers_count": 12, "topics": ["image", "lovelace-card", "plants"], "last_fetched": 1695553512.671827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356827073": {"repository_manifest": {"name": "OpenRGB", "render_readme": true}, "full_name": "koying/openrgb_ha", "authors": ["@bahorn", "@koying"], "category": "integration", "description": "OpenRGB integration for Home Assistant", "domain": "openrgb", "etag_repository": "W/\"84ad8ae6f62d20ae448ae3bd69ad39a92076dfdb6278632d6fff82779d573d55\"", "last_updated": "2023-03-19T08:28:10Z", "stargazers_count": 81, "topics": ["light", "openrgb"], "last_fetched": 1695554103.364937, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "536765576": {"repository_manifest": {"name": "My EcoWatt by RTE", "render_readme": true, "country": "fr", "homeassistant": "2022.11"}, "full_name": "kamaradclimber/rte-ecowatt", "authors": ["@kamaradclimber"], "category": "integration", "description": "A home assistant component for ecowatt api exposed by french company RTE", "domain": "rte_ecowatt", "etag_repository": "W/\"39c32a0c213d29da0eab240c4f4ad662916eb5d5291c528285884fc942f1418e\"", "last_updated": "2023-09-12T18:55:26Z", "stargazers_count": 58, "topics": ["electricity", "rte"], "last_fetched": 1695554098.912791, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373750934": {"repository_manifest": {"name": "Taipower Bimonthly Energy Cost", "render_readme": true, "homeassistant": "2022.12.0", "country": ["TW"]}, "full_name": "cnstudio/Taipower-Bimonthly-Energy-Cost-homeassistant", "authors": ["@cnstudio", "@tsunglung"], "category": "integration", "description": "Calculate Taipower (Taiwan Power Company) bi-monthly bill amount from kWh sensor on Home Assistant.", "domain": "taipower_bimonthly_cost", "etag_repository": "W/\"db68f64319e92954ffab1014670aaa61963efeef34df92370dadae4216a8f5c1\"", "last_updated": "2023-04-03T15:12:59Z", "stargazers_count": 52, "topics": ["bill", "bimonthly", "power", "taipower"], "last_fetched": 1695553604.89125, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "335019855": {"repository_manifest": {"name": "LinakDesk Card", "render_readme": true, "filename": "linak-desk-card.js"}, "full_name": "IhorSyerkov/linak-desk-card", "category": "plugin", "description": "Home Assistant Lovelace Card for controlling desks based on linak bluetooth controller.", "downloads": 539, "etag_repository": "W/\"12033e452046c24604c2fbf81c9d8ad517788311406ca1f053d288709c6e5932\"", "last_updated": "2023-01-04T13:39:59Z", "stargazers_count": 53, "topics": ["linak-desk-card"], "last_fetched": 1695553536.648484, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319820836": {"repository_manifest": {"name": "Coway IoCare", "render_readme": true, "country": "US", "homeassistant": "2022.11.0b0", "zip_release": true, "filename": "coway.zip"}, "full_name": "RobertD502/home-assistant-iocare", "authors": ["@RobertD502"], "category": "integration", "description": "Home Assistant custom component for monitoring and controlling Coway Airmega Purifiers", "domain": "coway", "downloads": 227, "etag_repository": "W/\"cfdfeaf3ae5323fd884ce9ded226cf55154797c775173e878a10eba06685b2d7\"", "last_updated": "2023-08-30T22:33:30Z", "stargazers_count": 30, "topics": ["coway", "coway-iocare", "home-assistant-component", "iocare"], "last_fetched": 1695554152.900793, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193588612": {"repository_manifest": {"name": "iMPK sensor", "country": "PL", "render_readme": true, "zip_release": true, "filename": "impk.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-iMPK", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses unofficial API retrieved by decompilation of iMPK application to provide a list of MPK Wroc\u0142aw news available in original app.", "domain": "impk", "downloads": 127, "etag_repository": "W/\"c6108db10869e513deb335d1bddc2b0e814d51f425ce80013057a51e4496bd72\"", "last_updated": "2023-07-07T02:53:39Z", "stargazers_count": 13, "topics": ["public-transport", "wroclaw"], "last_fetched": 1695554144.253869, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582143144": {"repository_manifest": {"name": "OJ Microline Thermostat", "country": "NL", "homeassistant": "2023.1.0", "render_readme": true}, "full_name": "robbinjanssen/home-assistant-ojmicroline-thermostat", "authors": ["@robbinjanssen"], "category": "integration", "description": "Home Assistant integration for an OJ Microline Wifi Thermostat", "domain": "ojmicroline_thermostat", "etag_repository": "W/\"21fa9fcedf27622d5411a0db55887fefe536d59c10bd3c44ff8ede0f798e13d0\"", "last_updated": "2023-09-22T13:35:32Z", "stargazers_count": 7, "topics": ["climate", "oj-electronics", "oj-microline", "owd5", "thermostat"], "last_fetched": 1695554152.389234, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188106531": {"repository_manifest": {"name": "Mail and Packages", "homeassistant": "2022.4.0", "zip_release": true, "filename": "mail_and_packages.zip"}, "full_name": "moralmunky/Home-Assistant-Mail-And-Packages", "authors": ["@moralmunky", "@firstof9"], "category": "integration", "description": "Home Assistant integration providing day of package counts and USPS informed delivery images.", "domain": "mail_and_packages", "downloads": 1710, "etag_repository": "W/\"685a030e0dcf94422decf3d778a9cfd53f2a3c3e2bee4ab230cadc32a1d7d5fa\"", "last_updated": "2023-09-18T17:32:25Z", "stargazers_count": 468, "topics": ["home-assistant-config", "lovelace-card", "lovelace-custom-card"], "last_fetched": 1695554125.610912, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232813686": {"repository_manifest": {"name": "SkyQ", "zip_release": true, "homeassistant": "2023.8.0", "filename": "skyq.zip", "render_readme": true}, "full_name": "RogerSelwyn/Home_Assistant_SkyQ_MediaPlayer", "authors": ["@rogerselwyn"], "category": "integration", "description": "Home Assistant SkyQ Media player component", "domain": "skyq", "downloads": 1951, "etag_repository": "W/\"17c0690b152c0f0711f5f080248d89770b4d2afb2a2f027ad1e7727b862331db\"", "last_updated": "2023-08-30T10:24:26Z", "stargazers_count": 85, "topics": ["homeassistant-custom-component", "sky", "skyq"], "last_fetched": 1695554154.861414, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "481715988": {"repository_manifest": {"name": "Kia Connected Services", "country": "NL"}, "full_name": "PimDoos/kia_connect", "authors": ["@PimDoos"], "category": "integration", "description": "Home Assistant Custom Component: MijnKia Connected Services", "domain": "kia_connect", "etag_repository": "W/\"b88106e3b44747fdc48f446c998a6a51c5638c1b7c8561b3418f7617ae8790b2\"", "last_updated": "2023-03-19T16:05:13Z", "stargazers_count": 8, "topics": ["api-wrapper", "connected-vehicle", "home-assistant-custom-component", "kia"], "last_fetched": 1695554142.451484, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "323923603": {"repository_manifest": {"name": "Tapo Controller", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2023.3.1"}, "full_name": "petretiandrea/home-assistant-tapo-p100", "authors": ["@petretiandrea"], "category": "integration", "description": "A custom integration to control Tapo devices from home assistant.", "domain": "tapo", "etag_repository": "W/\"3fe5ee7fa2ed5f504be2cbc6aafb45efe254718086dfbc36ea4506178bf3115d\"", "last_updated": "2023-09-23T15:52:32Z", "stargazers_count": 491, "topics": ["energy", "l510", "l530", "l900", "monitoring", "p100", "p105", "p110", "smart-plug", "tapo", "tapo-device", "tapo-light-bulb"], "last_fetched": 1695554141.364842, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "239366330": {"repository_manifest": {"name": "SenseME", "homeassistant": "2021.3.0"}, "full_name": "mikelawrence/senseme-hacs", "authors": ["@mikelawrence"], "category": "integration", "description": "Haiku with SenseME fan integration for Home Assistant", "domain": "senseme", "etag_repository": "W/\"cf43cb92082bed53e19e5a192e4bcb3ff19798524c6ed972d72a1f06a0c807b6\"", "last_updated": "2021-12-28T02:15:41Z", "stargazers_count": 22, "topics": ["bigassfans", "fan", "haiku", "senseme"], "last_fetched": 1695554123.344614, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "360408082": {"repository_manifest": {"name": "Flair", "render_readme": true, "country": "US", "homeassistant": "2022.11.0b0", "zip_release": true, "filename": "flair.zip"}, "full_name": "RobertD502/home-assistant-flair", "authors": ["@RobertD502"], "category": "integration", "description": "Custom component for Home Assistant Core for Flair pucks, vents, rooms, structures, and minisplits ", "domain": "flair", "downloads": 61, "etag_repository": "W/\"33f19bd29599af7f211b370cacba4f99ce0416421094e4d9d0e927d72bb9d4c6\"", "last_updated": "2023-09-23T03:10:06Z", "stargazers_count": 78, "topics": ["flair", "flair-hvac", "flair-puck", "flair-vent", "flair-vents"], "last_fetched": 1695554152.896062, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193371469": {"repository_manifest": {"name": "Antistorm sensor", "country": ["PL"], "render_readme": true, "zip_release": true, "filename": "antistorm.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Antistorm", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses official API to get storm warnings from https://antistorm.eu.", "domain": "antistorm", "downloads": 407, "etag_repository": "W/\"0d781a84ee5c6b688a9a94d3bb82cafb1c8df5be23fa93b27790a8df58a250e9\"", "last_updated": "2023-07-07T02:48:35Z", "stargazers_count": 11, "topics": ["weather"], "last_fetched": 1695554143.535751, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "584473299": {"repository_manifest": {"name": "Jablotron Cloud", "render_readme": true, "homeassistant": "2022.9.0"}, "full_name": "Pigotka/ha-cc-jablotron-cloud", "authors": ["@pigotka"], "category": "integration", "description": "HACS custom component for jablotron cloud integration", "domain": "jablotron_cloud", "etag_repository": "W/\"487a748c0865e5c1dae7724200df168f2d5bd0d0fe44146e30bd3f6f727bb5cc\"", "last_updated": "2023-09-18T12:09:46Z", "stargazers_count": 6, "last_fetched": 1695554141.395045, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231015759": {"repository_manifest": {"name": "Xiaomi Smartmi Fan Card", "render_readme": true, "filename": "xiaomi-fan-card.js"}, "full_name": "ikaruswill/lovelace-fan-xiaomi", "category": "plugin", "description": "Xiaomi Smartmi Fan Lovelace card with CSS fan animation", "downloads": 2332, "etag_repository": "W/\"e103260558ea1ec482ba04fc61448cf6c76871e87bc67f3d7d82ba35368916ac\"", "last_updated": "2023-07-10T08:28:43Z", "stargazers_count": 64, "topics": ["xiaomi", "xiaomi-fan"], "last_fetched": 1695553537.038309, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199549304": {"repository_manifest": {"name": "Google Keep", "render_readme": true, "zip_release": true, "filename": "google_keep.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Google-Keep", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses gkeepapi library to download a list of notes from https://keep.google.com/.", "domain": "google_keep", "downloads": 4501, "etag_repository": "W/\"8294b9cc5a5fba46879a42f6ba546a7e97939820c49b12ac69c943f059c918b1\"", "last_updated": "2023-07-07T02:53:41Z", "stargazers_count": 61, "topics": ["notes"], "last_fetched": 1695554143.929391, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356053801": {"repository_manifest": {"name": "IMA Protect Alarm"}, "full_name": "pcourbin/imaprotect", "authors": ["@pcourbin"], "category": "integration", "description": "Home Assistant custom component for IMA Protect Alarm", "domain": "imaprotect", "etag_repository": "W/\"358060c365fbd61276f485f4e57c31d15cf2a42afee78916fe5a15f4987be9f7\"", "last_updated": "2023-05-24T05:58:03Z", "stargazers_count": 1, "topics": ["alarm"], "last_fetched": 1695554139.223767, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "384910725": {"repository_manifest": {"name": "XMR Pool Statistics", "render_readme": true}, "full_name": "hwmland/homeassistant-xmrpool_stat", "authors": ["@hwmland"], "category": "integration", "description": "XMR Pool Statistics integration for Home Assistant", "domain": "xmrpool_stat", "etag_repository": "W/\"0f5ec31213c0ed8e5f7cc84531015ecdedc1ac7f63a57ee80d37f6e5a6d4e097\"", "last_updated": "2023-07-04T16:36:08Z", "stargazers_count": 4, "topics": ["cryptocurrency", "home-assistant-integration", "monero", "xmr"], "last_fetched": 1695553661.237379, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193371566": {"repository_manifest": {"name": "Burze.dzis.net sensor", "render_readme": true, "zip_release": true, "filename": "antistorm.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Burze.dzis.net", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This integration uses official API to get weather warnings for Poland and storm warnings for Europe from https://burze.dzis.net.", "domain": "burze_dzis_net", "downloads": 1406, "etag_repository": "W/\"151f70b8b31bbdf89a14ad565f0a761b24c543ed29624b06369d065b0ce7a810\"", "last_updated": "2023-07-27T17:36:31Z", "stargazers_count": 33, "topics": ["hazard", "lightning", "radiation", "storm", "warnings", "weather"], "last_fetched": 1695554143.552118, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193371652": {"repository_manifest": {"name": "Looko2 sensor", "country": "PL", "render_readme": true, "zip_release": true, "filename": "looko2.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Looko2", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses official API to get air quality data from https://looko2.com.", "domain": "looko2", "downloads": 161, "etag_repository": "W/\"48978653611acef187288b6bd3ce272a6e0babc6d7e123464ef12b88f480eb55\"", "last_updated": "2023-07-07T02:53:44Z", "stargazers_count": 5, "topics": ["air-quality", "weather"], "last_fetched": 1695554144.597171, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "181124811": {"repository_manifest": {"name": "Radial Menu Element", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "iantrich/radial-menu", "category": "plugin", "description": "\u2b55 Radial Menu Element", "downloads": 1139, "etag_repository": "W/\"dddc7e1c4a73fd31d078b5221c7a397ec37301419385c99e7386deefddbbb767\"", "last_updated": "2023-01-20T00:58:16Z", "stargazers_count": 61, "last_fetched": 1695553535.510017, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "469351480": {"repository_manifest": {"name": "De dietrich C230 ECO gas boiler", "render_readme": true, "zip_release": true, "filename": "de_dietrich_c230_ha.zip", "homeassistant": "2023.05.1", "hacs": "1.28.0"}, "full_name": "IgnacioHR/de-dietrich-c230-ha", "authors": ["@IgnacioHR"], "category": "integration", "description": "De Dietrich C-230 boiler to Home Assistant integration", "domain": "diematic_3_c230_eco", "downloads": 22, "etag_repository": "W/\"c925d16e65757ae193d93b216de933d6d6104c68b30f83dee7d56db171dd3fc8\"", "last_updated": "2023-07-01T09:35:27Z", "stargazers_count": 3, "topics": ["boiler", "dedietrich"], "last_fetched": 1695553663.220516, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "135166048": {"repository_manifest": {}, "full_name": "robmarkcole/HASS-Machinebox-Classificationbox", "authors": ["@robmarkcole"], "category": "integration", "description": "Home-Assistant image classification using Machinebox.io", "domain": "classificationbox", "etag_repository": "W/\"7a41c5da3de9356b6758c250746e8f2e4f5c3841a4bbbae2eed1a936aca8c080\"", "last_updated": "2022-07-05T04:19:34Z", "stargazers_count": 20, "topics": ["computer-vision", "deep-neural-networks", "machinebox"], "last_fetched": 1695554154.143461, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "347985393": {"repository_manifest": {"name": "Emulated color temp light", "render_readme": true}, "full_name": "Mr-Groch/HA-Emulated-Color-Temp-Light", "authors": ["@Mr-Groch"], "category": "integration", "description": "Emulate SUPPORT_COLOR_TEMP for color lights that doesn't support color temp (like some Ikea Tradfri bulbs) - Home Assistant component", "domain": "emulated_color_temp", "etag_repository": "W/\"90b4ad8e4841b1ebac4129715964e16d90b358d2c9beb27c4aec4c77d23dda7e\"", "last_updated": "2022-08-18T21:25:51Z", "stargazers_count": 6, "topics": ["color-lights", "color-temperature", "ct", "ikea-tradfri-bulbs", "light"], "last_fetched": 1695554125.813845, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196605143": {"repository_manifest": {}, "full_name": "RobHofmann/HomeAssistant-PhilipsAndroid2014", "authors": ["@SirGilbot", "@robhofmann"], "category": "integration", "description": "Custom component for Philips TV's running Android which are built between 2014 and 2016. Written in Python3 for Home Assistant.", "domain": "philips_2014", "etag_repository": "W/\"cbeb48a7b5202193b80f7c33b2700f41179830e86254fffa687034bfec35f4d6\"", "last_updated": "2021-05-09T12:39:18Z", "stargazers_count": 2, "last_fetched": 1695554152.938247, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325329098": {"repository_manifest": {"homeassistant": "2023.4.0", "name": "Sleep As Android", "render_readme": true, "zip_release": true, "filename": "sleep_as_android.zip"}, "full_name": "IATkachenko/HA-SleepAsAndroid", "authors": ["@IATkachenko"], "category": "integration", "description": "Sleep As Android integration for Home Assistant", "domain": "sleep_as_android", "downloads": 1302, "etag_repository": "W/\"333316cfac0186acb2016fd2b351b6cc3b425b998428a58a2d3580536d6b6037\"", "last_updated": "2023-08-26T16:02:41Z", "stargazers_count": 114, "topics": ["mqtt", "sleep-analysis", "sleep-as-android", "sleep-tracker"], "last_fetched": 1695553661.510416, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "525954717": {"repository_manifest": {"name": "HomeWhiz", "render_readme": true, "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "rowysock/home-assistant-HomeWhiz", "authors": ["@rowysock", "@TechHummel"], "category": "integration", "description": "Home Assistant custom component for devices that can connect to HomeWhiz mobile app (Beko, Grundig, Arcelik)", "domain": "homewhiz", "etag_repository": "W/\"8a1d9d0d19266d7dc62354ef4f62a4170af5cc9906e15568de9f457deb68d6c0\"", "last_updated": "2023-08-08T20:06:26Z", "stargazers_count": 48, "topics": ["homewhiz"], "last_fetched": 1695554155.637662, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "179788256": {"repository_manifest": {"name": "Text Divider Row", "render_readme": true}, "full_name": "iantrich/text-divider-row", "category": "plugin", "description": "\ud83d\uddc2 Text Divider Row", "downloads": 10110, "etag_repository": "W/\"33eb30177a9a4688233730edce4758c0abf4176abfd30a27ab5194de36d8fd52\"", "last_updated": "2023-04-30T20:13:33Z", "stargazers_count": 81, "last_fetched": 1695553536.540448, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207881337": {"repository_manifest": {"name": "Anniversaries", "zip_release": true, "filename": "anniversaries.zip", "homeassistant": "0.109.0"}, "full_name": "pinkywafer/Anniversaries", "authors": ["@pinkywafer"], "category": "integration", "description": "Anniversary Countdown Sensor for Home Assistant", "domain": "anniversaries", "downloads": 5416, "etag_repository": "W/\"ead48a24ca7c09b7a6d3171664f7e0215e859b08af66bc170379a094b16fb92e\"", "last_updated": "2023-09-04T22:24:54Z", "stargazers_count": 134, "topics": ["anniversaries"], "last_fetched": 1695554143.719469, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "447878635": {"repository_manifest": {"name": "Yandex weather", "country": "RU", "zip_release": true, "filename": "yandex_weather.zip", "homeassistant": "2022.12.0"}, "full_name": "IATkachenko/HA-YandexWeather", "authors": ["@IATkachenko"], "category": "integration", "description": "Yandex weather intergration for Home Assistant", "domain": "yandex_weather", "downloads": 2832, "etag_repository": "W/\"b066be08faa48c2827811b30554f3f690e1c1d28f1455a6e2f9091951d5119c1\"", "last_updated": "2023-08-13T09:45:00Z", "stargazers_count": 134, "topics": ["weather", "yandex-weather"], "last_fetched": 1695553661.409283, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "271398374": {"repository_manifest": {"name": "Saver", "render_readme": true, "zip_release": true, "filename": "saver.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Saver", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This custom component allows you to save current state of any entity and use its data later to restore it.", "domain": "saver", "downloads": 1127, "etag_repository": "W/\"b3579f47d1f09d8520a4ab108c06d2673e549874a99429f0b1d38411302d099d\"", "last_updated": "2023-07-07T02:54:44Z", "stargazers_count": 50, "topics": ["automation", "helper", "save", "script", "variable"], "last_fetched": 1695554145.728353, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356385629": {"repository_manifest": {"name": "Kia Uvo / Hyundai Bluelink", "render_readme": true, "homeassistant": "2022.12"}, "full_name": "Hyundai-Kia-Connect/kia_uvo", "authors": ["@fuatakgun"], "category": "integration", "description": "A Home Assistant HACS integration that supports Kia Connect(Uvo) and Hyundai Bluelink. The integration supports the EU, Canada and the USA.", "domain": "kia_uvo", "etag_repository": "W/\"b41231d2da7f2641b2b256492dc46e508b95df7bc647d90ea1a5999d8ca65a5f\"", "last_updated": "2023-09-10T08:14:16Z", "stargazers_count": 277, "topics": ["bluelink", "car", "hyundai", "kia", "uvo"], "last_fetched": 1695553661.48501, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190927503": {"repository_manifest": {"name": "Spa Client", "render_readme": true}, "full_name": "plmilord/Hass.io-custom-component-spaclient", "authors": ["@plmilord"], "category": "integration", "description": "Home Assistant integration - Spa Client", "domain": "spaclient", "etag_repository": "W/\"6e6c7059b0153e14d8304ab6676e19a62a7af5ee6e09a70a82cbe6d61a9345d3\"", "last_updated": "2023-06-14T02:00:22Z", "stargazers_count": 46, "topics": ["balboa", "bwa", "spaclient"], "last_fetched": 1695554146.094527, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "251039581": {"repository_manifest": {"name": "Ginlong Solis PV portal integration", "homeassistant": "2021.9"}, "full_name": "hultenvp/solis-sensor", "authors": ["@hultenvp"], "category": "integration", "description": "HomeAssistant integration for the SolisCloud PV Monitoring portal via SolisCloud API", "domain": "solis", "etag_repository": "W/\"fbf5867fb3b5bb2b06ee1f5be73961b45512017e0778585ea0c642931dc65065\"", "last_updated": "2023-08-30T12:57:40Z", "stargazers_count": 145, "topics": ["solarman", "solis", "soliscloud"], "last_fetched": 1695553661.392623, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "323155307": {"repository_manifest": {"name": "Duepi Evo", "render_readme": true}, "full_name": "aceindy/Duepi_EVO", "authors": ["@aceindy"], "category": "integration", "description": "Control Duepi_evo based pellet stoves with Home Assistant over wifi using ESPLink", "domain": "duepi_evo", "etag_repository": "W/\"4717e12a7fb5a97b6a4152dbdbb1f427a1c5514083cdcd2bc0c709e97a9b4fe9\"", "last_updated": "2023-08-26T10:27:49Z", "stargazers_count": 14, "topics": ["heating-systems"], "last_fetched": 1695553571.536299, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "387116237": {"repository_manifest": {"name": "XMRIG integration", "render_readme": true}, "full_name": "hwmland/homeassistant-xmrig", "authors": ["@hwmland"], "category": "integration", "description": "XMRIG integration for homeassistant", "domain": "xmrig", "etag_repository": "W/\"bd8f321751a84864734f732146122ebd05304c215027f3879d03ffb562207b82\"", "last_updated": "2022-04-26T18:13:19Z", "stargazers_count": 3, "topics": ["cryptocurrency", "monero-mining", "xmrig"], "last_fetched": 1695553661.125491, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "560848165": {"repository_manifest": {"name": "Compound definition for Home Assistant integration for Homey", "render_readme": true}, "full_name": "RonnyWinkler/homeassistant.homey", "authors": ["@RonnyWinkler"], "category": "integration", "description": "Homey compound device component", "domain": "homey", "etag_repository": "W/\"e6bcfdd17b6d45fc5f8db4d095a81c0252faf88871e6c03ed77ce49abf7f77c5\"", "last_updated": "2023-06-08T14:25:19Z", "stargazers_count": 3, "topics": ["compound", "homey"], "last_fetched": 1695554155.060258, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "267583249": {"repository_manifest": {"name": "Omnik Solar integration", "homeassistant": "2021.9"}, "full_name": "hultenvp/home_assistant_omnik_solar", "authors": ["@hultenvp"], "category": "integration", "description": "Home Assistant Omnik Solar sensor component", "domain": "omnik", "etag_repository": "W/\"dcb5201dac875cdd500827c846d602dcd9f4860a8ce338bc6760f9372baa223c\"", "last_updated": "2022-01-29T20:42:45Z", "stargazers_count": 6, "topics": ["home-assistant-component", "omnik", "solar"], "last_fetched": 1695553661.159751, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "332911333": {"repository_manifest": {"name": "Irrigation Unlimited", "homeassistant": "2022.1.0"}, "full_name": "rgc99/irrigation_unlimited", "authors": ["@rgc99"], "category": "integration", "description": "\u2652Irrigation controller for Home Assistant", "domain": "irrigation_unlimited", "etag_repository": "W/\"abe60eee840b7e327dda6ae142e54e7e3c9fd1160781d0c0201dc6839da4fd73\"", "last_updated": "2023-09-24T06:59:37Z", "stargazers_count": 236, "topics": ["garden-automation", "irrigation", "irrigation-control-system", "irrigation-controller", "sprinkler-controller", "water", "watering-controller", "watering-system"], "last_fetched": 1695554153.276969, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544947025": {"repository_manifest": {"name": "Chargecloud.de", "render_readme": true}, "full_name": "functionpointer/home-assistant-chargecloud-integration", "authors": ["@functionpointer"], "category": "integration", "description": "Fetches real-time status of public ev chargers from chargecloud.de", "domain": "chargecloud", "etag_repository": "W/\"fd5a6682140363d351699dbe01f38e84c6990c277795ce77a9ddd92e71d29bfe\"", "last_updated": "2023-09-05T12:47:14Z", "stargazers_count": 3, "topics": ["electric-vehicle-charging-station", "electric-vehicles"], "last_fetched": 1695553645.348763, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448323715": {"repository_manifest": {"name": "Nest Protect", "homeassistant": "2023.1.7", "render_readme": "true"}, "full_name": "iMicknl/ha-nest-protect", "authors": ["@imicknl"], "category": "integration", "description": "Nest Protect integration for Home Assistant. This will allow you to integrate your smoke, heat, co and occupancy status real-time in HA.", "domain": "nest_protect", "etag_repository": "W/\"84a21845df0af1d1c78f5225d63f85b4ba3fdb561edff04ad829c9c36fd285e8\"", "last_updated": "2023-09-05T08:59:33Z", "stargazers_count": 243, "topics": ["google", "nest", "nest-protect"], "last_fetched": 1695553663.399557, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442225646": {"repository_manifest": {"name": "London TfL", "country": "GB", "homeassistant": "2021.12.0", "render_readme": true}, "full_name": "morosanmihail/HA-LondonTfL", "authors": ["@morosanmihail"], "category": "integration", "description": "Simple sensor for Home Assistant to retrieve departures from Transport for London stations.", "domain": "london_tfl", "etag_repository": "W/\"45d80cc12476f430f06bf1fe074e2d6ed0c5ff3d6767a51db73c879077d4008f\"", "last_updated": "2023-07-03T21:56:44Z", "stargazers_count": 14, "topics": ["london", "tfl", "transport"], "last_fetched": 1695554125.560325, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269316095": {"repository_manifest": {"name": "Overkiz (by Somfy) - Custom component", "homeassistant": "2023.4.0", "render_readme": true}, "full_name": "iMicknl/ha-tahoma", "authors": ["@imicknl", "@vlebourl", "@tetienne"], "category": "integration", "description": "Custom component for Home Assistant to interact with smart devices via Somfy TaHoma or other OverKiz based API's.", "domain": "tahoma", "etag_repository": "W/\"f49f350dcc277f815a4e5d274d9ec415f822d7c7628c6c7471e8bf6a662376ce\"", "last_updated": "2023-09-11T11:40:17Z", "stargazers_count": 142, "topics": ["cozytouch", "hi-kumo", "nexity", "overkiz", "rexel", "somfy", "tahoma"], "last_fetched": 1695553663.513843, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196057008": {"repository_manifest": {"name": "Attributes extractor", "homeassistant": "2023.6.0"}, "full_name": "pilotak/homeassistant-attributes", "authors": ["@pilotak"], "category": "integration", "description": "Breaks out specified attribute from other entities to a sensor", "domain": "attributes", "etag_repository": "W/\"7f3cd333500959c464f5f7b0455a9df43b45fedb6e7468133776993927131dde\"", "last_updated": "2023-06-08T18:08:10Z", "stargazers_count": 80, "topics": ["attributes", "breakout"], "last_fetched": 1695554141.396547, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "211393677": {"repository_manifest": {"name": "Qubino Wire Pilot", "render_readme": true, "homeassistant": "0.96.0"}, "full_name": "piitaya/home-assistant-qubino-wire-pilot", "authors": ["@piitaya"], "category": "integration", "description": "Home Assistant Component for Qubino Wire Pilot", "domain": "qubino_wire_pilot", "etag_repository": "W/\"ab8d82ed7cac4aeb9100cef029a1027c389cd93c47b89f36bc0e307125e21129\"", "last_updated": "2023-01-25T18:46:59Z", "stargazers_count": 15, "topics": ["climate", "qubino", "qubino-wire-pilot", "thermostat"], "last_fetched": 1695554141.439191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534848317": {"repository_manifest": {"name": "Redback Technologies", "homeassistant": "2022.11.0", "render_readme": true}, "full_name": "juicejuice/homeassistant_redback", "authors": ["@juicejuice"], "category": "integration", "description": "Home Assistant integration for inverter and battery systems from Redback Technologies", "domain": "redback", "etag_repository": "W/\"62635964ac7e9bb5ff0850e4b3348bcb40503ea1ecacdcbf82a3869f2181a500\"", "last_updated": "2023-07-11T02:41:56Z", "stargazers_count": 5, "topics": ["inverter", "redback-technologies"], "last_fetched": 1695554096.612592, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196055705": {"repository_manifest": {"name": "Clientraw weather parser", "homeassistant": "2022.11"}, "full_name": "pilotak/homeassistant-clientraw", "authors": ["@pilotak"], "category": "integration", "description": "Clientraw weather parser (clientraw.txt) for HomeAssistant", "domain": "clientraw", "etag_repository": "W/\"50448fd2bcc0ba7f6bd428fa8e1d39ca564ac371f54ac4f0f5a0e5f26abe25ae\"", "last_updated": "2023-06-26T16:23:04Z", "stargazers_count": 13, "topics": ["clientraw", "davis", "weather"], "last_fetched": 1695554141.739891, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "369774988": {"repository_manifest": {"name": "openweathermaphistory", "filename": "openweathermaphistory.zip", "render_readme": true, "zip_release": true}, "full_name": "petergridge/openweathermaphistory", "authors": ["@petergridge", "@tsbernar"], "category": "integration", "description": "A home assistant sensor that uses the OpenWeatherMap API to get forecast, current obs and history data", "domain": "openweathermaphistory", "downloads": 1947, "etag_repository": "W/\"1acb9e191b96e82d6221df170c8f18d59a2f94a75f57c849a6e5bbb407ced558\"", "last_updated": "2023-09-06T12:09:55Z", "stargazers_count": 41, "topics": ["irrigation", "weather"], "last_fetched": 1695554141.036438, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "603119944": {"repository_manifest": {"name": "Tarifa 2.0 TD", "render_readme": true, "homeassistant": "2023.1.0", "country": "ES"}, "full_name": "MiguelAngelLV/tarifa_20td", "authors": ["@miguelangellv"], "category": "integration", "description": "Componente para Home Assisant para usuarios con tarifa 2.0 TD", "domain": "tarifa_20td", "etag_repository": "W/\"b03d8218821e667e7100b258f873d1041ff01f63e0ee3498b817dc66b4034c8d\"", "last_updated": "2023-09-13T10:21:24Z", "stargazers_count": 9, "topics": ["energy-monitor", "tarifa"], "last_fetched": 1695554123.104288, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362145464": {"repository_manifest": {"name": "Multizone Controller", "render_readme": true}, "full_name": "Petro31/ha-integration-multizone-controller", "authors": ["@Petro31"], "category": "integration", "description": "Integration that creates a multi-zone volume controller for media_players in Home Assistant", "domain": "multizone_controller", "etag_repository": "W/\"c8b23efb485a8a148042f7c07923ef6c6d9e949b3e9a62026ac01cf6838886f0\"", "last_updated": "2023-07-08T11:11:56Z", "stargazers_count": 13, "topics": ["media-players", "multizone-controller", "volume-increment", "zone-volume"], "last_fetched": 1695554141.688825, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "584257648": {"repository_manifest": {"name": "TCL TV Remote", "render_readme": true, "zip_release": true, "filename": "tclremote.zip"}, "full_name": "popeen/Home-Assistant-Custom-Component-TCL-Remote", "authors": ["@popeen"], "category": "integration", "description": "This custom component will give you two new services for controlling TCL Smart TVs (Non android version). Tested on my S69 series TV. I have seen some reports about it working on other brands as well, mainly Thomson", "domain": "tcl_tv_remote", "downloads": 709, "etag_repository": "W/\"71791aae616c6bfa704640bb65f9dbeafac2e1cb64b160f90b67ddc9e03130d1\"", "last_updated": "2023-09-23T10:39:23Z", "stargazers_count": 7, "last_fetched": 1695554146.854253, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "179808576": {"repository_manifest": {"name": "BHA Icon Pack"}, "full_name": "hulkhaugen/hass-bha-icons", "category": "plugin", "description": "Additional icons for Home Assistant to accompany the MDI icons", "etag_repository": "W/\"74bbc8b0ab432eea4dfb04969c6407e54e350ccf5c30d7851a5dac951ecc75f6\"", "last_updated": "2023-09-18T07:02:59Z", "stargazers_count": 149, "topics": ["icons", "iconset"], "last_fetched": 1695553534.612354, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "528618549": {"repository_manifest": {"name": "Molad Sensor", "render_readme": true}, "full_name": "chaimchaikin/molad-ha", "authors": ["@chaimchaikin"], "category": "integration", "description": "Molad Sensor for HACS", "domain": "molad", "etag_repository": "W/\"1296bb44b69c13efb84ba49b0f7eb139b97059dcb99763f275b4ee9f650bf1ec\"", "last_updated": "2023-05-21T22:51:27Z", "topics": ["hebrew-calendar", "jewish", "jewish-calendar", "molad"], "last_fetched": 1695553601.720793, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403243434": {"repository_manifest": {"name": "Vaillant vSMART", "homeassistant": "2022.11"}, "full_name": "MislavMandaric/home-assistant-vaillant-vsmart", "authors": ["@MislavMandaric"], "category": "integration", "description": "Home Assistant custom component for Vaillant vSMART.", "domain": "vaillant_vsmart", "etag_repository": "W/\"43d6b642b4c38c84c1cc2867383f90a2d0d862cbf328cd2780782253a1bead0d\"", "last_updated": "2023-03-06T17:06:33Z", "stargazers_count": 47, "topics": ["home-assistant-component", "vaillant"], "last_fetched": 1695554123.381191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279538782": {"repository_manifest": {"name": "Ecodevices RT2"}, "full_name": "pcourbin/ecodevices_rt2", "authors": ["@pcourbin"], "category": "integration", "description": "Home Assistant custom component for GCE Ecodevices RT2", "domain": "ecodevices_rt2", "etag_repository": "W/\"81689fcc14b499f3aec4113051ead14c91a4caf2e78be4d2142a8fd2c12d68be\"", "last_updated": "2023-09-13T09:04:47Z", "stargazers_count": 3, "last_fetched": 1695554139.292368, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236123258": {"repository_manifest": {"name": "Camect Integration", "country": "US", "homeassistant": "0.99.9", "render_readme": true}, "full_name": "pfunkmallone/HACS-camect-integration", "authors": ["@camect"], "category": "integration", "description": "A HACS integration for the Camect smart home surveillance system", "domain": "camect", "etag_repository": "W/\"52bcb4504d556534fb53b1919377e435934e42320f5eaf3d2ae8e1376fad3cdd\"", "last_updated": "2022-10-11T01:36:19Z", "stargazers_count": 4, "topics": ["camect"], "last_fetched": 1695554141.42676, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "529926820": {"repository_manifest": {"homeassistant": "2023.2.0", "name": "lelight", "render_readme": true}, "full_name": "v1ack/lelight", "authors": ["@v1ack"], "category": "integration", "description": "LeLight integration for Home Assistant", "domain": "lelight", "etag_repository": "W/\"ba43310b0bad14204baa16b95a9e94e71b342aa2e9b9810c0ce1a5a3139df0dd\"", "last_updated": "2023-03-08T09:39:00Z", "stargazers_count": 3, "topics": ["ble", "iot", "lelight"], "last_fetched": 1695554190.340919, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209996125": {"repository_manifest": {"name": "Remote PicoTTS", "render_readme": true, "homeassistant": "0.36"}, "full_name": "Poeschl/Remote-PicoTTS", "authors": ["@Poeschl"], "category": "integration", "description": "A custom component for Home Assistant which integrates my picoTTS Addon on HASS.io,", "domain": "picotts_remote", "etag_repository": "W/\"87b766a147cb3884896538b61e7e17c8ee35d007843aa156066fb392a9b2b518\"", "last_updated": "2022-06-03T14:25:15Z", "stargazers_count": 11, "topics": ["component", "picotts-addon", "remote-picotts"], "last_fetched": 1695554146.010896, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "484708274": {"repository_manifest": {"name": "AsusRouter", "homeassistant": "2023.2.0"}, "full_name": "Vaskivskyi/ha-asusrouter", "authors": ["@vaskivskyi"], "category": "integration", "description": "Monitor and control your AsusWRT-powered router from Home Assistant", "domain": "asusrouter", "etag_repository": "W/\"25e602354900c4b3b13da88df23adc926f403c8622bbc203ea2ab7fd63fa77bc\"", "last_updated": "2023-09-18T20:35:51Z", "stargazers_count": 123, "topics": ["asus", "asuswrt", "asuswrt-merlin", "router"], "last_fetched": 1695554192.523479, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "348835574": {"repository_manifest": {"name": "Motala Vatten & Avfall - Garbage collection sensor", "render_readme": true, "zip_release": true, "country": "SE", "filename": "motalavattenavfall.zip"}, "full_name": "popeen/Home-Assistant-Custom-Component-MotalaVattenAvfall", "authors": ["@popeen"], "category": "integration", "description": "A sensor for getting collection date for garbage and sludge from Motala Vatten & Avfall.", "domain": "motalavattenavfall", "downloads": 60, "etag_repository": "W/\"9acffcb0a1bc81feacd28e9f48193b20bff404223f9606cc1979960d96f91231\"", "last_updated": "2023-09-23T10:39:35Z", "stargazers_count": 3, "topics": ["garbage-collection", "motala"], "last_fetched": 1695554146.433402, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "433577603": {"repository_manifest": {"name": "Config Editor Card", "filename": "config-editor-card.js", "render_readme": true}, "full_name": "htmltiger/config-editor-card", "category": "plugin", "description": "Home Assistant Configuration Files Editor for Lovelace", "etag_repository": "W/\"dff617a8059d119ceaa743609c4e0274cf722fb4cec8c024952dbdbf27f5f34e\"", "last_updated": "2023-06-29T02:35:40Z", "stargazers_count": 40, "topics": ["homeassistant-addons", "homeassistant-config", "homeassistant-configuration", "yaml"], "last_fetched": 1695553534.688617, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "238568340": {"repository_manifest": {"name": "Freebox Player"}, "full_name": "Pouzor/freebox_player", "authors": ["@Pouzor"], "category": "integration", "description": "Custom Component for Home Assistant, enable to remote Freebox Player", "domain": "freebox_player", "etag_repository": "W/\"0ebcd95b1adfacda92cba6d3821cb0d8bf726152414bd7ff4d816411f4750217\"", "last_updated": "2021-05-12T23:52:40Z", "stargazers_count": 14, "topics": ["freebox"], "last_fetched": 1695554147.871393, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "281956859": {"repository_manifest": {"name": "D-Link HNAP", "homeassistant": "0.109.0", "render_readme": true}, "full_name": "postlund/dlink_hnap", "authors": ["@postlund"], "category": "integration", "description": "Experimental integration to Home Assistant supporting D-Link devices", "domain": "dlink_hnap", "etag_repository": "W/\"c6d27c599e36313520652275046486724519f4dcf356735d10d3580a2254da49\"", "last_updated": "2022-05-28T09:18:28Z", "stargazers_count": 38, "topics": ["custom-integration", "dlink"], "last_fetched": 1695554147.778909, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193371922": {"repository_manifest": {"name": "Tauron AMIplus", "render_readme": true, "zip_release": true, "filename": "tauron_amiplus.zip", "country": "PL", "homeassistant": "2022.12.0"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Tauron-AMIplus", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses unofficial API to get energy usage and generation data from https://elicznik.tauron-dystrybucja.pl.", "domain": "tauron_amiplus", "downloads": 1507, "etag_repository": "W/\"5edc471d51c75e84c16e833330efd58f87d27852d8d2e772fd768ffa2be173b9\"", "last_updated": "2023-06-04T23:31:31Z", "stargazers_count": 104, "topics": ["amiplus", "elicznik", "energy-monitor", "tauron"], "last_fetched": 1695554145.941915, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269113518": {"repository_manifest": {"name": "xcomfort", "homeassistant": "2021.12.0b0"}, "full_name": "plamish/xcomfort", "authors": ["@plamish"], "category": "integration", "description": "Eaton xComfort SHC integration for Home Assistant", "domain": "xcomfort", "etag_repository": "W/\"7f1680f5c09c3c7b7b207deb906a6ccfedce93ad538f3536b8b37cd8e2546db0\"", "last_updated": "2023-04-02T08:43:45Z", "stargazers_count": 11, "topics": ["eaton", "xcomfort"], "last_fetched": 1695554145.984816, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199888538": {"repository_manifest": {"name": "Stadtreinigung Hamburg", "country": "DE", "homeassistant": "0.109.0", "zip_release": true, "filename": "stadtreinigung_hamburg.zip"}, "full_name": "custom-components/sensor.stadtreinigung_hamburg", "authors": ["@vigonotion"], "category": "integration", "description": "Stadtreinigung Hamburg - get garbage collection dates in Hamburg - custom component for Home Assistant", "domain": "stadtreinigung_hamburg", "downloads": 166, "etag_repository": "W/\"c68e933a4dc84a2a10f45338f0b25d5028c2a680508ca6db3bacd878691959ed\"", "last_updated": "2023-05-21T10:19:20Z", "stargazers_count": 20, "last_fetched": 1695553611.045089, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "520791578": {"repository_manifest": {"name": "SolarEdge Optimizers Data"}, "full_name": "ProudElm/solaredgeoptimizers", "authors": ["@proudelm"], "category": "integration", "description": "Intergration to get optimizers information from the SolarEdge portal", "domain": "solaredgeoptimizers", "etag_repository": "W/\"d441e112bafef1ebeabab4a9038d76d27248f6c7d6373fbc7977bd74171ba752\"", "last_updated": "2023-04-24T13:32:07Z", "stargazers_count": 33, "topics": ["optimizers", "solaredge-api"], "last_fetched": 1695554148.162751, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "289550686": {"repository_manifest": {"name": "Zoom", "render_readme": true, "homeassistant": "2021.5.0b0", "zip_release": true, "filename": "zoom.zip"}, "full_name": "raman325/ha-zoom-automation", "authors": ["@raman325"], "category": "integration", "description": "Custom Home Assistant component for Zoom. Tracks when you are connected to a Zoom call by default but may allow you to track more.", "domain": "zoom", "downloads": 698, "etag_repository": "W/\"aa1c4f24055b804c08699231877922448be673aebbe7d8234d2604f52ceb8f4a\"", "last_updated": "2023-09-19T05:21:51Z", "stargazers_count": 59, "topics": ["automation", "ha", "webhook-event", "zoom"], "last_fetched": 1695554150.30333, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "219035415": {"repository_manifest": {"name": "GeoRide integration", "render_readme": true, "country": ["FR"], "homeassistant": "2023.2.0"}, "full_name": "ptimatth/GeorideHA", "authors": ["ptimatth"], "category": "integration", "description": "GeoRide integration for Home Assistant", "domain": "georide", "etag_repository": "W/\"d14ef7a0827458fd659460109c2e934d9e5b7099da6bef17edbce9d428e6331e\"", "last_updated": "2023-05-24T11:05:14Z", "stargazers_count": 16, "last_fetched": 1695554148.246916, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236611771": {"repository_manifest": {"name": "TDAmeritrade", "country": "US", "homeassistant": "2022.6.1"}, "full_name": "prairiesnpr/hass-tdameritrade", "authors": ["@PrairieSnpr"], "category": "integration", "description": "TDAmeritrade component for Home Assistant", "domain": "tdameritrade", "etag_repository": "W/\"412ee4143e8aaa5a142e2e96d2b09bb505d43b1be020aec4fe85a967fddc13f3\"", "last_updated": "2022-07-07T02:15:03Z", "stargazers_count": 7, "topics": ["tdameritrade"], "last_fetched": 1695554147.999528, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "583896361": {"repository_manifest": {"name": "ESA NASK Air Quality Sensor", "render_readme": true, "country": ["PL"]}, "full_name": "Mr-Groch/HA-ESA-NASK-Air-Quality", "authors": ["@Mr-Groch"], "category": "integration", "description": "Home Assistant component for scrapping data from ESA NASK stations", "domain": "esa_nask", "etag_repository": "W/\"db8b4907bc8f6ee0add74937940e0da6ee140ac3b186803c017a464b8183d78d\"", "last_updated": "2023-04-11T13:49:57Z", "stargazers_count": 2, "topics": ["air-quality", "esa", "nask"], "last_fetched": 1695554126.089202, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "585689945": {"repository_manifest": {"name": "Temperatur.nu", "render_readme": true, "zip_release": true, "country": "SE", "filename": "temperaturnu.zip"}, "full_name": "popeen/Home-Assistant-Custom-Component-Temperatur-Nu", "authors": ["@popeen"], "category": "integration", "description": "A sensor for temperatur.nu and a service for reporting your current temperature", "domain": "temperatur_nu", "downloads": 314, "etag_repository": "W/\"f3f511ed45339136d218f98fa080d9cabefc34fbbf9803fd696e1c824aeaafbb\"", "last_updated": "2023-09-23T10:39:47Z", "stargazers_count": 2, "topics": ["temperature"], "last_fetched": 1695554147.789008, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "268118148": {"repository_manifest": {"name": "Gardena Smart System", "render_readme": true, "homeassistant": "2021.7.0"}, "full_name": "py-smart-gardena/hass-gardena-smart-system", "authors": ["@py-smart-gardena"], "category": "integration", "description": "Home Assistant custom component integration for Gardena Smart System", "domain": "gardena_smart_system", "etag_repository": "W/\"cc466f2ed376a7567713025293105c516e96e721e5e8210b11a0322ea3856bb5\"", "last_updated": "2023-09-15T10:25:19Z", "stargazers_count": 152, "topics": ["gardena", "gardena-api", "gardena-smart-system"], "last_fetched": 1695554148.427774, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224073673": {"repository_manifest": {"name": "Calendarific", "zip_release": true, "filename": "calendarific.zip", "homeassistant": "2021.12.0"}, "full_name": "pinkywafer/Calendarific", "authors": ["@pinkywafer"], "category": "integration", "description": "Calendarific holiday sensor for Home Assistant ", "domain": "calendarific", "downloads": 1196, "etag_repository": "W/\"08d56a535d4e19ceb79ca40d588b4becab1f1b9e16aad9be9884f8ee360e153f\"", "last_updated": "2023-09-04T21:07:16Z", "stargazers_count": 15, "topics": ["api-client", "calendarific", "holidays"], "last_fetched": 1695554143.600093, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "182113743": {"repository_manifest": {}, "full_name": "gadgetchnnel/lovelace-text-input-row", "category": "plugin", "description": "A custom Lovelace text input row for use in entities cards", "etag_repository": "W/\"70ec2d74d86b0056ae89ef41386974ddf9a35ed3cb423c96d244f9b5733c3a64\"", "last_updated": "2023-05-17T15:03:09Z", "stargazers_count": 32, "last_fetched": 1695553532.330384, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "117426840": {"repository_manifest": {"name": "Volkswagen We Connect", "homeassistant": "2021.12.0b1", "hide_default_branch": true, "zip_release": true, "filename": "volkswagencarnet.zip"}, "full_name": "robinostlund/homeassistant-volkswagencarnet", "authors": ["@robinostlund"], "category": "integration", "description": "Volkswagen Carnet Component for home assistant", "domain": "volkswagencarnet", "downloads": 2324, "etag_repository": "W/\"ca0e47565b0fe238b38a046c4e421cb51ef332220e0ebbf32c10aea3765b05e1\"", "last_updated": "2023-09-05T09:23:15Z", "stargazers_count": 233, "topics": ["volkswagen-carnet"], "last_fetched": 1695554153.643058, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264415552": {"repository_manifest": {"name": "Hive Custom Component", "render_readme": true}, "full_name": "Pyhass/Hive-Custom-Component", "authors": ["@KJonline"], "category": "integration", "description": "A custom version of the home assistant hive component", "domain": "hive", "etag_repository": "W/\"c249c2b71567d66f65a29f7808154e1dcd77fa47ac89186a5081a5b7564a7fb3\"", "last_updated": "2022-10-03T11:45:59Z", "stargazers_count": 31, "topics": ["hive"], "last_fetched": 1695554148.780336, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "352399227": {"repository_manifest": {"name": "KNX User Forum Icon Set", "render_readme": true, "homeassistant": "2021.10"}, "full_name": "mampfes/ha-knx-uf-iconset", "category": "plugin", "description": "Icon set from KNX User Forum for Home Assistant. The icon set contains more than 900 icons for home automation.", "etag_repository": "W/\"57aa74cedad089ab7aa30de4b5ccac74c076f32ae5495a6214a6a9959390f5b3\"", "last_updated": "2021-12-15T18:26:29Z", "stargazers_count": 6, "topics": ["icons", "iconset"], "last_fetched": 1695553546.947539, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "143340728": {"repository_manifest": {"name": "ATAG One", "country": "NL"}, "full_name": "herikw/home-assistant-custom-components", "authors": ["@herikw"], "category": "integration", "description": "Atag One Custom components for Home-Assistant", "domain": "atagone", "etag_repository": "W/\"b91ac16aea909bf444d72376ad08097b5d0e109695eafb1a31219ebfddfa58e1\"", "last_updated": "2023-03-06T20:40:08Z", "stargazers_count": 11, "topics": ["atag", "thermostat"], "last_fetched": 1695553658.933171, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260264517": {"repository_manifest": {"name": "ClimaCell Weather Provider"}, "full_name": "r-renato/ha-climacell-weather", "authors": ["@r-renato"], "category": "integration", "description": "Climacell weather provider integration is a custom component for Home Assistant. The climacell platform uses the Climacell API as a source for meteorological data for your location.", "domain": "climacell", "etag_repository": "W/\"178be98bc5ffe26c6be71207f48c8671f96e02b06de66b4e9e8bb28e4749ac71\"", "last_updated": "2023-06-14T20:17:22Z", "stargazers_count": 46, "topics": ["climacell", "weather"], "last_fetched": 1695554148.950544, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325755578": {"repository_manifest": {"name": "MercedesME 2020", "homeassistant": "2022.11.0"}, "full_name": "ReneNulschDE/mbapi2020", "authors": ["@ReneNulschDE"], "category": "integration", "description": "Custom Component to integrate MercedesME devices into Home-Assistant", "domain": "mbapi2020", "etag_repository": "W/\"4a0977b6d64671f090d7aeaf02f06e4ee5fe1269dd0bb1ac4c1a01c62c04e52a\"", "last_updated": "2023-08-31T11:36:09Z", "stargazers_count": 96, "topics": ["car", "home-assistant-component", "lock", "switch"], "last_fetched": 1695554151.188864, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "365332200": {"repository_manifest": {"name": "PiJuice UPS Hat", "render_readme": true, "country": ["US", "FR", "ES", "DE"]}, "full_name": "Racailloux/home-assistant-pijuice", "authors": ["@Racailloux"], "category": "integration", "description": "Home Assistant integration to support PiJuice UPS Hat and retrieve values to sensors.", "domain": "pijuice", "etag_repository": "W/\"39c5e216bb51d62050c49f9cef7da9ad79c6e58e2e010766b052184333fcddae\"", "last_updated": "2023-05-08T06:27:23Z", "stargazers_count": 12, "topics": ["battery", "hat", "integrations", "pijuice", "raspberry-pi", "sensors", "ups", "voltage"], "last_fetched": 1695554149.927608, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "615769161": {"repository_manifest": {"name": "v2c_trydan", "render_readme": true}, "full_name": "Rain1971/V2C_trydant", "authors": ["@Rain1971"], "category": "integration", "description": "Electric car charger for v2c trydan in home asssitant via HACS", "domain": "v2c_trydan", "downloads": 4, "etag_repository": "W/\"6ef09ce31931d8de879cc9c966b4478bf180552c8bddf5e8bf8cffa0d9c963f5\"", "last_updated": "2023-07-23T18:22:41Z", "stargazers_count": 16, "topics": ["v2c"], "last_fetched": 1695554149.965078, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197983504": {"repository_manifest": {}, "full_name": "rdehuyss/homeassistant-custom_components-denkovi", "authors": ["@rdehuyss"], "category": "integration", "description": "Support for Denkovi IOT Relay modules in HomeAssistant", "domain": "denkovi", "etag_repository": "W/\"a538abd45d0172d5518e273e4fc591df4fefdb39cf55aeb993d0192031a361d1\"", "last_updated": "2022-01-04T15:00:15Z", "stargazers_count": 5, "topics": ["denkovi"], "last_fetched": 1695554150.124991, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316421110": {"repository_manifest": {"name": "La Marzocco"}, "full_name": "rccoleman/lamarzocco", "authors": ["@rccoleman"], "category": "integration", "description": "Interact with your La Marzocco espresso machine", "domain": "lamarzocco", "etag_repository": "W/\"202ab80a73c1b24ce98cc2b1c40a91657a54b0de50e3f471a0c6f24d542f5233\"", "last_updated": "2023-08-17T19:28:41Z", "stargazers_count": 56, "topics": ["home-assistant-component", "la-marzocco", "lamarzocco"], "last_fetched": 1695554150.508534, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "596085141": {"repository_manifest": {"name": "octopus-energy-rates-card", "render_readme": true}, "full_name": "lozzd/octopus-energy-rates-card", "category": "plugin", "description": "This lovelace card for Home Assistant displays the Octopus Energy rate prices per each 30 minute slot", "etag_repository": "W/\"6d13b8578494d44509391c69ddb5e2a755e694252baea9b256eb5c9bb8ff4657\"", "last_updated": "2023-09-08T12:44:35Z", "stargazers_count": 26, "topics": ["electricity", "energy", "octopus", "octopus-energy", "octopus-energy-agile", "octopusenergy", "rates"], "last_fetched": 1695553545.101511, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582608844": {"repository_manifest": {"name": "Emu M-Bus Center", "hacs": "1.6.0", "homeassistant": "0.7.4", "render_readme": true}, "full_name": "redlukas/emu_mbus_center", "authors": ["@redlukas"], "category": "integration", "description": "Reads Values from a Emu M-Bus Center and exposes them to Home Assistant", "domain": "emu_m_bus_center", "etag_repository": "W/\"e01d2c666f8e52ff99b01c1f61a50c4db735d1a2d909ac9fc8954501ad4c5c16\"", "last_updated": "2023-09-18T01:40:39Z", "stargazers_count": 1, "topics": ["m-bus", "rest-client"], "last_fetched": 1695554150.567531, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "542621509": {"repository_manifest": {"name": "Imou Life", "hacs": "1.6.0", "render_readme": true}, "full_name": "user2684/imou_life", "authors": ["@user2684"], "category": "integration", "description": "Home Assistant custom component for controlling Imou devices", "domain": "imou_life", "downloads": 58, "etag_repository": "W/\"0d42e51b2cf27df39022fe5ef152b659c41862f0091a62bf9be2e50a5b03c278\"", "last_updated": "2023-02-19T21:50:48Z", "stargazers_count": 69, "topics": ["camera", "imou", "imou-life", "motion-detection", "webcam"], "last_fetched": 1695554190.569171, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "248462859": {"repository_manifest": {"homeassistant": "2022.12.0", "name": "Alarm.com", "render_readme": true}, "full_name": "pyalarmdotcom/alarmdotcom", "authors": ["@uvjustin", "@elahd"], "category": "integration", "description": "Custom component to allow Home Assistant to interface with Alarm.com", "domain": "alarmdotcom", "etag_repository": "W/\"1dcf438fbef887dbfa51409cfc6aff2a052d17aad4fd6c0024f31dd0926d7ec6\"", "last_updated": "2023-09-19T08:03:18Z", "stargazers_count": 101, "topics": ["alarm"], "last_fetched": 1695554148.549358, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232269564": {"repository_manifest": {"name": "Konke", "country": "CN"}, "full_name": "5high/konke", "authors": ["@jedmeng"], "category": "integration", "description": "\u63a7\u5ba2\u5c0fK \u63a5\u5165Home Assistant\uff0c\u652f\u6301\u6700\u65b0\u7248\u672cHA \u76ee\u524d\u6700\u65b0\u7248\u672c\uff080.103\uff09\uff0c\u76f8\u4fe1\u672a\u6765\u7684\u7248\u672c\u4e5f\u53ef\u4ee5\u652f\u6301\u3002", "domain": "konke", "etag_repository": "W/\"b8a428045e2efb0527e805a53c71b0ffcd1286f2eb11ca77d43242eb0e4ac3e5\"", "last_updated": "2022-02-08T07:44:52Z", "stargazers_count": 20, "last_fetched": 1695553571.070239, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "241427839": {"repository_manifest": {"name": "Omnik Inverter Solar Sensor (No Cloud)", "country": "NL", "homeassistant": "2023.2.0"}, "full_name": "robbinjanssen/home-assistant-omnik-inverter", "authors": ["@robbinjanssen", "@klaasnicolaas"], "category": "integration", "description": "Read the current, daily and total Wh from your Omnik Inverter via local network (no cloud!)", "domain": "omnik_inverter", "etag_repository": "W/\"d93807607afdd10aeaa5a6180c045e4ceec4bdf2aa1710e8b8d7f071891a1b78\"", "last_updated": "2023-09-22T13:35:37Z", "stargazers_count": 49, "topics": ["python3"], "last_fetched": 1695554152.685765, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203036108": {"repository_manifest": {"name": "Valetudo Map Card", "filename": "valetudo-map-card.js", "render_readme": true}, "full_name": "Hypfer/lovelace-valetudo-map-card", "category": "plugin", "description": "Display the map from a valetudo-enabled robot in a home assistant dashboard card.", "etag_repository": "W/\"6fc0bad7a4eff39fa9b92c2bed15dbb3ddbf45de7d5f983125f500b92bd491bf\"", "last_updated": "2023-07-12T09:20:08Z", "stargazers_count": 210, "topics": ["valetudo"], "last_fetched": 1695553534.739191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "524376939": {"repository_manifest": {"name": "One Smart Control", "country": "NL"}, "full_name": "PimDoos/onesmartcontrolha", "authors": ["@PimDoos"], "category": "integration", "description": "Home Assisttant integration for One Smart Control server", "domain": "onesmartcontrol", "etag_repository": "W/\"ecc8fd923b2ff6f27eeb86b3f244a51ae13b65bf1653f1e6dc1058604ef8147a\"", "last_updated": "2023-08-04T19:53:35Z", "stargazers_count": 3, "topics": ["home-assistant-custom-component", "one-smart-control", "socket"], "last_fetched": 1695554143.487056, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "446955395": {"repository_manifest": {"name": "TV touchpad remote card", "content_in_root": true, "render_readme": true, "filename": "touchpad-card.js"}, "full_name": "iablon/HomeAssistant-Touchpad-Card", "category": "plugin", "description": "A card that simplifies TV interaction from HomeAssistant", "etag_repository": "W/\"fb520b68f87f7249ce5ce686b348de4cedf7bfe5144f6d7533424dbabc5049b0\"", "last_updated": "2023-09-14T13:59:21Z", "stargazers_count": 13, "topics": ["remote", "tizen", "touchpad", "touchpad-remote", "trackpad", "tv-remote"], "last_fetched": 1695553534.73819, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "160022220": {"repository_manifest": {"name": "Amazon Rekognition"}, "full_name": "robmarkcole/HASS-amazon-rekognition", "authors": ["@robmarkcole"], "category": "integration", "description": "Home Assistant Object detection with Amazon Rekognition", "domain": "amazon_rekognition", "etag_repository": "W/\"8fce546ba803694f2137b7b8403a2745a55b8d0c70d4f46fcd9d5585fa607bdc\"", "last_updated": "2022-11-22T07:55:06Z", "stargazers_count": 84, "topics": ["rekognition"], "last_fetched": 1695554154.520654, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "304967918": {"repository_manifest": {"name": "Number Box", "filename": "numberbox-card.js", "render_readme": true}, "full_name": "htmltiger/numberbox-card", "category": "plugin", "description": "Replace input_number sliders with plus and minus buttons", "etag_repository": "W/\"ff24186e25dd741760438acf2ff8368d5c888b879066ee771b9e1f1f2881bb0c\"", "last_updated": "2023-07-25T20:04:56Z", "stargazers_count": 82, "topics": ["input", "lovelace-card", "lovelace-cards", "lovelace-custom-card", "number", "numberbox-card", "slider"], "last_fetched": 1695553534.8733, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236945951": {"repository_manifest": {}, "full_name": "lukevink/lovelace-buien-rain-card", "category": "plugin", "description": "Graph of Buienradars rain forecast ", "downloads": 3599, "etag_repository": "W/\"ec9fe52dd3c52fd0ae6f714b8b77bc0cf6b75cefd8e01e840ed1f4612595f25a\"", "last_updated": "2022-11-09T07:37:14Z", "stargazers_count": 49, "topics": ["buienradar", "chartjs", "forecast", "graph"], "last_fetched": 1695553545.217769, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "459336824": {"repository_manifest": {"name": "hass-lacrosseview", "country": "US", "render_readme": true}, "full_name": "regulad/hass-lacrosseview", "authors": ["@regulad"], "category": "integration", "description": "La Crosse view for Home Assistant", "domain": "lacrosseview", "etag_repository": "W/\"b70f8d5d48010bf4f7dbcb83e799ce4b552b888df4ff04f74202661d5af8fa9a\"", "last_updated": "2023-05-13T19:16:21Z", "stargazers_count": 5, "topics": ["home-assistant-config", "lacrosseview"], "last_fetched": 1695554150.662571, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "492996183": {"repository_manifest": {"name": "Hue-Like Light Card", "render_readme": true, "filename": "hue-like-light-card.js"}, "full_name": "Gh61/lovelace-hue-like-light-card", "category": "plugin", "description": "This card provides a Hue-like way to control your lights in Home Assistant.", "downloads": 2564, "etag_repository": "W/\"b4b27b4a5613dcf587fa8966f95814d49af0bbf3be3ed22efeb7978db9843ffd\"", "last_updated": "2023-09-22T14:59:18Z", "stargazers_count": 40, "topics": ["hue", "hue-lights-control", "light", "lovelace-card", "rgb-lights"], "last_fetched": 1695553532.900039, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "600178779": {"repository_manifest": {"name": "Sessy", "country": "NL", "homeassistant": "2023.6.0"}, "full_name": "PimDoos/ha-sessy", "authors": ["@PimDoos"], "category": "integration", "description": "Home Assistant integration for Sessy (Smart Energy Storage SYstem)", "domain": "sessy", "etag_repository": "W/\"fa5aa5101d193dacda614db550827c80903119a9edb523e1063a1ab4b1f9a8fb\"", "last_updated": "2023-09-18T08:22:14Z", "stargazers_count": 14, "topics": ["energy-storage-systems", "homeassistant-custom-component", "sessy"], "last_fetched": 1695554142.083096, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "335713085": {"repository_manifest": {"name": "Todoist Card", "content_in_root": true, "filename": "todoist-card.js", "render_readme": true}, "full_name": "grinstantin/todoist-card", "category": "plugin", "description": "Todoist card for Home Assistant Lovelace UI.", "etag_repository": "W/\"2cefe7777ad49be8a269b701dbfccc882c9e24aed4f6f1258255fd751d0d5dd6\"", "last_updated": "2023-08-16T14:42:07Z", "stargazers_count": 56, "topics": ["todoist"], "last_fetched": 1695553533.043929, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "347143701": {"repository_manifest": {"name": "Channels DVR Recently Recorded"}, "full_name": "rccoleman/channels_dvr_recently_recorded", "authors": ["@rccoleman"], "category": "integration", "description": "\u25b6\ufe0f Channels DVR component to feed Upcoming Media Card.", "domain": "channels_dvr_recently_recorded", "etag_repository": "W/\"cfb479e3046c6f7471cf157bca54a640e883b0c98dbf501118ad3c1d5086667d\"", "last_updated": "2023-09-02T17:10:23Z", "stargazers_count": 12, "topics": ["channels-dvr", "homeassista"], "last_fetched": 1695554150.247209, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "160042309": {"repository_manifest": {"name": "Power wheel card"}, "full_name": "gurbyz/power-wheel-card", "category": "plugin", "description": "An intuitive way to represent the power and energy that your home is consuming or producing. (A custom card for the Lovelace UI of Home Assistant.)", "etag_repository": "W/\"0e3fb728989df2f77f20e69cd919527e0b0a558bae7d3be5b3814454e2c3fc02\"", "last_updated": "2022-06-06T07:43:11Z", "stargazers_count": 148, "topics": ["energy", "solar-panels"], "last_fetched": 1695553533.455019, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257634153": {"repository_manifest": {"name": "FXMarketAPI Integration"}, "full_name": "rob196/home-assistant-fxmarketapi", "authors": ["@rob196"], "category": "integration", "description": "This is a custom component to integrate into FXMarketAPI (https://fxmarketapi.com) to get the live mid-rates in Home Assistant.", "domain": "fxmarketapi", "etag_repository": "W/\"f9bf7fea1c670b33b28360987a5de0334ed1108d039c54184302f01114091801\"", "last_updated": "2021-06-01T16:32:25Z", "stargazers_count": 2, "last_fetched": 1695554152.187462, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220679530": {"repository_manifest": {"name": "HASL Traffic Status Card", "filename": "hasl-traffic-status-card.js", "homeassistant": "0.92"}, "full_name": "hasl-sensor/lovelace-hasl-traffic-status-card", "category": "plugin", "description": "Lovelace Traffic Status Card for the HASL Platform", "etag_repository": "W/\"d409284f25f11a7d16962db7c9b0637930cd734b19d6be68667151b11bdb2e1f\"", "last_updated": "2020-03-04T12:20:16Z", "stargazers_count": 4, "topics": ["hasl", "sl", "stockholms-lokaltrafik", "traffic-status"], "last_fetched": 1695553534.223416, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "597517839": {"repository_manifest": {"name": "Orange \"Internet On the move\" Renault Home Assistant Integration", "homeassistant": "2023.1.6", "render_readme": true, "country": ["fr"]}, "full_name": "rexave/hass-orange-internet-on-the-move", "authors": ["@rexave"], "category": "integration", "description": "Home Assistant integration for Orange Intenet on the move", "domain": "orange_internet_on_the_move", "etag_repository": "W/\"e20a04d1bde0ba2d1bace079202a4802418e25d4f46aed44d036d8f3cab7ae97\"", "last_updated": "2023-05-06T16:49:32Z", "last_fetched": 1695554151.066851, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512922944": {"repository_manifest": {"name": "Czech Energy Spot Prices", "render_readme": true, "country": "CZ"}, "full_name": "rnovacek/homeassistant_cz_energy_spot_prices", "authors": ["@rnovacek"], "category": "integration", "description": "Home Assistant integration that provides current Czech electricity spot prices based on OTE.", "domain": "cz_energy_spot_prices", "etag_repository": "W/\"49383d55562ab734e1a799642a67338006421319a304cbe5ef0388515cb341eb\"", "last_updated": "2023-09-12T09:10:19Z", "stargazers_count": 50, "topics": ["electricity", "energy", "gas", "spot"], "last_fetched": 1695554152.160934, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "172177543": {"repository_manifest": {"name": "Config Template Card", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "iantrich/config-template-card", "category": "plugin", "description": "\ud83d\udcdd Templatable Lovelace Configurations", "downloads": 44555, "etag_repository": "W/\"83df72f330918d42baeaa245407e36529b201a83cadb6997eb99eb86a641d2ba\"", "last_updated": "2023-04-30T12:39:08Z", "stargazers_count": 351, "last_fetched": 1695553535.037052, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "504880554": {"repository_manifest": {"name": "CyclePay for ESD/Hercules Laundry Rooms", "render_readme": true}, "full_name": "elahd/ha-cyclepay", "authors": ["@elahd"], "category": "integration", "description": "Home Assistant Integration for ESD/Hercules CyclePay Laundry Rooms", "domain": "cyclepay", "etag_repository": "W/\"aafccdb81a7fcd40095ea1d2a36d2b8018b0ff44a3d12d5666cb8d84e01b08fe\"", "last_updated": "2023-09-18T18:35:01Z", "stargazers_count": 2, "topics": ["laundry"], "last_fetched": 1695553634.028676, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220679143": {"repository_manifest": {"name": "HASL Departure Card", "filename": "hasl-departure-card.js", "homeassistant": "2021.12.0"}, "full_name": "hasl-sensor/lovelace-hasl-departure-card", "category": "plugin", "description": "Lovelace Departure Card for the HASL Platform", "etag_repository": "W/\"1de9deaf505841a07e1391ece30640db5d0810fdc2ddaa6f5839efb3cc6af08b\"", "last_updated": "2023-06-12T13:18:32Z", "stargazers_count": 9, "topics": ["departures", "hasl", "sl", "stockholms-lokaltrafik"], "last_fetched": 1695553533.561109, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "330645002": {"repository_manifest": {"name": "Danfoss Ally", "render_readme": true, "homeassistant": "2022.1.0", "zip_release": true, "filename": "danfoss_ally.zip"}, "full_name": "MTrab/danfoss_ally", "authors": ["@MTrab"], "category": "integration", "description": "Danfoss Ally intragration for Home Assistant", "domain": "danfoss_ally", "downloads": 511, "etag_repository": "W/\"ba96eaadc18e9ac4e35dcca3462df60185a87ab02985b9d649eea962b2a5fff9\"", "last_updated": "2023-07-28T18:07:25Z", "stargazers_count": 24, "topics": ["climate", "homeassistant-custom-component", "thermostat"], "last_fetched": 1695554127.85959, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299753146": {"repository_manifest": {"name": "Xiaomi Cloud Map Extractor", "render_readme": true, "zip_release": true, "filename": "xiaomi_cloud_map_extractor.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Xiaomi-Cloud-Map-Extractor", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This custom integration provides a way to present a live view of a map for Xiaomi (Roborock/Viomi/Roidmi/Dreame) vacuums without a need for rooting.", "domain": "xiaomi_cloud_map_extractor", "downloads": 17589, "etag_repository": "W/\"16f37b50f21446970fd190c6e0672cb5aed22802ef2254029575355cfdb4a2b9\"", "last_updated": "2023-09-23T08:38:26Z", "stargazers_count": 992, "topics": ["cloud", "dreame", "map", "roborock", "robot", "roidmi", "vacuum", "vacuum-map", "viomi", "xiaomi", "xiaomi-smart-home", "xiaomi-vacuum"], "last_fetched": 1695554145.898362, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "560307075": {"repository_manifest": {"name": "Aula", "country": "DK", "render_readme": true, "homeassistant": "2022.9.0", "zip_release": true, "filename": "aula.zip"}, "full_name": "scaarup/aula", "authors": ["@scaarup"], "category": "integration", "description": "Fetches information from Aula about your children ", "domain": "aula", "downloads": 688, "etag_repository": "W/\"35764d5fedc931635aef0e5d68304cb090a5db67e4626686e6d776c1a596b529\"", "last_updated": "2023-09-04T06:08:23Z", "stargazers_count": 32, "last_fetched": 1695554162.114486, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257005990": {"repository_manifest": {"name": "LG WebOS Remote Control", "content_in_root": true, "filename": "lg-remote-control.js", "render_readme": true}, "full_name": "madmicio/LG-WebOS-Remote-Control", "category": "plugin", "description": "Remote Control for LG TV WebOS", "etag_repository": "W/\"ec35db26893633207d97fbc8fa8b24727231a4f89ef6fa23076d65ea108086e9\"", "last_updated": "2023-07-06T08:41:00Z", "stargazers_count": 311, "last_fetched": 1695553545.867681, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "360213486": {"repository_manifest": {"name": "yi-hack Home Assistant integration", "render_readme": true}, "full_name": "roleoroleo/yi-hack_ha_integration", "authors": ["@roleoroleo"], "category": "integration", "description": "Home Assistant custom integration for Yi cameras: yi-hack-MStar, yi-hack-Allwinner, yi-hack-Allwinner-v2, yi-hack-v5 and sonoff-hack", "domain": "yi_hack", "etag_repository": "W/\"ad2f61be89364da423c45dc17b62e47351c406f44dbcace24eeb0be36405855e\"", "last_updated": "2023-08-26T13:43:10Z", "stargazers_count": 164, "topics": ["camera", "custom", "firmware", "hack", "rtsp", "yi"], "last_fetched": 1695554154.901157, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "344446335": {"repository_manifest": {"name": "Office 365 Integration", "zip_release": true, "filename": "o365.zip", "homeassistant": "2022.5.0", "persistent_directory": ".O365-token-cache", "render_readme": true}, "full_name": "RogerSelwyn/O365-HomeAssistant", "authors": ["@RogerSelwyn"], "category": "integration", "description": "Office 365 integration for Home Assistant", "domain": "o365", "downloads": 1928, "etag_repository": "W/\"c459a7b040e79e4ec7e8b6c24117921bba4e350c1480c3da54f12fb47f2c58b9\"", "last_updated": "2023-09-12T11:10:44Z", "stargazers_count": 99, "topics": ["homeassistant-custom-component", "microsoft", "o365"], "last_fetched": 1695554155.133409, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "172733314": {"repository_manifest": {"name": "HACS", "zip_release": true, "hide_default_branch": true, "homeassistant": "2022.11.0", "hacs": "0.19.0", "filename": "hacs.zip"}, "full_name": "hacs/integration", "authors": ["@ludeeus"], "category": "integration", "description": "HACS gives you a powerful UI to handle downloads of all your custom needs.", "domain": "hacs", "downloads": 426150, "etag_repository": "W/\"7e5734a84bb19a42cb49d5908a86146ce8100986b1f4eff9055ef6df8f404720\"", "last_updated": "2023-09-22T09:09:21Z", "stargazers_count": 3907, "topics": ["community", "package-manager"], "config_flow": true, "default_branch": "main", "installed": false, "last_commit": "53eaf9f", "last_version": "1.32.1", "manifest_name": "HACS", "open_issues": 11, "published_tags": ["1.32.1", "1.32.0", "1.31.0", "1.30.1", "1.30.0"], "releases": true, "version_installed": null, "last_fetched": 1695554184.340513, "first_install": true, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null}, "140618233": {"repository_manifest": {}, "full_name": "RobHofmann/HomeAssistant-GreeClimateComponent", "authors": ["@robhofmann"], "category": "integration", "description": "Custom Gree climate component written in Python3 for Home Assistant. Controls AC's supporting the Gree protocol.", "domain": "gree", "etag_repository": "W/\"210f59899676971e18b4bdf692fee9b2b7940402a4d847f50263edaa19c8339b\"", "last_updated": "2023-07-30T13:27:22Z", "stargazers_count": 223, "last_fetched": 1695554152.669814, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "509260172": {"repository_manifest": {"name": "Curtain Card", "render_readme": true, "filename": "curtain-card.js"}, "full_name": "georgezhao2010/lovelace-curtain-card", "category": "plugin", "description": "Curtain card for Home Assistant Lovelace UI, to control your motor of cover entities.", "etag_repository": "W/\"a6fd895119dc7fa53b382448e5180204b3f4c28504766214357e197eb7e44d6d\"", "last_updated": "2023-08-17T10:44:47Z", "stargazers_count": 9, "topics": ["cover", "curtain", "frontend", "lovelave"], "last_fetched": 1695553532.731159, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "213346369": {"repository_manifest": {"name": "ECHONETLite Platform", "render_readme": true, "homeassistant": "2021.9.2"}, "full_name": "scottyphillips/echonetlite_homeassistant", "authors": ["@scottyphillips", "@nao-pon"], "category": "integration", "description": "A Home Assistant custom component for use with ECHONET enabled devices. ", "domain": "echonetlite", "etag_repository": "W/\"a3d9e4d8b69b8cb2bb7f3a8df75ec1098394eb5a88ff6daa5d3576847b6e1b56\"", "last_updated": "2023-09-23T12:38:36Z", "stargazers_count": 88, "topics": ["echonet-lite"], "last_fetched": 1695554162.27471, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193588464": {"repository_manifest": {"name": "Rozk\u0142adzik sensor", "country": "PL", "render_readme": true, "zip_release": true, "filename": "rozkladzik.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Rozkladzik", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses unofficial API to get data from https://www.rozkladzik.pl and provide information about departures for chosen stop.", "domain": "rozkladzik", "downloads": 294, "etag_repository": "W/\"b21a32275497d8ee58958f9a61823870a673cb6a127fae44e41d3a257a47dc33\"", "last_updated": "2023-09-18T16:14:28Z", "stargazers_count": 9, "topics": ["public-transport"], "last_fetched": 1695554145.623579, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261262884": {"repository_manifest": {"name": "Time Picker Card", "render_readme": true, "filename": "time-picker-card.js"}, "full_name": "GeorgeSG/lovelace-time-picker-card", "category": "plugin", "description": "\ud83d\udd70\ufe0f Time Picker Card for Home Assistant's Lovelace UI", "downloads": 7265, "etag_repository": "W/\"07651bd3366a2a26ca1434a4e9349a63fa1f588f8bd52c8e64bfb0b41f6e82fa\"", "last_updated": "2023-07-18T22:02:59Z", "stargazers_count": 188, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553532.752285, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "294609880": {"repository_manifest": {"name": "BOM Radar Card", "render_readme": true, "filename": "bom-radar-card.js"}, "full_name": "Makin-Things/bom-radar-card", "category": "plugin", "description": "A rain radar card using the new tiled images from the Australian BOM", "downloads": 3047, "etag_repository": "W/\"5b812d8468f57071c200321092f601313985ef809161fe0466dafc80bc3453e4\"", "last_updated": "2023-04-29T21:26:23Z", "stargazers_count": 83, "topics": ["bom", "frontend", "meteorology", "radar", "weather"], "last_fetched": 1695553546.93752, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "589430688": {"repository_manifest": {"name": "GNE PV Monitoring", "render_readme": true, "zip_release": true, "filename": "gne_pv_monitoring.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-GNE-PV-Monitoring", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses official API to get data from GNE", "domain": "gne_pv_monitoring", "downloads": 79, "etag_repository": "W/\"bea75252352cbdcee5ce60e1802d2fa52727eda42534605c26d4c8cce760b4e5\"", "last_updated": "2023-07-07T02:53:36Z", "stargazers_count": 2, "topics": ["gne", "photovoltaic"], "last_fetched": 1695554143.840749, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "166045890": {"repository_manifest": {}, "full_name": "pippyn/Home-Assistant-Sensor-Afvalbeheer", "authors": ["@pippyn"], "category": "integration", "description": "Provides Home Assistant sensors for multiple Dutch and Belgium waste collectors", "domain": "afvalbeheer", "etag_repository": "W/\"43df03e323cb0307e771f1349e101a40096ff99cf3cb820290a045bf5cc25eef\"", "last_updated": "2023-08-22T09:30:03Z", "stargazers_count": 218, "topics": ["belgium", "dutch", "hassio-integration", "waste-collectors"], "last_fetched": 1695554145.734253, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "637172632": {"repository_manifest": {"name": "Peaqnext sensors", "homeassistant": "2022.10.5", "render_readme": true, "zip_release": true, "filename": "peaqnext.zip"}, "full_name": "elden1337/hass-peaqnext", "authors": ["@elden1337"], "category": "integration", "description": "Utility sensors to help find the next best usage of your appliances", "domain": "peaqnext", "downloads": 70, "etag_repository": "W/\"4ddf051429f17f3af3a1e2f4107eaf772ae9e4cddf8278d0ede8580cfbc125cc\"", "last_updated": "2023-09-19T19:23:49Z", "stargazers_count": 6, "topics": ["energidataservice", "nordpool"], "last_fetched": 1695553636.066588, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "424574671": {"repository_manifest": {"name": "SP110E RGB LED BLE Controller Integration", "homeassistant": "2021.11.0", "render_readme": true}, "full_name": "roslovets/SP110E-HASS", "authors": ["@roslovets"], "category": "integration", "description": "Control SP110E RGB LED BLE Controller from Home Assistant", "domain": "sp110e", "etag_repository": "W/\"c718e684a6b84ba0a1ef90be77cd6223b4e907f2b3488309efa65b781d91a3a3\"", "last_updated": "2022-09-04T12:58:32Z", "stargazers_count": 9, "topics": ["ble", "rgb", "sp110e"], "last_fetched": 1695554155.080976, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "338782385": {"repository_manifest": {"name": "Compal WiFi", "country": "CH", "zip_release": true, "filename": "compal_wifi.zip", "render_readme": true}, "full_name": "frimtec/hass-compal-wifi", "authors": ["@frimtec"], "category": "integration", "description": "Home Assistant component to switch WiFi on/off for Compal CH7465LG modem.", "domain": "compal_wifi", "downloads": 107, "etag_repository": "W/\"a99876f630767087eada954178ee596a0107b8b4fda6819606ca2650f8603bb2\"", "last_updated": "2023-09-04T16:30:08Z", "stargazers_count": 2, "topics": ["ch7465lg", "compal", "compal-wifi-switch", "switch", "wifi", "wlan"], "last_fetched": 1695553645.448692, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366911690": {"repository_manifest": {"name": "Dahua", "hacs": "1.6.0", "homeassistant": "2021.7.0", "render_readme": true}, "full_name": "rroller/dahua", "authors": ["@rroller"], "category": "integration", "description": "Dahua Camera and Doorbell Home Assistant Integration", "domain": "dahua", "etag_repository": "W/\"f6a0f329880b324b09eb0f32af95dceab0fbe64b035222f354ed7a3e71ae5a10\"", "last_updated": "2023-09-09T15:23:27Z", "stargazers_count": 283, "topics": ["amcrest", "camera", "dahua", "doorbell", "ipcam", "lorex"], "last_fetched": 1695554156.003114, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "622713177": {"repository_manifest": {"name": "GivTCP Power Flow Card", "render_readme": true, "filename": "givtcp-power-flow-card.js"}, "full_name": "VeniVidiVici/givtcp-power-flow-card", "category": "plugin", "description": "A power distribution card for Home Assistant specifically for GivTCP users", "downloads": 1552, "etag_repository": "W/\"7e012f85471ba2b567b8f18eaea504fb85f3ce6c51f2d85440c573faa1075d8b\"", "last_updated": "2023-09-18T08:26:39Z", "stargazers_count": 3, "topics": ["givenergy", "givtcp"], "last_fetched": 1695553567.539384, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "379781545": {"repository_manifest": {"name": "Netgear WAX", "hacs": "1.6.0", "homeassistant": "2021.4.0", "render_readme": true}, "full_name": "rroller/netgear", "authors": ["@rroller"], "category": "integration", "description": "Netgear Home Assistant Integration", "domain": "netgear_wax", "etag_repository": "W/\"5e3948494eff579d7fb6cd3e7cda58e7fa0ae0c69364c4b54ccc78511a2f839c\"", "last_updated": "2023-09-16T21:18:31Z", "stargazers_count": 12, "topics": ["netgear", "wax", "wax-610", "wax-620", "wi-fi"], "last_fetched": 1695554156.244381, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "311913208": {"repository_manifest": {"name": "Gecko", "hacs": "0.24.0", "homeassistant": "2023.1.1"}, "full_name": "gazoodle/gecko-home-assistant", "authors": ["@gazoodle"], "category": "integration", "description": "Home Assistant integration for spas equipped with Gecko Alliance in.touch2 modules", "domain": "gecko", "etag_repository": "W/\"9a8151e313698e8efb9097d8b2bedc68e71068990fba0bfef1daf253f874bc8b\"", "last_updated": "2023-02-06T20:19:08Z", "stargazers_count": 45, "topics": ["gecko", "home-assistant-integration", "hot-tub", "intouch2", "jacuzzi", "spa"], "last_fetched": 1695553645.407224, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "249381778": {"repository_manifest": {"name": "Local Tuya", "homeassistant": "0.116.0"}, "full_name": "rospogrigio/localtuya", "authors": ["@rospogrigio", "@postlund"], "category": "integration", "description": "local handling for Tuya devices", "domain": "localtuya", "etag_repository": "W/\"afbcfbdb3aac49eb93317d83d4178d2eff51c039c50e934b5028e77efa430208\"", "last_updated": "2023-09-22T20:28:50Z", "stargazers_count": 2096, "topics": ["localtuya", "tuya", "tuya-api"], "last_fetched": 1695554155.414089, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544105569": {"repository_manifest": {"name": "BenQ projector", "homeassistant": "2022.11.0"}, "full_name": "rrooggiieerr/homeassistant-benqprojector", "authors": ["@rrooggiieerr"], "category": "integration", "description": "Home Assistant integration for BenQ projectors over the serial interface.", "domain": "benqprojector", "etag_repository": "W/\"9624f900ecf65d6923b226a81f48e49bd8eff4e3c54787c62fd5be63573b1acf\"", "last_updated": "2023-05-12T10:18:57Z", "stargazers_count": 10, "topics": ["benq", "projector", "projector-control"], "last_fetched": 1695554156.678921, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373370853": {"repository_manifest": {"name": "Helium Blockchain", "render_readme": true}, "full_name": "rsnodgrass/hass-helium", "authors": ["@rsnodgrass"], "category": "integration", "description": "Helium blockchain sensors for Home Assistant", "domain": "helium", "etag_repository": "W/\"521843cb05df306579b0c845aa4827eeb2635d07acf87a8334fb8cc0ec70b030\"", "last_updated": "2023-04-11T15:56:11Z", "stargazers_count": 36, "topics": ["helium", "helium-blockchain", "lorawan", "lorawan-network"], "last_fetched": 1695554157.26307, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534750752": {"repository_manifest": {"name": "XY Screens projector screens and projector lifts"}, "full_name": "rrooggiieerr/homeassistant-xyscreens", "authors": ["@rrooggiieerr"], "category": "integration", "description": "Home Assistant integration for XY Screens projector screens and projector lifts over the RS-485 interface", "domain": "xyscreens", "etag_repository": "W/\"923ebe844772874f8b5ffe56fc1bf4dbe011b9903f9631038948b7c33bf6584b\"", "last_updated": "2023-08-24T19:50:48Z", "topics": ["projector-sceen", "xy-screens"], "last_fetched": 1695554157.119538, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454670742": {"repository_manifest": {"name": "AstroWeather Card", "render_readme": true, "filename": "astroweather-card.js"}, "full_name": "mawinkler/astroweather-card", "category": "plugin", "description": "Lovalace Card for the AstroWeather Integration", "etag_repository": "W/\"a24708c8e4a66b209fb70fa45ceca65104419e76a8a9310d50ecb019e3853987\"", "last_updated": "2023-09-24T08:48:37Z", "stargazers_count": 13, "topics": ["7timer", "astronomy", "forecast", "lovelace-card"], "last_fetched": 1695553549.270102, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228299254": {"repository_manifest": {"name": "LUNOS Heat Recovery Ventilation", "render_readme": true}, "full_name": "rsnodgrass/hass-lunos", "authors": ["@rsnodgrass"], "category": "integration", "description": "LUNOS HRV Ventilation Fan Control for Home Assistant", "domain": "lunos", "etag_repository": "W/\"df2c25985562c143d4290682f99027f6145c5cc18eba1fd9ad75747f965cf111\"", "last_updated": "2023-04-22T05:12:08Z", "stargazers_count": 20, "topics": ["hrv", "hvac", "lunos", "smart-home-solutions", "ventilation"], "last_fetched": 1695554157.242445, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "640244449": {"repository_manifest": {"name": "Pool Monitor Card", "content_in_root": true, "filename": "pool_monitor_card.js", "render_readme": true}, "full_name": "wilsto/pool-monitor-card", "category": "plugin", "description": "The \"Pool Monitor Card\" is a home assistant plugin that display information of 1 to 12 pre-defined sensors of your swimming pool : temperature, pH, ORP levels and TDS but also if you need them : salinity, CYA, calcium, phosphate, alkalinity, filter pressure , free chlorine, total chlorine", "etag_repository": "W/\"bdd1b8ee697e41b0f1e1791929936f33472042cb82f4f7d4490d2b32aab89dff\"", "last_updated": "2023-09-10T08:39:05Z", "stargazers_count": 25, "topics": ["lovelace-custom-card", "monitor", "pool"], "last_fetched": 1695553569.395443, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200927325": {"repository_manifest": {"name": "Pool Math (Trouble Free Pool)", "render_readme": true}, "full_name": "rsnodgrass/hass-poolmath", "authors": ["@rsnodgrass"], "category": "integration", "description": "Pool Math for Home Assistant", "domain": "poolmath", "etag_repository": "W/\"90322a0d0649d00ffd1cfa58d8446427e0ea15616e249c58b895cd895cb27f2b\"", "last_updated": "2023-04-22T05:17:51Z", "stargazers_count": 23, "topics": ["pool", "swimming-pool"], "last_fetched": 1695554157.35857, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "640556013": {"repository_manifest": {"name": "Energy Entity row", "render_readme": true, "filename": "energy-entity-row.js"}, "full_name": "zeronounours/lovelace-energy-entity-row", "category": "plugin", "description": "Lovelace HA entity row to integrate with energy-date-selection", "downloads": 1775, "etag_repository": "W/\"40f5b91ec15b0122a7750a18a7b4c09d30e37913b7d7bfbe966e0434aacd19b2\"", "last_updated": "2023-05-16T06:26:50Z", "topics": ["energy-consumption", "lovelace-entity-row"], "last_fetched": 1695553569.407408, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "149443194": {"repository_manifest": {"name": "ADT Pulse", "homeassistant": "2023.1.0", "render_readme": true}, "full_name": "rsnodgrass/hass-adtpulse", "category": "integration", "description": "ADT Pulse sensor for Home Assistant", "domain": "adtpulse", "etag_repository": "W/\"11009d264f843c83b30bd171f1717246138c5797501d44ae2f0b70eb75eeecab\"", "last_updated": "2023-05-20T09:28:43Z", "stargazers_count": 12, "topics": ["adt-pulse"], "last_fetched": 1695554157.161351, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286270157": {"repository_manifest": {"name": "Scheduler Card", "render_readme": true, "filename": "scheduler-card.js"}, "full_name": "nielsfaber/scheduler-card", "category": "plugin", "description": "HA Lovelace card for control of scheduler entities", "downloads": 7109, "etag_repository": "W/\"38631ef2f80fbd8a9d548186ae9e5087564470a5274ebb3c225c489fd7017661\"", "last_updated": "2023-09-18T04:19:44Z", "stargazers_count": 671, "topics": ["assistant", "automation", "card", "home", "schedule", "scheduler", "sunrise", "sunset", "week", "weekly"], "last_fetched": 1695553552.033664, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "205416078": {"repository_manifest": {"name": "SensorPush", "render_readme": true}, "full_name": "rsnodgrass/hass-sensorpush", "authors": ["@rsnodgrass"], "category": "integration", "description": "SensorPush integration for Home Assistant", "domain": "sensorpush", "etag_repository": "W/\"9d72587b28694fe6ee7309416b5fe19883a10c5ee78cea324681bbf910ac2073\"", "last_updated": "2022-11-16T07:33:19Z", "stargazers_count": 29, "topics": ["iot"], "last_fetched": 1695554157.611259, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373857882": {"repository_manifest": {"name": "Entities Button Group", "render_readme": true}, "full_name": "wassy92x/lovelace-entities-btn-group", "category": "plugin", "description": "A custom card for Home Assistant to group multiple buttons", "downloads": 2089, "etag_repository": "W/\"8a7d7ab27e4b9c7e46a181ec9a4d56ba1d02e3f6fd086dc82e2cb447b8f3bb93\"", "last_updated": "2023-05-22T20:47:26Z", "stargazers_count": 8, "topics": ["lovelace-card"], "last_fetched": 1695553569.232019, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279861920": {"repository_manifest": {"name": "Reverso TTS / tts", "render_readme": true}, "full_name": "rt400/ReversoTTS-HA", "authors": ["@yuval_mejahez"], "category": "integration", "description": "ReversoTTS component for HomeAssistant", "domain": "reversotts", "etag_repository": "W/\"cfc43e1496eadc2274440923dacc2a578596adf483272a91b1c952dc59eb6f4f\"", "last_updated": "2021-05-23T17:14:46Z", "stargazers_count": 37, "topics": ["reversotts", "tts"], "last_fetched": 1695554158.32553, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "505459170": {"repository_manifest": {"name": "TV Remote Card (with touchpad and haptic feedback)", "content_in_root": true, "homeassistant": "2022.4.0"}, "full_name": "usernein/tv-card", "category": "plugin", "description": "\ud83d\udcfa TV Remote Card (with touchpad and haptic feedback)", "downloads": 9298, "etag_repository": "W/\"5548359d9fa8a5a9ae72f27a277ba1c2c6eb069143f3c35d04ebfedb7e6cbb83\"", "last_updated": "2023-05-19T10:50:30Z", "stargazers_count": 74, "topics": ["automation", "card", "remote", "tv"], "last_fetched": 1695553567.256466, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235385658": {"repository_manifest": {"name": "Xantech/Dayton Audio/Sonance Multi-Zone Amp", "render_readme": true}, "full_name": "rsnodgrass/hass-xantech", "authors": [""], "category": "integration", "description": "Xantech Multi-Zone Matrix Audio for Home Assistant", "domain": "xantech", "etag_repository": "W/\"6c1631addc22a5415cc966d743e1946c7d828c20f146bd9291764d4f8c98af69\"", "last_updated": "2023-04-22T05:23:41Z", "stargazers_count": 16, "topics": ["audiophile", "xantech"], "last_fetched": 1695554157.827982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373832981": {"repository_manifest": {"name": "Digital Clock", "render_readme": true}, "full_name": "wassy92x/lovelace-digital-clock", "category": "plugin", "description": "A custom digital clock card for Home Assistant", "downloads": 16018, "etag_repository": "W/\"0a957fa467f1ae7d7baaf963f7426271ceb6c409585501cfd7dc6d4473258405\"", "last_updated": "2023-05-22T20:45:26Z", "stargazers_count": 50, "topics": ["lovelace-card"], "last_fetched": 1695553569.187803, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "153006394": {"repository_manifest": {}, "full_name": "rt400/School-Vacation", "authors": ["@yuval_mejahez"], "category": "integration", "description": null, "domain": "school_holidays", "etag_repository": "W/\"4482d19e1a7362d5ed28ee5a6c238c58819c9a27ef744c38f28e632388363a3e\"", "last_updated": "2023-09-17T18:09:41Z", "stargazers_count": 7, "last_fetched": 1695554158.609302, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497322919": {"repository_manifest": {"name": "Upcoming Media Card", "render_readme": true}, "full_name": "NemesisRE/upcoming-media-card", "category": "plugin", "description": "\ud83d\udcfa A card to display upcoming episodes and movies from services like: Plex, Kodi, Radarr, Sonarr, and Trakt.", "downloads": 7779, "etag_repository": "W/\"15f53e9e6371679343e9c31d20ce641b897f990bf5a9242e0d15b580f2ff605e\"", "last_updated": "2022-05-31T15:30:28Z", "stargazers_count": 20, "topics": ["customization"], "last_fetched": 1695553550.906177, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283542587": {"repository_manifest": {"name": "Lovelace Clock Card", "render_readme": true}, "full_name": "Villhellm/lovelace-clock-card", "category": "plugin", "description": "Basic analog clock for Lovelace", "etag_repository": "W/\"0c75a043ebd2b18903e5ca52b37600ef8b2d50b94f608e286a8715db2ed74589\"", "last_updated": "2020-11-24T17:31:42Z", "stargazers_count": 44, "topics": ["analog", "clock"], "last_fetched": 1695553567.318005, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "242528119": {"repository_manifest": {"name": "RuuviTag Sensor", "render_readme": true}, "full_name": "ruuvi-friends/ruuvi-hass.io", "authors": ["@smaisidoro"], "category": "integration", "description": "Ruuvi tag BLE sensor for Home Assistant.", "domain": "ruuvi", "etag_repository": "W/\"2a4b8954e48fe577fecdece0b88ca6e103883f231fe0097cbe330cac78149d6c\"", "last_updated": "2022-01-25T13:23:39Z", "stargazers_count": 43, "topics": ["ruuvi-ble-devices", "ruuvitag", "ruuvitag-sensor"], "last_fetched": 1695554159.311124, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257123327": {"repository_manifest": {"name": "LG WebOS channel pad", "filename": "card-channel-pad.js", "render_readme": true}, "full_name": "madmicio/channel-pad", "category": "plugin", "description": "channel pad for LG TV Remote control", "etag_repository": "W/\"d1200fb40eb709e3e9b1590db1f61b53a688f5f45aae8a5b05e6aacb9d7b3746\"", "last_updated": "2020-05-28T19:17:53Z", "stargazers_count": 19, "topics": ["channel-pad", "lg", "tv-remote"], "last_fetched": 1695553545.661905, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259904390": {"repository_manifest": {"name": "Jumbo Card", "filename": "jumbo-card.js"}, "full_name": "Voxxie/lovelace-jumbo-card", "category": "plugin", "description": "A custom lovelace card for the custom Jumbo component.", "downloads": 5675, "etag_repository": "W/\"43ba8cb9e26df434296cbee4ba1d4e7aed4b2b6d8086b8997357cfcab8b7029e\"", "last_updated": "2020-05-04T10:11:59Z", "stargazers_count": 2, "topics": ["jumbo", "lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553569.034804, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "295123287": {"repository_manifest": {"name": "Jewish Sabbaths Holidays / sensor", "render_readme": true}, "full_name": "rt400/Jewish-Sabbaths-Holidays", "authors": ["@yuval_mejahez"], "category": "integration", "description": "Jewish Shabbat Yomtov and Holidays times and event", "domain": "hebcal", "etag_repository": "W/\"39979a888b3b517bbde6f319b5f6bca4e571716db65863c1d30e6e031b05a57a\"", "last_updated": "2023-09-13T08:09:52Z", "stargazers_count": 13, "topics": ["holidays", "jewish", "shabbat"], "last_fetched": 1695554158.195381, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246549747": {"repository_manifest": {"name": "Atomic Calendar Revive", "filename": "atomic-calendar-revive.js", "country": ["GB"]}, "full_name": "totaldebug/atomic-calendar-revive", "category": "plugin", "description": "An advanced calendar card for Home Assistant Lovelace.", "downloads": 5709, "etag_repository": "W/\"c8e230da29d7f5d2aeb9079cdf9fef4e74967e51fb9b43172ed8e1a493e79d36\"", "last_updated": "2023-09-24T08:16:18Z", "stargazers_count": 302, "topics": ["calendar", "card", "javascript", "module"], "last_fetched": 1695553567.876244, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "531686897": {"repository_manifest": {"name": "dolphin", "render_readme": true}, "full_name": "0xAlon/dolphin", "authors": ["@0xAlon"], "category": "integration", "description": "Home Assistant Integration for Dolphin Boiler - Smart Water Heating Control", "domain": "dolphin", "etag_repository": "W/\"216963c4a1c033d195c7bdfd1eec72d025cf93a15537f980272d2d99340f9202\"", "last_updated": "2023-01-09T11:11:30Z", "stargazers_count": 5, "last_fetched": 1695553569.708813, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "603834302": {"repository_manifest": {"name": "ldata", "render_readme": true, "homeassistant": "2021.12.4"}, "full_name": "rwoldberg/ldata-ha", "authors": ["@rwoldberg"], "category": "integration", "description": "Home Assistant Integration for Levition LDATA", "domain": "ldata", "etag_repository": "W/\"61b9fd1462f3339e7f86fc3ac37b50a11e06a309dd481f3f9d24fb671761b5f7\"", "last_updated": "2023-09-01T22:52:16Z", "stargazers_count": 14, "topics": ["ldata", "leviton"], "last_fetched": 1695554159.361094, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "452251255": {"repository_manifest": {"name": "Browser Control Card", "content_in_root": true, "filename": "browser-control-card.js", "render_readme": "true"}, "full_name": "mathoudebine/homeassistant-browser-control-card", "category": "plugin", "description": "Control your browser from a Home Assistant lovelace card: full screen, disable screen lock, zoom, reload page...", "downloads": 3574, "etag_repository": "W/\"ee2a885133c5c748388ca7cd02c53abe70146c32ae4e57bf8b3aa3ee4a504808\"", "last_updated": "2022-04-15T16:22:59Z", "stargazers_count": 8, "topics": ["browser", "browser-control", "card", "fullscreen", "lock", "refresh", "reload", "sleep", "wake-on-lan", "zoom"], "last_fetched": 1695553548.972501, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "526379993": {"repository_manifest": {"name": "tami4edge", "render_readme": true}, "full_name": "0xAlon/tami4edge", "authors": ["@0xAlon"], "category": "integration", "description": "Home Assistant Integration for tami4edge", "domain": "tami4edge", "etag_repository": "W/\"5c2c93059013aa10ace5e418a0b60af9fdea34927d381f588b94d120b0cc132e\"", "last_updated": "2023-07-06T22:11:28Z", "stargazers_count": 9, "last_fetched": 1695553570.026497, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235915302": {"repository_manifest": {"name": "Marta / Breeze Card", "render_readme": true}, "full_name": "ryanmac8/Home-Assistant-Marta", "category": "integration", "description": "Custom Home Assistant sensor for the Marta/Breeze Card.", "domain": "marta", "etag_repository": "W/\"eb69eaf83dc6c8e4c17dcd62708070004fb6d073e272335252292c1a5330bf9a\"", "last_updated": "2021-05-13T14:56:54Z", "stargazers_count": 3, "topics": ["breeze-card", "marta"], "last_fetched": 1695554159.495108, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "488931467": {"repository_manifest": {"name": "BVG (Berlin Public Transport)", "hacs": "1.6.0", "country": ["DE"], "homeassistant": "0.118.0"}, "full_name": "ryanbateman/bvg-sensor", "authors": ["@ryanbateman"], "category": "integration", "description": "A HomeAssistant / HACS integration of Berlin Public Transport (BVG) ", "domain": "bvg_berlin_public_transport", "etag_repository": "W/\"a6e447d6f2969fcbc19e421ba5b99c9009f1f5fde06f53b33d8203bf54b26bf7\"", "last_updated": "2023-06-04T15:02:47Z", "stargazers_count": 15, "topics": ["berlin", "bvg", "public-transport"], "last_fetched": 1695554159.425941, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "329411371": {"repository_manifest": {"name": "HA Dashboard", "render_readme": true}, "full_name": "wassy92x/lovelace-ha-dashboard", "category": "plugin", "description": "A custom dashboard for Home Assistant with sidebar", "downloads": 2975, "etag_repository": "W/\"4c458c24032dbb6ecd889fcf91af69596eb18949e4c5b6cd1bccd2639c023d22\"", "last_updated": "2023-04-27T09:59:32Z", "stargazers_count": 22, "last_fetched": 1695553569.214102, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "463623003": {"repository_manifest": {"name": "Rainforest EMU-2", "homeassistant": "2021.8.0", "render_readme": true}, "full_name": "ryanwinter/hass-rainforest-emu-2", "authors": ["@ryanwinter"], "category": "integration", "description": "Intergration for the Rainforest EMU-2 energy monitor", "domain": "rainforest_emu_2", "etag_repository": "W/\"4f3e678ee6fcc45747a29553489b5732534fc2eead2247bb40f97e77a1940257\"", "last_updated": "2023-07-03T22:39:24Z", "stargazers_count": 23, "topics": ["energy"], "last_fetched": 1695554159.852932, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "321773656": {"repository_manifest": {"name": "themable-grid", "render_readme": true}, "full_name": "nervetattoo/themable-grid", "category": "plugin", "description": "\ud83c\udc39 Lovelace responsive grid card that can be tweaked in your theme definition.", "downloads": 2141, "etag_repository": "W/\"f0e9eef0e1f1b61e495afefa1c540c7ac8b73e990c40f4e1934226ade4da9fc6\"", "last_updated": "2022-12-21T10:40:03Z", "stargazers_count": 26, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553551.29688, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "124688531": {"repository_manifest": {"name": "UPnP Availability", "render_readme": true}, "full_name": "rytilahti/homeassistant-upnp-availability", "authors": ["@rytilahti"], "category": "integration", "description": "UPnP Availability sensor for Home Assistant", "domain": "upnp_availability", "etag_repository": "W/\"acffd9cf3f76afa967e379cf389cb48df2b45bbef147edb3ad297e722f3d7827\"", "last_updated": "2023-09-16T17:33:13Z", "stargazers_count": 17, "topics": ["ssdp", "upnp"], "last_fetched": 1695554159.901625, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "501725479": {"repository_manifest": {"name": "Home Assistant Swipe Navigation", "render_readme": true, "filename": "swipe-navigation.js"}, "full_name": "zanna-37/hass-swipe-navigation", "category": "plugin", "description": "\u2194\ufe0f Swipe through Home Assistant Dashboard views on mobile.", "downloads": 2782, "etag_repository": "W/\"e1e8406697ae04940b16fea6852f818ed127b1f83cde72558def96bcc4fd2624\"", "last_updated": "2023-09-21T18:36:03Z", "stargazers_count": 156, "topics": ["navigation", "swipe"], "last_fetched": 1695553569.520695, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "313759590": {"repository_manifest": {"name": "Mint Mobile", "render_readme": true}, "full_name": "ryanmac8/HA-Mint-Mobile", "authors": ["@ryanmac8"], "category": "integration", "description": "Mint Mobile Integration for Data Usage Monitoring", "domain": "mintmobile", "etag_repository": "W/\"753e77be5a64f403c59d4b56b069d1c13b65f267b83eff73b00028108e794945\"", "last_updated": "2023-09-19T20:15:06Z", "stargazers_count": 7, "topics": ["automation"], "last_fetched": 1695554159.496073, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195308808": {"repository_manifest": {}, "full_name": "safepay/sensor.fronius", "authors": ["@safepay"], "category": "integration", "description": "A Fronius Sensor for Home Assistant", "domain": "fronius_inverter", "etag_repository": "W/\"203cbee34e383767211db72555eaf745081fa41deb97df7ad9f84a59935a1fce\"", "last_updated": "2023-03-05T11:39:25Z", "stargazers_count": 71, "last_fetched": 1695554160.311149, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "474183846": {"repository_manifest": {"name": "HA-Mila", "render_readme": true}, "full_name": "sanghviharshit/ha-mila", "authors": ["@sanghviharshit", "@simbaja"], "category": "integration", "description": "\ud83c\udfe1 \ud83d\udca8 Home Assistant custom component for Mila Air Purifier (Unofficial)", "domain": "mila", "etag_repository": "W/\"4e9f35eb1268671af5b6d1f83b8ebaa154d426f2807b89be34dc7f387edfc1de\"", "last_updated": "2023-09-11T16:16:05Z", "stargazers_count": 31, "topics": ["air-purifier", "air-quality", "air-quality-sensor", "mila"], "last_fetched": 1695554161.364402, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "332589148": {"repository_manifest": {"name": "Big Slider Card", "render_readme": true, "filename": "big-slider-card.js"}, "full_name": "nicufarmache/lovelace-big-slider-card", "category": "plugin", "description": "A card with a big slider for light entities in Home Assistant", "downloads": 1615, "etag_repository": "W/\"b184371b635630d549c3a95eba7a48b5c4b0d687c207e1fcd5d320540068baff\"", "last_updated": "2023-09-15T16:42:45Z", "stargazers_count": 28, "topics": ["big-slider", "card", "light", "lovelace-card", "lovelace-custom-card", "lovelace-slider", "slider", "slider-card"], "last_fetched": 1695553551.506692, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194971711": {"repository_manifest": {}, "full_name": "safepay/sensor.willyweather", "authors": ["@safepay"], "category": "integration", "description": "A WillyWeather Australian Bureau of Meteorology (BoM) integration for Home Assistant", "domain": "willyweather", "etag_repository": "W/\"52f59d6d54fc0f37a720b854bb9fc5aa4a56cad9e655e67fa72f79eac4da3661\"", "last_updated": "2022-08-12T23:15:46Z", "stargazers_count": 13, "last_fetched": 1695554160.331424, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "540873855": {"repository_manifest": {"name": "VPD Chart card", "render_readme": true, "filename": "vpdchart-card.js"}, "full_name": "vpdchart/vpdchart-card", "category": "plugin", "description": "A VPD chart card for Home Assistant", "etag_repository": "W/\"dcadc6601861b62c4f382ccd56331e84713823ab79969f01a98c25a43c38141e\"", "last_updated": "2023-05-16T09:22:26Z", "stargazers_count": 13, "topics": ["vpd", "vpdchart"], "last_fetched": 1695553570.105126, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454942078": {"repository_manifest": {"name": "Tenda AC23 Router Device Tracker", "render_readme": true}, "full_name": "sakowicz/home-assistant-tenda-tracker", "authors": ["@sakowicz"], "category": "integration", "description": "Track your devices via Tenda AC23 router using Home Assistant's device tracker", "domain": "tenda_tracker", "etag_repository": "W/\"441343593d825fbdd6fde4df720e6169aa6cdde46db0b4022e2d5c0a97fc5225\"", "last_updated": "2022-06-01T06:10:25Z", "stargazers_count": 4, "topics": ["device-tracker", "home", "tenda", "tenda-ac23", "tracker"], "last_fetched": 1695554160.727226, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "526408682": {"repository_manifest": {"name": "Team Tracker Card", "filename": "ha-teamtracker-card.js", "render_readme": true, "homeassistant": "0.95.4", "country": ["US"]}, "full_name": "vasqued2/ha-teamtracker-card", "category": "plugin", "description": "A Home Assistant frontend custom card that will display real-time updates for teams tracked with the ha-teamtracker integration. Has custom in-game layouts for football, baseball, basketball, hockey, soccer, golf, tennis, racing, and mma.", "etag_repository": "W/\"f5b0f756aa1fe7fd91b586421015fbbd76c5cc89ac9c34ebc63f309a3a3bdf6e\"", "last_updated": "2023-07-16T22:09:57Z", "stargazers_count": 39, "topics": ["baseball", "basketball", "football", "golf", "hockey", "mma", "racing", "scoreboard", "soccer", "sports", "teamtracker", "tennis", "volleyball"], "last_fetched": 1695553567.373651, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "595397764": {"repository_manifest": {"name": "Custom Templates", "render_readme": true, "zip_release": true, "filename": "custom_templates.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Custom-Templates", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This integration adds possibility to use new functions in Home Assistant Jinja2 templating engine.", "domain": "custom_templates", "downloads": 1088, "etag_repository": "W/\"9856573dac74869637f807ee5c73bb879027667159f1963ca26f0c1ad8defdb1\"", "last_updated": "2023-07-11T15:48:31Z", "stargazers_count": 17, "topics": ["jinja2", "jinja2-templates"], "last_fetched": 1695554143.577012, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224374747": {"repository_manifest": {"name": "Phicomm DC1", "country": "CN"}, "full_name": "5high/phicomm-dc1-homeassistant", "category": "integration", "description": "\u6590\u8bafDC1\u63d2\u6392\u63a5\u5165Home Assistant\u63d2\u4ef6\uff0c\u672c\u63d2\u4ef6\u539f\u4f5c\u8005NETYJ\uff0c\u6b64\u5904\u4ec5\u4e3aHACS\u5b89\u88c5\u65b9\u4fbf\u4e4b\u7528\u3002", "domain": "phicomm_dc1", "etag_repository": "W/\"17a424f16c02fb0fc26fadb95bad5a4b49fa70d8ca082d8d1086c9a490cb0c0c\"", "last_updated": "2021-06-04T14:08:17Z", "stargazers_count": 13, "last_fetched": 1695553571.256712, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "627734223": {"repository_manifest": {"name": "Monarch", "country": ["US"], "render_readme": true}, "full_name": "sanghviharshit/ha-monarchmoney", "authors": ["@sanghviharshit"], "category": "integration", "description": "\ud83d\udcb0\ud83d\udcb2\ud83c\udfe0\ud83d\udcb3\ud83c\udfe6 Integration for Monarch in Home Assistant", "domain": "monarchmoney", "etag_repository": "W/\"99bfa47560c7526ae969a327daaf60fc8f30910b0b0687d1bbf1429f0c557b1d\"", "last_updated": "2023-07-10T23:30:52Z", "stargazers_count": 3, "topics": ["finance", "monarch", "monarchmoney", "money"], "last_fetched": 1695554161.424696, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "424346523": {"repository_manifest": {"name": "Centrometal Boiler System", "render_readme": true, "homeassistant": "2023.8.0"}, "full_name": "9a4gl/hass-centrometal-boiler", "authors": ["@9a4gl"], "category": "integration", "description": "Home Assistant custom component integration for Centrometal Boiler System", "domain": "centrometal_boiler", "etag_repository": "W/\"dc04ae75992f4973f9eeec542f0096cdeca8d0006bb25402330590aaca3ee23f\"", "last_updated": "2023-09-11T12:33:23Z", "stargazers_count": 2, "topics": ["centrometal", "peltec"], "last_fetched": 1695553571.636982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "417400028": {"repository_manifest": {"name": "Smart thermostat (PID)", "render_readme": true, "homeassistant": "0.104.2"}, "full_name": "ScratMan/HASmartThermostat", "authors": ["@ScratMan"], "category": "integration", "description": "Smart Thermostat with PID controller for HomeAssistant", "domain": "smart_thermostat", "etag_repository": "W/\"0bbea89d81424b5c4b31ec7a4e5d854c860c35aaf9fab63d97fd0851ab091998\"", "last_updated": "2023-09-23T22:48:27Z", "stargazers_count": 242, "topics": ["air-conditioner", "heater", "heater-control", "heater-controller", "heating", "heating-control", "heating-controller", "pid-controller", "smart-thermostat", "thermostat"], "last_fetched": 1695554162.557049, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "402333014": {"repository_manifest": {"name": "openWB MQTT", "render_readme": true}, "full_name": "a529987659852/openwbmqtt", "authors": ["@a529987659852"], "category": "integration", "description": "Custom component for home assistant supporting openWB wallbox", "domain": "openwbmqtt", "etag_repository": "W/\"31d581334e7b8a90782ee3bb86183f48f770dd39c73569aaec5e1369842e2b4c\"", "last_updated": "2023-05-01T07:59:04Z", "stargazers_count": 26, "topics": ["mqtt"], "last_fetched": 1695553571.52866, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "303827752": {"repository_manifest": {"homeassistant": "2023.1.0", "name": "TryFi Dog Monitor", "render_readme": true}, "full_name": "sbabcock23/hass-tryfi", "authors": ["@sbabcock23"], "category": "integration", "description": "Home Assistant integration for TryFi Dog Collar GPS monitoring.", "domain": "tryfi", "etag_repository": "W/\"3861e844a3a611c9bd12722e96cf66773b9d0db23ef3b7a76beef63473c0bd38\"", "last_updated": "2023-04-12T22:01:49Z", "stargazers_count": 48, "topics": ["dog", "dog-collar", "gps", "iot", "tryfi"], "last_fetched": 1695554161.688479, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234514524": {"repository_manifest": {"name": "Sonos Alarm"}, "full_name": "AaronDavidSchneider/SonosAlarm", "category": "integration", "description": "HomeAssistant custom component to control your SONOS Alarm", "domain": "sonos_alarm", "etag_repository": "W/\"d6ed794ec19d329ca42d8e73d07faf1535e6fe249e0b8fcef0af9c6acd2e20ef\"", "last_updated": "2021-05-25T16:33:27Z", "stargazers_count": 22, "last_fetched": 1695553572.268017, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "585145942": {"repository_manifest": {"name": "iRTrans", "hacs": "1.6.0", "homeassistant": "0.118.0", "render_readme": true, "zip_release": true, "filename": "irtrans.zip"}, "full_name": "schwarzenbergf/irtrans", "authors": ["@schwarzenbergf"], "category": "integration", "description": "Integration for IRTrans Ethernet devices (LAN DB)", "domain": "irtrans", "downloads": 120, "etag_repository": "W/\"8ac8093920badba0fc6b6c306f0f1f6e33c878c6a3b888920ff063edaad4f2a9\"", "last_updated": "2023-09-18T01:31:56Z", "stargazers_count": 1, "topics": ["infrared-blaster", "infrared-control"], "last_fetched": 1695554161.599525, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "577620239": {"repository_manifest": {"name": "Cleanmate", "homeassistant": "2022.12.0"}, "full_name": "albinmedoc/ha-cleanmate", "authors": ["@albinmedoc"], "category": "integration", "description": "Let Home Assistant take controll over your Cleanmate vacuum", "domain": "cleanmate", "etag_repository": "W/\"7a0da805aff001f97e26fcece9d578f27b6e679270bd413a68ae5f2faa072aa4\"", "last_updated": "2023-03-06T22:56:36Z", "stargazers_count": 1, "topics": ["cleanmate", "custom-integration"], "last_fetched": 1695553574.156042, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228579545": {"repository_manifest": {"name": "Orbit BHyve", "homeassistant": "2021.12.4", "render_readme": true}, "full_name": "sebr/bhyve-home-assistant", "authors": ["@sebr"], "category": "integration", "description": "Orbit BHyve custom component for Home Assistant", "domain": "bhyve", "etag_repository": "W/\"6307d30c743bef9603c43ad49593076afdf67661b415903e4ed70de5755070ec\"", "last_updated": "2023-09-05T15:56:49Z", "stargazers_count": 218, "topics": ["bhyve", "home-assistant-component", "irrigation", "orbit", "orbit-bhyve"], "last_fetched": 1695554163.091407, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512213802": {"repository_manifest": {"homeassistant": "2022.6.0", "name": "Cecotec Conga 5290", "render_readme": true}, "full_name": "alemuro/ha-cecotec-conga", "authors": ["@alemuro"], "category": "integration", "description": "Cecotec Conga - Custom Component for Home Assistant", "domain": "cecotec_conga", "etag_repository": "W/\"01082d9cd268fb49e1e3c54a7000876df198524a447972dcce148e0445750210\"", "last_updated": "2023-07-01T09:09:09Z", "stargazers_count": 4, "topics": ["automation", "cecotec", "conga"], "last_fetched": 1695553574.349414, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "227452940": {"repository_manifest": {"name": "Wyze"}, "full_name": "SecKatie/ha-wyzeapi", "authors": ["@SecKatie"], "category": "integration", "description": "Home Assistant Integration for Wyze devices.", "domain": "wyzeapi", "etag_repository": "W/\"8be480919a0573a2e615d0c70be3b4573be6b08f793c135443ff1e98cd820975\"", "last_updated": "2023-08-22T03:43:43Z", "stargazers_count": 626, "topics": ["bulb", "switch", "wyze", "wyze-bulbs", "wyze-switchs"], "last_fetched": 1695554163.750706, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366713850": {"repository_manifest": {"name": "Pirate Weather", "render_readme": true, "homeassistant": "2022.10.0"}, "full_name": "alexander0042/pirate-weather-ha", "authors": ["@alexander0042"], "category": "integration", "description": "Replacement for the default Dark Sky Home Assistant integration using Pirate Weather ", "domain": "pirateweather", "etag_repository": "W/\"0f1aeb95d11f4c9b6193e92edcc6df9e722b4f1e8a76f225bb2d6078759582c8\"", "last_updated": "2023-07-15T01:18:55Z", "stargazers_count": 281, "topics": ["darksky-api", "weather-api"], "last_fetched": 1695553574.485308, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "530452578": {"repository_manifest": {"name": "FlashForge Adventurer 3", "render_readme": true, "homeassistant": "2022.6", "hacs": "1.26"}, "full_name": "modrzew/hass-flashforge-adventurer-3", "authors": ["@modrzew"], "category": "integration", "description": "Home Assistant integration providing support for the FlashForge Adventurer 3 3D printer.", "domain": "flashforge_adventurer_3", "etag_repository": "W/\"7a773592e32f4e0fd649ab9f83e8c61dc17ef7a07aa83e730d64ea22c09e981a\"", "last_updated": "2023-05-22T22:25:50Z", "stargazers_count": 13, "topics": ["flashforge", "flashforge-adventurer"], "last_fetched": 1695554124.287977, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "651597909": {"repository_manifest": {"name": "pfSense gateways monitoring", "render_readme": true, "homeassistant": "2023.6.0"}, "full_name": "sdrapha/home-assistant-custom-components-pfsense-gateways", "authors": ["@sdrapha"], "category": "integration", "description": "Monitor and react on your pfSense gateway's status with Home Assistant.", "domain": "pfsense_gateways", "etag_repository": "W/\"71a97a888092dfa153103cf0c47414d7fe056b1f184d0b5e3d309d94f4775afd\"", "last_updated": "2023-06-09T17:48:04Z", "stargazers_count": 1, "topics": ["hassio-integration", "pfsense"], "last_fetched": 1695554162.417692, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "374314958": {"repository_manifest": {"name": "ABB Power-One PVI SunSpec", "render_readme": true, "homeassistant": "2023.9.2"}, "full_name": "alexdelprete/ha-abb-powerone-pvi-sunspec", "authors": ["@alexdelprete"], "category": "integration", "description": "HA Custom Component to integrate data from ABB/Power-One/FIMER PV Inverters that support SunSpec Modbus (Sunspec M1, M101, M103, M160), natively or through the VSN300 wifi logger card.", "domain": "abb_powerone_pvi_sunspec", "etag_repository": "W/\"1bb83360707cc4f3b5703defd03b594a1ce7ef6c6977629d9d5e59e176c730c0\"", "last_updated": "2023-09-18T12:44:41Z", "stargazers_count": 21, "topics": ["abb", "fimer", "home-assistant-component", "inverter", "modbus", "modbus-tcp", "power-one", "sunspec"], "last_fetched": 1695553575.715601, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "478078274": {"repository_manifest": {"name": "SST Cloud integration", "homeassistant": "2021.5.0", "country": "RU"}, "full_name": "sergeylysov/sst_cloud", "authors": ["@sergeylysov"], "category": "integration", "description": "Unofficial SST Cloud integration for Home Assistant", "domain": "sst_cloud", "etag_repository": "W/\"23567d9853231b0fc09f5d7fbbf06ea3aefa7c6fafde8006f36252fad362dd83\"", "last_updated": "2023-09-07T14:38:22Z", "stargazers_count": 27, "topics": ["iot", "neptun", "sst"], "last_fetched": 1695554163.942497, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "577071460": {"repository_manifest": {"name": "pH meter", "content_in_root": true, "filename": "ph_meter.js", "render_readme": true}, "full_name": "madmicio/ph-meter-temperature", "category": "plugin", "description": "Ph meter, temperature, tds, ec cl & salinity for fish tank and swimming pool", "etag_repository": "W/\"d70cea0b51e4ef314330b088903f0fe1e770bf1255654ba9385fb325ea571c96\"", "last_updated": "2023-04-14T11:33:19Z", "stargazers_count": 10, "topics": ["ph-meter"], "last_fetched": 1695553546.233458, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222118751": {"repository_manifest": {"name": "Sonoff LAN", "render_readme": true}, "full_name": "AlexxIT/SonoffLAN", "authors": ["@AlexxIT"], "category": "integration", "description": "Control Sonoff Devices with eWeLink (original) firmware over LAN and/or Cloud from Home Assistant", "domain": "sonoff", "etag_repository": "W/\"0c4d6887473ee6c5ae03933ec9b3541789d44ed3db99814f84a29fe319adf85b\"", "last_updated": "2023-09-08T08:48:55Z", "stargazers_count": 2215, "topics": ["ewelink", "sonoff"], "last_fetched": 1695553575.847076, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220482107": {"repository_manifest": {"name": "HP Printers Integration", "homeassistant": "2021.12.0"}, "full_name": "elad-bar/ha-hpprinter", "authors": ["@elad-bar"], "category": "integration", "description": "HP Printer Integration", "domain": "hpprinter", "etag_repository": "W/\"20f596bc3bc01a950bb5461ee86144ff50b3b4006bed7f3d1ab5e278b16e2690\"", "last_updated": "2023-06-25T08:54:29Z", "stargazers_count": 74, "topics": ["hp", "hp-printer"], "last_fetched": 1695553633.97416, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356778495": {"repository_manifest": {"name": "WebRTC Camera", "render_readme": true}, "full_name": "AlexxIT/WebRTC", "authors": ["@AlexxIT"], "category": "integration", "description": "Home Assistant custom component for viewing almost any camera stream in real time using WebRTC and other technologies.", "domain": "webrtc", "etag_repository": "W/\"75b14a387e86a1853f036fcec7e83e01d85bd8f2210203d3e8e17b9fa9fa23d2\"", "last_updated": "2023-08-24T18:01:25Z", "stargazers_count": 998, "topics": ["ip-camera", "mediasource-extensions", "rtsp", "webrtc"], "last_fetched": 1695553576.098333, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "639503073": {"repository_manifest": {"name": "Atmo France", "country": "fr", "homeassistant": "2023.4.0", "render_readme": true}, "full_name": "sebcaps/atmofrance", "authors": ["@sebcaps"], "category": "integration", "description": "About Home assistant component to get air quality for french cities", "domain": "atmofrance", "etag_repository": "W/\"22026cdc14a9e9746b3bf0f82d9747ee73ecca721a1b923f487877e75909b15a\"", "last_updated": "2023-06-03T10:43:41Z", "stargazers_count": 3, "topics": ["pollution-levels"], "last_fetched": 1695554162.524725, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "268722568": {"repository_manifest": {"name": "Media player template", "homeassistant": "0.116", "render_readme": true}, "full_name": "Sennevds/media_player.template", "authors": ["@Sennevds"], "category": "integration", "description": "Template media_player for Home Assistant", "domain": "media_player_template", "etag_repository": "W/\"5c243234a239c8411b794a20d93d913bc69c17d1bd0ba195f448acf1c89f6eac\"", "last_updated": "2023-07-24T13:53:41Z", "stargazers_count": 93, "last_fetched": 1695554163.899601, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291484700": {"repository_manifest": {"name": "Xiaomi Gateway 3", "render_readme": true, "homeassistant": "2022.8.0"}, "full_name": "AlexxIT/XiaomiGateway3", "authors": ["@AlexxIT"], "category": "integration", "description": "Control Zigbee, BLE and Mesh devices from Home Assistant with Xiaomi Gateway 3 on original firmware", "domain": "xiaomi_gateway3", "etag_repository": "W/\"1fb1e20a5cacb9b7c03d4520f2a2b97cb7630789a1c1a0ac0d9cd1514f905f35\"", "last_updated": "2023-09-22T08:04:49Z", "stargazers_count": 2046, "topics": ["aqara", "ble", "mesh", "mihome", "xiaomi", "zha", "zigbee", "zigbee2mqtt"], "last_fetched": 1695553576.097272, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "509121113": {"repository_manifest": {"content_in_root": true, "homeassistant": "0.70.0", "name": "seven", "render_readme": true}, "full_name": "seven-io/home-assistant", "authors": ["@matthiez"], "category": "integration", "description": "HACS supporting Home Assistant integration for seven", "domain": "seven", "etag_repository": "W/\"fc9e725447b4fcbeb060d2eee8230a75966d70dec7232a4daabcf03f67515b7d\"", "last_updated": "2023-08-04T04:34:47Z", "stargazers_count": 1, "topics": ["hassio-integration", "home-assistant-integration", "sms", "tts"], "last_fetched": 1695554164.45649, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236572107": {"repository_manifest": {"name": "Yandex.Station", "render_readme": true, "country": "RU"}, "full_name": "AlexxIT/YandexStation", "authors": ["@AlexxIT"], "category": "integration", "description": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u042f\u043d\u0434\u0435\u043a\u0441.\u0421\u0442\u0430\u043d\u0446\u0438\u0435\u0439 \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0430\u043c\u0438 \u0441 \u0410\u043b\u0438\u0441\u043e\u0439 \u0438\u0437 Home Assistant", "domain": "yandex_station", "etag_repository": "W/\"397e463c0106164f3ed1ddd5d7710edfbc9bc5352b4c48ebdf4af88b0cc4e92c\"", "last_updated": "2023-09-23T09:09:38Z", "stargazers_count": 1006, "topics": ["tts", "yandex-station"], "last_fetched": 1695553576.539432, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "570006201": {"repository_manifest": {"name": "Victron GX modbus TCP", "render_readme": true, "homeassistant": "2023.9.1", "hacs": "1.28.4"}, "full_name": "sfstar/hass-victron", "authors": ["@sfstar"], "category": "integration", "description": "Integration for Home Assistant to fetch data from the victron gx device via modbusTCP", "domain": "victron", "etag_repository": "W/\"99bc5c6555a2517d530ba10a35143746deea672d424eb85471eafd11936d4204\"", "last_updated": "2023-09-09T19:23:26Z", "stargazers_count": 96, "topics": ["energy", "modbus-tcp", "victron", "victronenergy"], "last_fetched": 1695554164.688577, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "272432260": {"repository_manifest": {"name": "Floureon Thermostat", "homeassistant": "0.110.0", "render_readme": true}, "full_name": "algirdasc/hass-floureon", "authors": ["@algirdasc"], "category": "integration", "description": "Floureon (Broadlink based) thermostat integration for Home Assistant", "domain": "floureon", "etag_repository": "W/\"137ee2640de36a3b4ceb24a7e6493379af6bb2fe978e20ec35ad6590e160256f\"", "last_updated": "2023-06-22T10:57:56Z", "stargazers_count": 27, "topics": ["broadlink", "floureon", "thermostat"], "last_fetched": 1695553576.213075, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "248046910": {"repository_manifest": {"name": "SamsungTV Encrypted", "homeassistant": "2022.3.1"}, "full_name": "sermayoral/ha-samsungtv-encrypted", "authors": ["@sermayoral"], "category": "integration", "description": "Samsung TV Encrypted Models (H & J Series) custom component for Home Assistant", "domain": "samsungtv_encrypted", "etag_repository": "W/\"c8d83e95e8260d6d1f618178082e98033e566d19a48e0ee02ed019e24098211a\"", "last_updated": "2022-03-15T01:36:17Z", "stargazers_count": 34, "topics": ["iot", "samsungtv"], "last_fetched": 1695554163.994773, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "204049047": {"repository_manifest": {"name": "OpenMensa Lovelace Card", "content_in_root": true}, "full_name": "Mofeywalker/openmensa-lovelace-card", "category": "plugin", "description": "A Home-Assistant Lovelace card which displays information from the openmensa-sensor.", "etag_repository": "W/\"45f13e98ccc23f87df93585f1a05afd343546c6663fc31b6cd547254da6f7d8d\"", "last_updated": "2023-06-14T10:31:04Z", "stargazers_count": 2, "last_fetched": 1695553549.834675, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "392188182": {"repository_manifest": {"name": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043a\u0430\u0431\u0438\u043d\u0435\u0442 \u042d\u043d\u0435\u0440\u0433\u043e\u0441\u0431\u044b\u0422 \u041f\u043b\u044e\u0441", "render_readme": true, "country": "ru", "homeassistant": "2021.2.0"}, "full_name": "alryaz/hass-energosbyt-plus", "authors": ["@alryaz"], "category": "integration", "description": "\u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u042d\u043d\u0435\u0440\u0433\u043e\u0441\u0431\u044b\u0422.\u041f\u043b\u044e\u0441 \u0434\u043b\u044f Home Assistant", "domain": "energosbyt_plus", "etag_repository": "W/\"f8c980d63c9dc83e406841bdacdf32bb29505c1c0f3c3cd3477413e35bb07e1c\"", "last_updated": "2023-07-08T12:41:56Z", "stargazers_count": 10, "topics": ["energosbyt", "energosbyt-plus"], "last_fetched": 1695553576.284884, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "531349329": {"repository_manifest": {"name": "MyDolphin Plus", "homeassistant": "2021.12.0"}, "full_name": "sh00t2kill/dolphin-robot", "authors": ["@sh00t2kill", "@lordlala", "@elad-bar"], "category": "integration", "description": "A custom Home Assistant Component for WiFI enabled Maytronics Dolphin pool cleaner robots", "domain": "mydolphin_plus", "etag_repository": "W/\"47c9200030fe65d2ce856f5e44adeb2d3db7072986de4ba111682e2bdef24443\"", "last_updated": "2023-08-31T06:04:08Z", "stargazers_count": 25, "topics": ["dolphin", "maytronics", "robot"], "last_fetched": 1695554164.843973, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215825339": {"repository_manifest": {"name": "Hekr Component", "filename": false, "country": false, "homeassistant": "2022.3.0", "persistent_directory": false}, "full_name": "alryaz/hass-hekr-component", "authors": ["@alryaz"], "category": "integration", "description": "Hekr integration using python-hekr", "domain": "hekr", "etag_repository": "W/\"4bff7aeffa652a8f884053f89221ea88894bf6cb5175b7123d4b105a085b52a3\"", "last_updated": "2023-09-11T00:00:57Z", "stargazers_count": 33, "topics": ["consumption", "hekr", "wisen-application"], "last_fetched": 1695553576.435167, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "525588589": {"repository_manifest": {"name": "Aquarea Smart Cloud", "render_readme": true}, "full_name": "cjaliaga/home-assistant-aquarea", "authors": ["@cjaliaga"], "category": "integration", "description": "Home Assistant integration for Panasonic Aquarea devices connected to Aquarea Smart Cloud", "domain": "aquarea", "etag_repository": "W/\"18792d11d685b4ab83cd8018a545855db309986793dc59ec8b6bef46c57fc882\"", "last_updated": "2023-02-14T13:18:21Z", "stargazers_count": 38, "topics": ["aquarea", "panasonic", "panasonic-comfort-cloud", "panasonic-smart-cloud"], "last_fetched": 1695553602.547473, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "596993645": {"repository_manifest": {"name": "Personio", "render_readme": true}, "full_name": "Sese-Schneider/ha-personio", "authors": ["@Sese-Schneider"], "category": "integration", "description": "Integration with the Personio API for Home Assistant.", "domain": "personio", "etag_repository": "W/\"cfea3976a7b0cf4d7f297feb9f7a948c3ae1eb33ec7d73048355f012b11ea8b9\"", "last_updated": "2023-07-31T09:19:53Z", "stargazers_count": 4, "topics": ["hacs-custom", "personio", "personio-api"], "last_fetched": 1695554164.23537, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "377060365": {"repository_manifest": {"name": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043a\u0430\u0431\u0438\u043d\u0435\u0442 \u0418\u043d\u0442\u0435\u0440 \u0420\u0410\u041e (\u042d\u043d\u0435\u0440\u0433\u043e\u0441\u0431\u044b\u0442)", "render_readme": true, "country": "ru", "homeassistant": "2021.12.0"}, "full_name": "alryaz/hass-lkcomu-interrao", "authors": ["@alryaz"], "category": "integration", "description": "\u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f Home Assistant \u0441 \u041b\u041a \"\u0418\u043d\u0442\u0435\u0440 \u0420\u0410\u041e\"", "domain": "lkcomu_interrao", "etag_repository": "W/\"83aeb6561f93a7d1ad06bb7f81e83ac391214c3a024e43fc3c07d714cbdfaafc\"", "last_updated": "2022-05-17T20:58:09Z", "stargazers_count": 31, "topics": ["altaienergosbyt", "bashelektrosbyt", "energosbyt", "esbvolga", "mosenergosbyt", "sevesk", "tambovenergosbyt", "tomskenergosbyt"], "last_fetched": 1695553576.626255, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "565137157": {"repository_manifest": {"name": "eDIN+ integration for Home Assistant", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2023.2"}, "full_name": "sftgunner/edinplus-integration", "authors": ["@sftgunner"], "category": "integration", "description": "eDIN+ Home Assistant Integration", "domain": "edinplus", "etag_repository": "W/\"8021c0b9bbe84149739c04444269a4dfebef9c85e65d3db5e53dcef14a77e4c2\"", "last_updated": "2023-08-23T15:37:43Z", "stargazers_count": 5, "topics": ["edin-plus", "home-assistant-custom-component", "home-assistant-integration", "mode-lighting"], "last_fetched": 1695554165.760945, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "355159299": {"repository_manifest": {"name": "Moscow PGU (\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 \u041c\u043e\u0441\u043a\u0432\u044b)", "render_readme": true, "country": "ru", "homeassistant": "2021.2.0"}, "full_name": "alryaz/hass-moscow-pgu", "authors": ["@alryaz"], "category": "integration", "description": "Moscow PGU services for HomeAssistant", "domain": "moscow_pgu", "etag_repository": "W/\"82b803b9ac248e15ef062774b5984e7813f451d3b471f7f74ec29826a5b66104\"", "last_updated": "2021-11-10T06:44:41Z", "stargazers_count": 14, "topics": ["gosuslugi"], "last_fetched": 1695553576.770992, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362513331": {"repository_manifest": {"name": "Technicolor", "render_readme": true}, "full_name": "shaiu/technicolor", "authors": ["@shaiu"], "category": "integration", "description": "This is an integration for HomeAssistant. It's a Device Tracker component for the Technicolor Gateway.", "domain": "technicolor", "etag_repository": "W/\"4228405f47fcb5ca73860b6db05de27a4d9a0ac7a55ba6df0a580a3715b25ba9\"", "last_updated": "2023-05-28T09:30:46Z", "stargazers_count": 5, "last_fetched": 1695554166.048366, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292720530": {"repository_manifest": {"name": "Pandora Car Alarm System", "render_readme": true, "homeassistant": "2023.9.0", "country": ["BY", "IT", "KZ", "RU", "UA"]}, "full_name": "alryaz/hass-pandora-cas", "authors": ["@alryaz"], "category": "integration", "description": "\ud83d\ude97 Home Assistant component for Pandora Car Alarm System / \u0410\u0432\u0442\u043e\u0441\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u0438 \u0442\u0435\u043b\u0435\u043c\u0435\u0442\u0440\u0438\u044f Pandora", "domain": "pandora_cas", "downloads": 1, "etag_repository": "W/\"20d50b94f4cd447df77854ed7e6167a35589f1ef24023890bcff6cce6400bef3\"", "last_updated": "2023-09-14T06:08:32Z", "stargazers_count": 25, "topics": ["car-system", "pandora-alarm", "vehicle-tracking"], "last_fetched": 1695553578.216854, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "573233876": {"repository_manifest": {"name": "Switch Manager", "render_readme": true, "homeassistant": "2022.11.4"}, "full_name": "Sian-Lee-SA/Home-Assistant-Switch-Manager", "authors": ["@Sian-Lee-SA"], "category": "integration", "description": "Switch manager is a centralised component to handle button pushes for your wireless switches. This includes anything passed through the event bus. The component relies on switch blueprints which is easily made to allow GUI configuration of your switches and their button pushes. This helps remove clutter from the automations.", "domain": "switch_manager", "etag_repository": "W/\"610c4a7d586a9d5e76c5c6c693d3ce2352c6f8f65d6a087cc73a5827d550523b\"", "last_updated": "2023-09-16T14:07:04Z", "stargazers_count": 118, "topics": ["component", "script", "switch-manager"], "last_fetched": 1695554166.934427, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "407205510": {"repository_manifest": {"name": "\u041f\u0418\u041a \u0414\u043e\u043c\u043e\u0444\u043e\u043d / PIK Intercom", "render_readme": true, "country": "RU", "homeassistant": "2023.6.0"}, "full_name": "alryaz/hass-pik-intercom", "authors": ["@alryaz"], "category": "integration", "description": "\u041f\u0418\u041a \u0414\u043e\u043c\u043e\u0444\u043e\u043d \u0434\u043b\u044f Home Assistant", "domain": "pik_intercom", "downloads": 3, "etag_repository": "W/\"7213c188be94ae5794d9546ff9cb4d69cb9d5501aacb4cba42a84f0246d7e027\"", "last_updated": "2023-09-12T07:14:48Z", "stargazers_count": 40, "topics": ["intercom", "pik-group"], "last_fetched": 1695553578.114018, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "272094506": {"repository_manifest": {"name": "Blitzortung.org Lightning Detector", "homeassistant": "2022.10.0"}, "full_name": "mrk-its/homeassistant-blitzortung", "authors": ["@mrk-its"], "category": "integration", "description": "Custom Component for fetching lightning data from blitzortung.org", "domain": "blitzortung", "etag_repository": "W/\"e497fb56320366da7b72a1895f454c730c69d55731fec0bf178ef0a978aa2e4e\"", "last_updated": "2023-07-13T14:39:40Z", "stargazers_count": 133, "topics": ["blitzortung", "lightning-network"], "last_fetched": 1695554126.121469, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "531891521": {"repository_manifest": {"name": "Revogi Petoneer Water Fountain", "render_readme": true}, "full_name": "sh00t2kill/petoneer_custom_component", "authors": ["@sh00t2kill"], "category": "integration", "description": "A custom Home Assistant Component for WiFI enabled pet water fountains by petoneer", "domain": "revogi", "etag_repository": "W/\"348f72c28eaa2692260676497995091448f989ef435f2265bc2ca27d2be403cf\"", "last_updated": "2023-07-25T02:15:59Z", "topics": ["petoneer", "revogi"], "last_fetched": 1695554165.282949, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "378010382": {"repository_manifest": {"name": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043a\u0430\u0431\u0438\u043d\u0435\u0442 \u0422\u041d\u0421 \u042d\u043d\u0435\u0440\u0433\u043e", "render_readme": true, "country": "ru", "homeassistant": "2022.3.0"}, "full_name": "alryaz/hass-tns-energo", "authors": ["@alryaz"], "category": "integration", "description": "TNS Energo Integration", "domain": "tns_energo", "etag_repository": "W/\"e1bb217464c0776ce73d6b50dfc88ec21f89f33140bd6254cb4a159a9d57e961\"", "last_updated": "2023-06-19T07:51:16Z", "stargazers_count": 11, "topics": ["moscow", "tns-energo"], "last_fetched": 1695553578.277729, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "354515979": {"repository_manifest": {"name": "Philips Ambilight+Hue Switch", "render_readme": true}, "full_name": "Mr-Groch/ambihue", "authors": ["@jomwells", "@Mr-Groch"], "category": "integration", "description": "ON/OFF Abilight+Hue (Switch) component for Philips Ambilight TV's", "domain": "philips_ambilight_hue", "etag_repository": "W/\"e360dbb559dd61616964b851dd6bb5ac3a3a0352fe83347bdadaceb1dc7ee82c\"", "last_updated": "2023-03-12T21:32:05Z", "stargazers_count": 11, "topics": ["ambilight", "philips-hue"], "last_fetched": 1695554125.73465, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "351604227": {"repository_manifest": {"name": "Brandrisk ute", "render_readme": true, "country": "se"}, "full_name": "Sha-Darim/brandriskute", "authors": ["@Sha-Darim"], "category": "integration", "description": "The custom compontnet will get fire risks and fire prohibition from the Brandrisk Ute API for the supplied position.", "domain": "brandriskute", "etag_repository": "W/\"72850c8a419e461b1544413c56313358e1e8e19cc4d07def353d510b66159336\"", "last_updated": "2022-06-05T20:43:41Z", "stargazers_count": 4, "topics": ["fire-risks", "risks", "sensors"], "last_fetched": 1695554165.837357, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "275672933": {"repository_manifest": {"name": "Select list Card", "render_readme": true, "filename": "select-list-card.js"}, "full_name": "mattieha/select-list-card", "category": "plugin", "description": "Select List Card displays an input_select entity as a list in lovelace", "downloads": 9705, "etag_repository": "W/\"b6a82d59a850848100a502b5926cb78d6cc47609921694e6f67e1f232a09c0a4\"", "last_updated": "2023-01-12T03:12:53Z", "stargazers_count": 56, "topics": ["lovelace-custom-card"], "last_fetched": 1695553548.99113, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "642225418": {"repository_manifest": {"name": "Turkov Ventilation Systems", "country": ["RU", "BY"], "homeassistant": "2023.5.0", "render_readme": true}, "full_name": "alryaz/hass-turkov", "authors": ["@alryaz"], "category": "integration", "description": "Turkov integration for Home Assistant", "domain": "turkov", "etag_repository": "W/\"0473890dadde3f032d272b9bf5028d17a97d1c32c1b8d2a19d5c44e60e209b2a\"", "last_updated": "2023-09-18T16:23:38Z", "stargazers_count": 1, "topics": ["hvac-control", "turkov", "ventilation"], "last_fetched": 1695553578.457899, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "552555459": {"repository_manifest": {"name": "LG Horizon", "country": ["NL", "BE", "CH", "GB", "AT"], "render_readme": true, "homeassistant": "2021.5.0"}, "full_name": "Sholofly/lghorizon", "authors": ["@Sholofly"], "category": "integration", "description": "Custom integration to control LG Horizon settop boxes for Ziggo(NL), Magenta(AT), UPC(CH), Virgin(GB, IE), Telenet(BE)", "domain": "lghorizon", "etag_repository": "W/\"8cda145bb8a5f27d390eeaed3d36fdb119f9f7bd09a687d6f7c915befd360d87\"", "last_updated": "2023-09-04T18:43:31Z", "stargazers_count": 40, "topics": ["arris", "humax", "lg-horizon", "magenta", "sunrise", "telenet", "virgin", "ziggo"], "last_fetched": 1695554166.63901, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "395991055": {"repository_manifest": {"name": "Anniversary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/anniversary", "authors": ["@amaximus"], "category": "integration", "description": "Anniversary integration for Home Assistant", "domain": "anniversary", "downloads": 7, "etag_repository": "W/\"fd0519356bff217fee0a1c49a84a69e2cc9b4c0b259aded0fad5f9f4014945df\"", "last_updated": "2023-06-08T08:20:08Z", "stargazers_count": 12, "last_fetched": 1695553578.420124, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "555675718": {"repository_manifest": {"name": "Mastertherm", "hacs": "1.32.1", "homeassistant": "2023.6.1", "country": "GB", "hide_default_branch": true}, "full_name": "sHedC/homeassistant-mastertherm", "authors": ["@shedc"], "category": "integration", "description": "Home Assistant Mastertherm Component, to communicate and control heat pumps from Mastertherm", "domain": "mastertherm", "etag_repository": "W/\"2e4bc859d6e77ee3b97688568252984995bf58f54824286fdbfb92cbb5b38a7c\"", "last_updated": "2023-09-18T14:17:04Z", "stargazers_count": 3, "topics": ["heatpump", "mastertherm", "python3"], "last_fetched": 1695554166.393481, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "125756318": {"repository_manifest": {"name": "BKK Stop Information", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/bkk_stop", "authors": ["@amaximus"], "category": "integration", "description": "HomeAssistant custom component for Budapest public transportation", "domain": "bkk_stop", "downloads": 5, "etag_repository": "W/\"bf6c7e954f7cd0298dd71e615156b1ed91006cd833a27d63bbcfb4cc89ae021d\"", "last_updated": "2023-07-10T12:04:48Z", "stargazers_count": 20, "topics": ["bkk", "budapest", "transportation"], "last_fetched": 1695553578.605882, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220678749": {"repository_manifest": {"name": "cfr sensor", "country": ["IT"], "homeassistant": "2021.12.0"}, "full_name": "shogunxam/Home-Assistant-custom-components-cfr-toscana", "authors": ["@shogunxam"], "category": "integration", "description": "HA Integration for Centro Funzionale Regione Toscana", "domain": "cfr", "etag_repository": "W/\"611ac81e48a72e8f45de0e43b7ba6f561aaaacbca9dbcb765119fd64e54141ce\"", "last_updated": "2023-03-03T09:27:23Z", "stargazers_count": 3, "last_fetched": 1695554166.164046, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "462430932": {"repository_manifest": {"name": "Fire Protection Hungary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/fire_protection_hu", "authors": ["@amaximus"], "category": "integration", "description": "Fire protection integration for Home Assistant with data provided by N\u00c9BIH", "domain": "fire_protection_hu", "downloads": 5, "etag_repository": "W/\"bc7af671c8298b5438c40a8e75ae3dcf584181fe6da95cca6ff0a2e1143c03f7\"", "last_updated": "2023-06-08T08:44:24Z", "stargazers_count": 2, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1695553578.649864, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "290193894": {"repository_manifest": {"name": "Rollease Acmeda Automate Pulse Hub v2", "render_readme": true}, "full_name": "sillyfrog/Automate-Pulse-v2", "authors": ["@sillyfrog"], "category": "integration", "description": "Rollease Acmeda Automate Pulse Hub v2 integration for Home Assistant", "domain": "automate", "etag_repository": "W/\"e8041a5cb263651458413e051915626c8bb0bffb4eacda8610dca75a5dcac96d\"", "last_updated": "2023-02-10T20:57:35Z", "stargazers_count": 28, "last_fetched": 1695554167.076793, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257104502": {"repository_manifest": {"name": "FKF Budapest Garbage Collection", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/fkf-garbage-collection", "authors": ["@amaximus"], "category": "integration", "description": "FKF Budapest Garbage Collection custom component for Home Assistant", "domain": "fkf_garbage_collection", "downloads": 5, "etag_repository": "W/\"db2f4da8444957406ef3ec1613b878798bbc9980a5ee3212ceb222c1b9b7d45f\"", "last_updated": "2023-07-10T11:12:08Z", "stargazers_count": 20, "topics": ["budapest"], "last_fetched": 1695553578.945764, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "600885053": {"repository_manifest": {"name": "MyVaillant", "render_readme": true}, "full_name": "signalkraft/mypyllant-component", "authors": ["@signalkraft"], "category": "integration", "description": "Home Assistant component that interfacts with the myVAILLANT API, to control Vaillant devices such as aroTHERM heatpumps and ecoTEC boilers.", "domain": "mypyllant", "etag_repository": "W/\"c19f4d04f89d91467c027c6cf48eb08646a3d6623addb30f3caa6c9b12969306\"", "last_updated": "2023-09-17T15:08:15Z", "stargazers_count": 37, "topics": ["home-assistant-component", "vaillant"], "last_fetched": 1695554167.024742, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "372058588": {"repository_manifest": {"name": "MET Alerts Hungary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/met_alerts_hu", "authors": ["@amaximus"], "category": "integration", "description": "Meteo alerts for Hungary", "domain": "met_alerts_hu", "downloads": 5, "etag_repository": "W/\"bc12ddabdeb195fd94a46a1dd318d5d83ae3bf6d886d1f74010ff2fb1504b7b8\"", "last_updated": "2023-06-25T12:21:34Z", "stargazers_count": 12, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1695553578.830464, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "311594993": {"repository_manifest": {"name": "Presence Simulation", "render_readme": true, "homeassistant": "2023.4.0"}, "full_name": "slashback100/presence_simulation", "authors": ["@slashback100"], "category": "integration", "description": "Home Assistant Presence Simulation", "domain": "presence_simulation", "etag_repository": "W/\"7e4bd8f1312d4f0842446aebb0f51bb82a8ae3f93df7da4427f459bab4b37d95\"", "last_updated": "2023-09-01T07:38:04Z", "stargazers_count": 292, "topics": ["historic", "presence", "presence-simulation", "simulation"], "last_fetched": 1695554168.378642, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "342026799": {"repository_manifest": {"name": "Pollen Information Hungary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/pollen_hu", "authors": ["@amaximus"], "category": "integration", "description": "Home Assistant custom component for Pollen Information in Hungary", "domain": "pollen_hu", "downloads": 4, "etag_repository": "W/\"a8ead7cb1847009c460fdd8eb49d5f752ccd456c2080ac376a6663da08c04595\"", "last_updated": "2023-09-05T11:47:47Z", "stargazers_count": 9, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1695553578.956643, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "632007442": {"repository_manifest": {"name": "Home Assisant Eetlijst", "country": ["NL"], "render_readme": true}, "full_name": "Slalamander/Home-Assistant-Eetlijst", "authors": ["@Slalamander"], "category": "integration", "description": "A custom integration to get your Eetlijst info into Home Assistant", "domain": "eetlijst", "etag_repository": "W/\"2d09651ece84aec427b0c4def67c385366c4fa86e6940fbf3fc603973aec2f61\"", "last_updated": "2023-09-05T18:08:55Z", "stargazers_count": 1, "topics": ["eetlijst"], "last_fetched": 1695554168.008414, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "198066338": {"repository_manifest": {"name": "Rejseplanen Card", "country": "DK"}, "full_name": "DarkFox/rejseplanen-card", "category": "plugin", "description": "Lovelace card for listing departures from Rejseplanen sensors", "etag_repository": "W/\"25aec0ca1894d30bc740877e04187e1250a3f4e9f8aa1856f2e4cdd850be2914\"", "last_updated": "2023-01-04T06:49:56Z", "stargazers_count": 5, "topics": ["denmark", "lovelace-card", "rejseplanen", "rejseplanen-card", "rejseplanen-sensors"], "last_fetched": 1695553522.493627, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "468093553": {"repository_manifest": {"name": "Radioactivity Hungary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/radioactivity_hu", "authors": ["@amaximus"], "category": "integration", "description": "Radioactivity data for Hungary", "domain": "radioactivity_hu", "downloads": 5, "etag_repository": "W/\"3787d0abf8de2e9c0ae4133eb5780bca40ae2aa787ea3d823fb0f8d33c509e89\"", "last_updated": "2023-06-08T08:48:13Z", "stargazers_count": 5, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1695553580.51585, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "511504216": {"repository_manifest": {"name": "Scinan Saswell Thermostat", "render_readme": true}, "full_name": "Skarbo/hass-scinan-thermostat", "authors": ["@skarbo"], "category": "integration", "description": "Home Assistant integration for Scinan Thermostats", "domain": "scinan_thermostat", "etag_repository": "W/\"9158cf930bb3203e5eb8fbce03051273d2d2565904d0475d9ae1f5bdf128e174\"", "last_updated": "2023-08-20T22:06:43Z", "stargazers_count": 4, "topics": ["saswell", "scinan", "thermostat"], "last_fetched": 1695554167.392478, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "420504770": {"repository_manifest": {"name": "Water Quality FVM", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/water_quality_fvm", "authors": ["@amaximus"], "category": "integration", "description": "Water quality integration for Home Assistant with data provided by Budapest FVM", "domain": "water_quality_fvm", "downloads": 5, "etag_repository": "W/\"4c502788110ffa30793d0c99f46b472e17d98db3f356d61af1094acbde23ff25\"", "last_updated": "2023-06-08T08:51:14Z", "stargazers_count": 3, "topics": ["budapest", "homeassistant-custom-component", "hungary"], "last_fetched": 1695553580.325342, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "312896602": {"repository_manifest": {"name": "Skoda Connect", "homeassistant": "2023.3.0", "hide_default_branch": true, "filename": "skodaconnect.zip"}, "full_name": "skodaconnect/homeassistant-skodaconnect", "authors": ["@lendy007", "@Farfar", "@WebSpider"], "category": "integration", "description": "Skoda Connect - A home assistant plugin to add integration with your car", "domain": "skodaconnect", "etag_repository": "W/\"48ea1ac0a7fffe176b1b726379111320b8a9d3012684e5b638925430fadc14d3\"", "last_updated": "2023-09-21T09:05:58Z", "stargazers_count": 164, "topics": ["skoda-connect"], "last_fetched": 1695554168.228124, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "523291160": {"repository_manifest": {"name": "Daily Schedule", "filename": "daily_schedule.zip", "hide_default_branch": true, "render_readme": true, "zip_release": true}, "full_name": "amitfin/daily_schedule", "authors": ["@amitfin"], "category": "integration", "description": "Home Assistant Daily Schedule Custom Component", "domain": "daily_schedule", "downloads": 1642, "etag_repository": "W/\"527330c9feabe8d3f5f5ea3c0b67de54f28602b9cd7f4d08f41ab7936f0f43a3\"", "last_updated": "2023-09-18T05:49:19Z", "stargazers_count": 12, "topics": ["homeassistant-custom-component"], "last_fetched": 1695553580.48198, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "267433712": {"repository_manifest": {"name": "PRE Distribuce CZ", "country": "CZ", "homeassistant": "2022.5.6"}, "full_name": "slesinger/HomeAssistant-PREdistribuce", "authors": ["@slesinger"], "category": "integration", "description": "Home Assistant integration to display info about energy plan", "domain": "predistribuce", "etag_repository": "W/\"88891cff17e0d20f66de85621192a39960a10cede8779f6eb1bc58efa5b4387a\"", "last_updated": "2023-05-13T15:18:37Z", "stargazers_count": 8, "topics": ["energy", "power"], "last_fetched": 1695554168.474327, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "612717689": {"repository_manifest": {"name": "Retry", "filename": "retry.zip", "hide_default_branch": true, "homeassistant": "2023.8.0", "render_readme": true, "zip_release": true}, "full_name": "amitfin/retry", "authors": ["@amitfin"], "category": "integration", "description": "Home Assistant Integration with Retry Service", "domain": "retry", "downloads": 499, "etag_repository": "W/\"49ca56e83c0fb3c824db025dcb3c0cbcfc9e6a67845a148965655ebe9d71b866\"", "last_updated": "2023-09-18T05:49:00Z", "stargazers_count": 17, "topics": ["homeassistant-custom-component"], "last_fetched": 1695553580.656011, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209955487": {"repository_manifest": {"name": "BMR", "render_readme": true, "country": "CZ", "homeassistant": "0.110.0"}, "full_name": "slesinger/HomeAssistant-BMR", "authors": ["@slesinger"], "category": "integration", "description": "Control BMR heating regulation system from Home Assistant", "domain": "bmr_hc64", "etag_repository": "W/\"58aca03c4b4c78223c84406768647dc379a4fbf532265351fb40d0758a41c940\"", "last_updated": "2021-05-25T19:26:44Z", "stargazers_count": 3, "last_fetched": 1695554168.211203, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "527414830": {"repository_manifest": {"name": "Eight Sleep Climate", "hacs": "1.0.0", "homeassistant": "0.118.0", "render_readme": true}, "full_name": "amosyuen/ha-eight-sleep-climate", "authors": ["@amosyuen"], "category": "integration", "description": "Climate entity for controlling eight sleep bed", "domain": "eight_sleep_climate", "etag_repository": "W/\"a8cf93fe519e40278c985389d34a4658ea9d8df7affdf2b256b5cc14466440b0\"", "last_updated": "2023-09-18T17:40:57Z", "stargazers_count": 3, "topics": ["eight-sleep", "thermostat"], "last_fetched": 1695553580.548794, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "556352757": {"repository_manifest": {"name": "Geo Home Smart Meter Integration", "render_readme": true}, "full_name": "mmillmor/geo_home", "authors": ["@mmillmor"], "category": "integration", "description": "Geo Home smart meter integration for Home Assistant", "domain": "geo_home", "etag_repository": "W/\"0fddd9e6398eaea408075d19ceb02f5a50801215ab7dbe9b7af25c4b165201de\"", "last_updated": "2023-08-05T18:53:33Z", "stargazers_count": 13, "topics": ["home-assistant-integration", "smart-meter"], "last_fetched": 1695554123.916133, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199718799": {"repository_manifest": {"name": "Escea Fires"}, "full_name": "snikch/climate.escea", "authors": ["@snikch"], "category": "integration", "description": "\ud83c\udfe1Home Assistant Custom Component for Escea Fires \ud83d\udd25", "domain": "escea", "etag_repository": "W/\"dbdb149d880c7b1ed3b6029d4438bdf496ceb4c260344a99ce0d8aebd6d27770\"", "last_updated": "2022-05-29T11:37:06Z", "stargazers_count": 9, "topics": ["climate", "fireplace"], "last_fetched": 1695554169.175606, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "548811638": {"repository_manifest": {"name": "Epson Projector Link", "hacs": "1.6.0", "homeassistant": "2023.4.0", "render_readme": true}, "full_name": "amosyuen/ha-epson-projector-link", "authors": ["@amosyuen"], "category": "integration", "description": "Home Assistant Epson Projector Link", "domain": "epson_projector_link", "etag_repository": "W/\"a46bd3bc3469f683780b7cac1037e4651c1806ad603fe3529028d22713e78bc6\"", "last_updated": "2023-09-18T15:11:33Z", "stargazers_count": 5, "topics": ["epson-projector"], "last_fetched": 1695553580.746621, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203244705": {"repository_manifest": {"name": "OpenMensa Sensor"}, "full_name": "Mofeywalker/openmensa-hass-component", "category": "integration", "description": "A platform sensor which tells you which meals are served in your canteen.", "domain": "openmensa", "etag_repository": "W/\"0373a349c59653dee2076df2d70ed8b446dcd265d6b3011e91909cafd7aead58\"", "last_updated": "2021-09-04T08:04:28Z", "stargazers_count": 3, "last_fetched": 1695554123.998627, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "210966517": {"repository_manifest": {"name": "Zwift Sensors", "homeassistant": "2023.4"}, "full_name": "snicker/zwift_hass", "authors": ["@snicker"], "category": "integration", "description": "Zwift Sensor Integration for HomeAssistant", "domain": "zwift", "etag_repository": "W/\"89650f613c0acb4caf80a6714857d1fa7383f53ca1a48f36f6d40e1dfd154c98\"", "last_updated": "2023-09-17T15:01:07Z", "stargazers_count": 33, "last_fetched": 1695554169.25595, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "590806135": {"repository_manifest": {"name": "Home Assistant Registry", "hacs": "1.6.0", "homeassistant": "2023.1.0", "render_readme": true}, "full_name": "amosyuen/ha-registry", "authors": ["@amosyuen"], "category": "integration", "description": "Adds services for home assistant registry operations", "domain": "ha_registry", "etag_repository": "W/\"524dc9c10378afaaf0f6041dfa6a4342344f6cbb900082aa1a8d7234c55b8be1\"", "last_updated": "2023-09-18T15:23:11Z", "stargazers_count": 8, "topics": ["homeassistant-custom-component"], "last_fetched": 1695553580.752849, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "178101579": {"repository_manifest": {}, "full_name": "custom-components/sensor.airthings_wave", "authors": ["@MartyTremblay", "@sverrham"], "category": "integration", "description": "hassio support for Airthings Wave BLE environmental radon sensor.", "domain": "airthings_wave", "etag_repository": "W/\"730770bce562dbfa4efa3fc8c9eee43f6e41a30939137521e89820d9c309f64a\"", "last_updated": "2023-07-14T22:00:07Z", "stargazers_count": 98, "topics": ["airthings-wave", "bluetooth-low-energy", "btle", "environmental", "radon"], "last_fetched": 1695553609.468694, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291317330": {"repository_manifest": {"name": "Electric Vehicle Charge Control", "country": "SK", "homeassistant": "2022.12.0"}, "full_name": "mletenay/home-assistant-ev-charge-control", "authors": ["@mletenay"], "category": "integration", "description": "Home Assistant custom component for Electric Vehicle Charge Control devices by Phoenix Contact ", "domain": "phoenix_contact", "etag_repository": "W/\"dceca815e0535c7f8af33ce749ed412e83254df9d63ea2ba2f16a793ec03cc27\"", "last_updated": "2023-01-25T21:40:24Z", "stargazers_count": 1, "topics": ["charging-stations", "electric-vehicles", "evse"], "last_fetched": 1695554123.659697, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442001863": {"repository_manifest": {"name": "TP-Link Deco", "hacs": "1.6.0", "homeassistant": "2023.6.0", "render_readme": true}, "full_name": "amosyuen/ha-tplink-deco", "authors": ["@amosyuen"], "category": "integration", "description": "Home Assistant TP-Link Deco Custom Component", "domain": "tplink_deco", "etag_repository": "W/\"4485b4c6f7f064bf23622fef54cecc23f264d8724c10574a681333dfe28aae21\"", "last_updated": "2023-09-18T11:34:59Z", "stargazers_count": 115, "topics": ["router", "tp-link"], "last_fetched": 1695553581.214105, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246417951": {"repository_manifest": {"name": "Whatpulse Sensor", "render_readme": true}, "full_name": "SLG/home-assistant-whatpulse", "authors": ["@SLG"], "category": "integration", "description": "This component retrieves the statistics from Whatpulse", "domain": "whatpulse", "etag_repository": "W/\"17c1e21bc626522b8169679756a052a3afa2a20c10ef48c09a0480b75daa3535\"", "last_updated": "2021-06-03T17:59:28Z", "stargazers_count": 1, "topics": ["whatpulse"], "last_fetched": 1695554168.691038, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199332790": {"repository_manifest": {"name": "Variable", "render_readme": true, "homeassistant": "2021.5.1"}, "full_name": "snarky-snark/home-assistant-variables", "authors": ["@snarky-snark"], "category": "integration", "description": "A custom Home Assistant component for declaring and setting generic variable entities dynamically.", "domain": "var", "etag_repository": "W/\"ccea733b70dc3a2efc6f0bcee8ab7bc32bcc2aea3c66739e0ec4fb27516883a4\"", "last_updated": "2023-06-08T14:29:25Z", "stargazers_count": 225, "last_fetched": 1695554169.212997, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "169460975": {"repository_manifest": {}, "full_name": "akasma74/Hass-Custom-Alarm", "authors": ["@akasma74"], "category": "integration", "description": "It is a fork of \"Yet another take on a home assistant custom alarm\" that will exist until its author is back to our Earth", "domain": "bwalarm", "etag_repository": "W/\"649e1454d1bebb7bab1cfc1332128ebcc85acda8adfedf9cacd1a93215c48bdc\"", "last_updated": "2023-06-12T10:41:28Z", "stargazers_count": 79, "last_fetched": 1695553573.705989, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "514029149": {"repository_manifest": {"name": "Sodexo Dla Ciebie", "hacs": "1.0.0", "homeassistant": "2022.7.5", "render_readme": true, "country": "PL"}, "full_name": "anarion80/sodexo_dla_ciebie", "authors": ["@anarion80"], "category": "integration", "description": "Sodexo Dla Ciebie - Home Assistant Custom Component for Sodexo cards in Poland", "domain": "sodexo_dla_ciebie", "etag_repository": "W/\"2e2fdd0b36b384d5d8201009b272b55a6e643b3ab4712ba0265ce0f188780713\"", "last_updated": "2022-08-15T17:35:07Z", "topics": ["sodexo"], "last_fetched": 1695553581.103885, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "453143227": {"repository_manifest": {"name": "Juwel Helialux Smart Controller", "country": "GB", "render_readme": true}, "full_name": "MrSleeps/Juwel-HeliaLux-Home-Assistant-Custom-Component", "authors": ["@mrsleeps"], "category": "integration", "description": "A custom component for Home Assistant to monitor your Juwel HeliaLux light states", "domain": "juwel_helialux", "etag_repository": "W/\"291aabaf1d6c1e992b677813409c4f7d89142e83d5a708fd48d01fb8ece9dffd\"", "last_updated": "2022-11-24T15:37:37Z", "stargazers_count": 7, "topics": ["aquarium", "home-assistant-component", "lightning"], "last_fetched": 1695554126.158624, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190378093": {"repository_manifest": {"name": "Visonic/Bentel/Tyco Alarm System"}, "full_name": "And3rsL/VisonicAlarm-for-Hassio", "authors": ["@And3rsL"], "category": "integration", "description": "Visonic/Bentel/Tyco Alarm System integrtation for Home Assistant", "domain": "visonicalarm", "etag_repository": "W/\"2bdfaff4c390165c9eb5417be38450314c50fe207688a5e86ad3a13e0628c358\"", "last_updated": "2023-07-13T11:02:26Z", "stargazers_count": 18, "topics": ["alarm", "alarm-control-panel", "bentel", "tycomonitor", "visonic"], "last_fetched": 1695553581.124848, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261849832": {"repository_manifest": {"name": "Garo Wallbox"}, "full_name": "sockless-coding/garo_wallbox", "authors": ["sockless-coding"], "category": "integration", "description": "Garo wallbox - Home Assistant Component ", "domain": "garo_wallbox", "etag_repository": "W/\"cb8cffbb3ffe82876afaf57107caf1cff28e965782a0648474e950069a59aa58\"", "last_updated": "2023-07-14T19:15:53Z", "stargazers_count": 16, "last_fetched": 1695554169.630831, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260410453": {"repository_manifest": {"name": "Panasonic Comfort Cloud"}, "full_name": "sockless-coding/panasonic_cc", "authors": ["@sockless-coding"], "category": "integration", "description": "Panasonic Comfort Cloud - Home Assistant Component", "domain": "panasonic_cc", "etag_repository": "W/\"764dc3c5344f62f5319164e0e5c341398aabc322d53dd3a4baafcac3f686b88c\"", "last_updated": "2023-09-15T08:00:19Z", "stargazers_count": 74, "last_fetched": 1695554170.345629, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197920457": {"repository_manifest": {}, "full_name": "andersonshatch/midea-ac-py", "authors": ["@andersonshatch"], "category": "integration", "description": "This is a library to allow communicating to a Midea appliance via the Midea cloud.", "domain": "midea", "etag_repository": "W/\"6ffd2ee1c99486256e4b4addb9f37fe80b16d30fdb569e2d18b8ea3de304e27b\"", "last_updated": "2023-03-09T19:28:42Z", "stargazers_count": 78, "topics": ["midea"], "last_fetched": 1695553582.220658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "289251122": {"repository_manifest": {"name": "GoodWe Inverter (experimental)", "country": "SK", "homeassistant": "2023.3.0"}, "full_name": "mletenay/home-assistant-goodwe-inverter", "authors": ["@mletenay", "@starkillerOG", "@fizcris"], "category": "integration", "description": "Experimental version of Home Assistant integration for Goodwe solar inverters", "domain": "goodwe", "etag_repository": "W/\"c3415fadf9715c835b4ba2a59f50dece9c859a974b32ffc32cabdbe8fa41868d\"", "last_updated": "2023-04-11T22:10:03Z", "stargazers_count": 107, "topics": ["goodwe", "pv-systems"], "last_fetched": 1695554124.026719, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "606857916": {"repository_manifest": {"name": "Deye Dehumidifier", "render_readme": true, "homeassistant": "2023.4.0"}, "full_name": "stackia/ha-deye-dehumidifier", "authors": ["@stackia"], "category": "integration", "description": "Control Deye (\u5fb7\u4e1a) Dehumidifier devices from Home Assistant", "domain": "deye_dehumidifier", "etag_repository": "W/\"494ad3f11ac6364ee7f57546e73a8da6f3c117368316ddfe2549ea1a8dcba8b0\"", "last_updated": "2023-09-12T07:43:18Z", "stargazers_count": 21, "topics": ["deye", "home-assistant-component"], "last_fetched": 1695554171.710677, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "603596768": {"repository_manifest": {"name": "Haier hOn", "homeassistant": "2023.2.0", "zip_release": true, "filename": "haier_hon.zip"}, "full_name": "Andre0512/hon", "authors": ["@Andre0512"], "category": "integration", "description": "Home Assistant integration for Haier hOn: support for Haier/Candy/Hoover home appliances like washing machines and air conditioners in 19 languages.", "domain": "hon", "downloads": 2616, "etag_repository": "W/\"5b7241f963cba1faad077e0cb47942d51e8745f02dc2dac9d93f22f0de6222f2\"", "last_updated": "2023-07-27T17:26:01Z", "stargazers_count": 64, "topics": ["candy", "haier", "haier-hon", "home-assistant-integration", "hoover"], "last_fetched": 1695553582.950428, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "560282866": {"repository_manifest": {"name": "Universal Lighting Controllers", "hide_default_branch": true, "hacs": "1.6.0", "homeassistant": "2023.2"}, "full_name": "monty68/uniled", "authors": ["@monty68"], "category": "integration", "description": "Universal Light Controller Integration for Home Assistant", "domain": "uniled", "etag_repository": "W/\"d7243b96358879736142cb4bb9adf6cefcdfa321e33e75d6bf37a9328e02f397\"", "last_updated": "2023-04-07T10:52:34Z", "stargazers_count": 31, "topics": ["controller", "light", "sp107e", "sp110e", "sp601e", "sp6117e", "sp611e", "sp620e"], "last_fetched": 1695554124.13049, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "427773030": {"repository_manifest": {"name": "TuneBlade", "render_readme": true}, "full_name": "spycle/tuneblade", "authors": ["@spycle"], "category": "integration", "description": "Home Assistant custom integration for controlling AirPlay devices connected to a TuneBlade server", "domain": "tuneblade", "etag_repository": "W/\"65c12a363fa7e291dd7912541d4212e61f6bfe8ffe3d15143a2c0fd43a05eb2a\"", "last_updated": "2022-01-15T20:39:21Z", "stargazers_count": 1, "topics": ["tuneblade"], "last_fetched": 1695554170.530877, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233093604": {"repository_manifest": {"name": "kodi1/tracker_merge", "render_readme": "true", "country": "NO"}, "full_name": "kodi1/tracker_merge", "category": "python_script", "description": "merge master/slave device trackers", "etag_repository": "W/\"a4d72c0c99a0aa8eed8bbcbeec82156a9ee5f96b2a5a6ef0515d04583d65b016\"", "last_updated": "2021-04-21T19:05:19Z", "stargazers_count": 4, "topics": ["tracking"], "last_fetched": 1695553508.010651, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "501618674": {"repository_manifest": {"name": "BleBox shutterBox with tilt", "hacs": "1.6.0", "homeassistant": "2022.6.0", "render_readme": true}, "full_name": "andrzejchm/blebox_shutterbox_tilt", "authors": ["@andrzejchm"], "category": "integration", "description": "HACS integration for BleBox shutterBox that adds tilt support", "domain": "blebox_shutterbox_tilt", "etag_repository": "W/\"2b02380be79c81c6119f4f15f6d068a2dd1d23a1018dc0259910b29b244f4658\"", "last_updated": "2023-09-18T01:45:46Z", "stargazers_count": 6, "last_fetched": 1695553582.678009, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255662264": {"repository_manifest": {"name": "Landroid Cloud", "homeassistant": "2022.10.1", "zip_release": true, "filename": "landroid_cloud.zip"}, "full_name": "MTrab/landroid_cloud", "authors": ["@MTrab"], "category": "integration", "description": "Landroid Cloud component for Home Assistant", "domain": "landroid_cloud", "downloads": 3465, "etag_repository": "W/\"ebeda5ca0e8c45f43ebed7ad6e31ee7cba7e1ab40a225315658ddee96aaa0c11\"", "last_updated": "2023-09-18T16:23:26Z", "stargazers_count": 213, "topics": ["homeassistant-custom-component", "kress", "landroid", "landxcape", "mower-robot", "worx"], "last_fetched": 1695554128.15203, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325097827": {"repository_manifest": {"name": "MegaD", "country": "RU", "persistent_directory": "userfiles", "render_readme": true}, "full_name": "andvikt/mega_hacs", "authors": ["@andvikt"], "category": "integration", "description": "MegaD HomeAssistant integration", "domain": "mega", "etag_repository": "W/\"1617c2bc6147ca1e870d091eb8fc32de003e03193969d16ea8095db4a78717a5\"", "last_updated": "2023-08-21T05:56:49Z", "stargazers_count": 117, "topics": ["custom-integration", "megad"], "last_fetched": 1695553582.91226, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "445609628": {"repository_manifest": {"name": "PID Controller", "zip_release": true, "homeassistant": "2021.9", "render_readme": true, "persistent_directory": "codes", "filename": "pid_controller.zip"}, "full_name": "soloam/ha-pid-controller", "authors": ["@Soloam"], "category": "integration", "description": "PID Controller to Home Assistant", "domain": "pid_controller", "downloads": 1199, "etag_repository": "W/\"4aee961f9ea3496a4d7c59b49296c28665d39f257086256a1cf70641a6393998\"", "last_updated": "2022-11-09T00:39:55Z", "stargazers_count": 66, "topics": ["pid", "thermostat"], "last_fetched": 1695554170.417642, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "365567023": {"repository_manifest": {"name": "Nuvo multi-zone amplifier (serial)", "render_readme": true, "country": "EN", "homeassistant": "2023.5.0", "zip_release": true, "filename": "nuvo_serial.zip"}, "full_name": "sprocket-9/hacs-nuvo-serial", "authors": ["@sprocket-9"], "category": "integration", "description": "Custom component to control a Nuvo Grand Concerto/Essentia G multi-zone amplifier via serial connection", "domain": "nuvo_serial", "downloads": 37, "etag_repository": "W/\"7f49689bdfef2ac21420796f496a70c18bae6a69a8fb2b3c44fd3517ca703abd\"", "last_updated": "2023-08-31T16:27:58Z", "stargazers_count": 5, "topics": ["home-assistant-component", "home-assistant-integration"], "last_fetched": 1695554170.513658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "426814988": {"repository_manifest": {"name": "Schedule State", "render_readme": true}, "full_name": "aneeshd/schedule_state", "authors": ["@aneeshd"], "category": "integration", "description": "Home Assistant (HA) sensor that returns a string based on a defined schedule, enabling further automations", "domain": "schedule_state", "etag_repository": "W/\"333852cd02fc9bd71cae9341ddf093b971a813e07c3cc0c2301875597aaa599e\"", "last_updated": "2023-09-22T15:07:36Z", "stargazers_count": 30, "topics": ["automation", "scheduler", "timetable"], "last_fetched": 1695553582.730676, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "427902632": {"repository_manifest": {"name": "Solarman Integration"}, "full_name": "StephanJoubert/home_assistant_solarman", "authors": ["@StephanJoubert"], "category": "integration", "description": "Home Assistant component for Solarman collectors used with a variety of inverters. ", "domain": "solarman", "etag_repository": "W/\"bd19a9e472af51d5c67a190e6f7d65aae99ce3d64fead4d3328f56e41a5824de\"", "last_updated": "2023-09-20T05:24:37Z", "stargazers_count": 381, "topics": ["deye", "energy", "inverter", "sofar", "sol-ark", "solar", "solarman", "solis", "sunsynk"], "last_fetched": 1695554171.505768, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201497401": {"repository_manifest": {"name": "Xiaomi IR Climate"}, "full_name": "Anonym-tsk/homeassistant-climate-xiaomi-remote", "authors": ["@anonym-tsk"], "category": "integration", "description": "Xiaomi IR Climate Component", "domain": "xiaomi_remote", "etag_repository": "W/\"81b010401c83771359cffe69045a0838facf9592908a851c25a803ed5f768583\"", "last_updated": "2022-10-11T15:33:07Z", "stargazers_count": 30, "topics": ["climate", "xiaomi"], "last_fetched": 1695553582.812386, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "527278013": {"repository_manifest": {"name": "L\u00e4nder\u00fcbergreifendes Hochwasser Portal", "country": "DE", "render_readme": true}, "full_name": "stephan192/hochwasserportal", "authors": ["@stephan192"], "category": "integration", "description": "Home Assistant integration for L\u00e4nder\u00fcbergreifendes Hochwasser Portal", "domain": "hochwasserportal", "etag_repository": "W/\"25279b43b96cea680cea78ec3781ea500f7280ffc5245947268a8cb51aecda8a\"", "last_updated": "2023-09-11T09:52:54Z", "stargazers_count": 12, "topics": ["hochwasserportal"], "last_fetched": 1695554170.954441, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "564355840": {"repository_manifest": {"name": "Shopping List with Grocy", "render_readme": true}, "full_name": "Anrolosia/Shopping-List-with-Grocy", "authors": ["@Anrolosia"], "category": "integration", "description": "A Shopping list integration with Grocy for Home Assistant", "domain": "shopping_list_with_grocy", "etag_repository": "W/\"4b8dcd45b9847d83574d1777ec8c7841d215a83ee1eb271a57f9f5b4d36bcc1e\"", "last_updated": "2023-09-22T11:42:18Z", "stargazers_count": 28, "topics": ["custom", "grocy"], "last_fetched": 1695553583.149491, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "289579468": {"repository_manifest": {"name": "Eskom Loadshedding Interface"}, "full_name": "swartjean/ha-eskom-loadshedding", "authors": ["@swartjean"], "category": "integration", "description": "Fetches loadshedding data from Eskom", "domain": "eskom_loadshedding", "etag_repository": "W/\"a28ead81516ca7a3a1de4e8d8f99184e8f02d28a5a0f543bc57d229a4770ed9e\"", "last_updated": "2022-11-27T12:13:05Z", "stargazers_count": 67, "topics": ["eskom", "eskomsepush", "esp", "loadshedding", "south-africa"], "last_fetched": 1695554172.460162, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458491675": {"repository_manifest": {"name": "Nicehash Excavator Monitor Card", "filename": "nicehash-excavator-monitor-card.js", "render_readme": true}, "full_name": "MesserschmittX/lovelace-nicehash-excavator-monitor-card", "category": "plugin", "description": "Home Assistant UI Card for Nicehash Excavator Monitor integration", "etag_repository": "W/\"154b596637c786400d3ff9b4dee7debcb72c86cc6917039d937a2993f1e81b1d\"", "last_updated": "2022-05-15T07:59:36Z", "topics": ["excavator", "mining", "nicehash"], "last_fetched": 1695553549.671164, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "293488791": {"repository_manifest": {"name": "Uonet+ Vulcan", "country": "PL", "homeassistant": "2023.3.0", "render_readme": true}, "full_name": "Antoni-Czaplicki/vulcan-for-hassio", "authors": ["@Antoni-Czaplicki"], "category": "integration", "description": "Vulcan inegration for home assistamt", "domain": "vulcan", "etag_repository": "W/\"419dcd10020bacfcc2ddfaca18a83485d93ad4e7806a1926abeeb26157ee8e4d\"", "last_updated": "2023-04-17T14:37:37Z", "stargazers_count": 24, "topics": ["timetable", "vulcan"], "last_fetched": 1695553583.455863, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "408074547": {"repository_manifest": {"name": "Acer Air Monitor", "filename": "acer_air_monitor.zip", "hacs": "1.6.0", "homeassistant": "2023.3.0", "hide_default_branch": true, "render_readme": true, "zip_release": true}, "full_name": "sugoi-wada/acer-air-monitor-2018", "authors": ["@sugoi-wada"], "category": "integration", "description": "Acer air monitor for Home Assistant", "domain": "acer_air_monitor", "etag_repository": "W/\"6766bdbf90db8b5799e49ac017c0de2a4d4e2d9c70f5cd93628bc202601df51f\"", "last_updated": "2023-09-24T09:24:17Z", "last_fetched": 1695554171.889325, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454440949": {"repository_manifest": {"name": "Room Card", "filename": "room-card.js", "render_readme": true, "content_in_root": true}, "full_name": "marcokreeft87/room-card", "category": "plugin", "description": "Show multiple entity states, attributes and icons in a single card in Home Assistant's Lovelace UI", "etag_repository": "W/\"0c69ec5f2dfd4723cfca36fc4634c41db2990f6de8e55b5dc63bc151dd1f65f7\"", "last_updated": "2023-09-01T10:19:43Z", "stargazers_count": 139, "topics": ["attribute", "card", "entities", "format", "homeassistant-frontend", "lovelace-custom-card", "room"], "last_fetched": 1695553547.254601, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256928191": {"repository_manifest": {"name": "GCE Eco-Devices", "country": "FR", "render_readme": true}, "full_name": "Aohzan/ecodevices", "authors": ["@Aohzan"], "category": "integration", "description": "Home Assistant custom component for GCE Eco-Devices", "domain": "ecodevices", "etag_repository": "W/\"fae00aca4720920295d1b167a53dbfce5709ef3655b621378974bcdc767b5e73\"", "last_updated": "2023-08-25T12:52:33Z", "stargazers_count": 11, "topics": ["domotique", "eco-devices", "ecodevices", "gce-electronics"], "last_fetched": 1695553583.470638, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "583379046": {"repository_manifest": {"name": "Mold Risk Index", "homeassistant": "2022.8"}, "full_name": "Strixx76/mold_risk_index", "authors": ["@Strixx76"], "category": "integration", "description": "Calculate the level of risk of mold growth in a crawl space.", "domain": "mold_risk_index", "etag_repository": "W/\"ae32c6b1f07bcce03ef63a39a479d7ee83de76e5c3ed23257317c7dd5578fc66\"", "last_updated": "2023-07-14T07:37:39Z", "stargazers_count": 21, "topics": ["python3"], "last_fetched": 1695554171.412714, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "580152298": {"repository_manifest": {"name": "Polar", "render_readme": true}, "full_name": "Aohzan/hass-polar", "authors": ["@Aohzan"], "category": "integration", "description": "Polar integration for Home Assistant", "domain": "polar", "etag_repository": "W/\"712a2a4638a70ff98f85697a39c68307e33f4b5a5c227e6af1686adf0c5a24ee\"", "last_updated": "2023-08-08T18:15:38Z", "stargazers_count": 10, "topics": ["home-assistant-integration", "polar", "polar-accesslink", "polar-electro"], "last_fetched": 1695553583.40671, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "177978011": {"repository_manifest": {"name": "ShellyForHass (Shelly integration)", "hide_default_branch": true, "zip_release": true, "filename": "shelly4hass.zip", "homeassistant": "0.104.0"}, "full_name": "StyraHem/ShellyForHASS", "authors": ["@hakana", "@StyraHem"], "category": "integration", "description": "Shelly smart home platform for Home Assistant", "domain": "shelly", "downloads": 13626, "etag_repository": "W/\"d95ac6b042dd66759f0836edd78879df62182b8e2bd479200d38cbaa0ca106e8\"", "last_updated": "2023-04-19T14:07:48Z", "stargazers_count": 594, "last_fetched": 1695554171.6697, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "482473793": {"repository_manifest": {"name": "Prix Carburant", "country": "FR", "render_readme": true, "homeassistant": "2022.5.0"}, "full_name": "Aohzan/hass-prixcarburant", "authors": ["@Aohzan"], "category": "integration", "description": "R\u00e9cup\u00e9ration des prix des stations en France", "domain": "prix_carburant", "etag_repository": "W/\"0d3de4278b20760c63e0f2eb7c3043de854d6806cac1623dbe1bcaab4305705d\"", "last_updated": "2023-06-16T13:49:27Z", "stargazers_count": 16, "topics": ["carburant", "gas", "price"], "last_fetched": 1695553584.430256, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "294037465": {"repository_manifest": {"name": "Dual Smart Thermostat", "render_readme": true, "hide_default_branch": true, "homeassistant": "2023.3.0", "filename": "ha-dual-smart-thermostat.zip"}, "full_name": "swingerman/ha-dual-smart-thermostat", "authors": ["@swingerman"], "category": "integration", "description": "The `dual_smart_thermostat` is an enhaced verion of generic thermostat implemented in Home Assistant. It uses several sensors and dedicated switches connected to a heater and air conditioning under the hood.", "domain": "dual_smart_thermostat", "etag_repository": "W/\"51455f284a03b1af3c6c7842b22452bf8ff2041094801807dc06335b9ac46cc2\"", "last_updated": "2023-08-11T21:04:45Z", "stargazers_count": 67, "topics": ["thermostat"], "last_fetched": 1695554172.857701, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "158654878": {"repository_manifest": {"name": "Simple Thermostat", "homeassistant": "0.84.0", "render_readme": true}, "full_name": "nervetattoo/simple-thermostat", "category": "plugin", "description": "A different take on the thermostat card for Home Assistant \u2668\ufe0f", "downloads": 50908, "etag_repository": "W/\"79e9c9299f56e2a391b13b65f963b441fe296a98db8157afefff4d719afec8b2\"", "last_updated": "2023-03-04T03:44:35Z", "stargazers_count": 672, "topics": ["polymer-3"], "last_fetched": 1695553551.559326, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255258767": {"repository_manifest": {"name": "GCE IPX800 V4", "country": "FR", "render_readme": true}, "full_name": "Aohzan/ipx800", "authors": ["@Aohzan"], "category": "integration", "description": "IPX800 V4 integration for Home-Assistant", "domain": "ipx800v4", "etag_repository": "W/\"ea0edfe2fc2dc6517ce734a3897738b088b05f002e27b46c38525fae81e046d9\"", "last_updated": "2023-08-25T12:52:13Z", "stargazers_count": 17, "topics": ["domotique", "gce-electronics", "ipx800"], "last_fetched": 1695553584.985581, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292616002": {"repository_manifest": {"name": "Seedboxes.cc"}, "full_name": "swartjean/ha-seedboxes-cc", "authors": ["@swartjean"], "category": "integration", "description": "Home Assistant - Seedboxes.cc Integration", "domain": "seedboxes_cc", "etag_repository": "W/\"2fab8c1c549ffadaedabf4a9615072f8251f5add05aa178b9f73f0dbc0cda2ca\"", "last_updated": "2021-04-05T10:15:21Z", "stargazers_count": 2, "topics": ["monitoring", "seedbox", "torrents"], "last_fetched": 1695554172.546261, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "432522624": {"repository_manifest": {"name": "GCE IPX800 V5", "country": "FR", "render_readme": true}, "full_name": "Aohzan/ipx800v5", "authors": ["@Aohzan"], "category": "integration", "description": "IPX800 V5 integration for Home-Assistant", "domain": "ipx800v5", "etag_repository": "W/\"273292fac804e89094a1b927a2b333f2de3939c9110cbf2a15c5a6847a93857f\"", "last_updated": "2023-08-25T12:51:54Z", "stargazers_count": 7, "topics": ["domotique", "gce-electronics", "home-assistant-integration", "ipx800", "ipx800-v5", "ipx800v5"], "last_fetched": 1695553584.936979, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "121934877": {"repository_manifest": {"name": "Xiaomi Mi and Aqara Air Conditioning Companion Integration", "render_readme": true}, "full_name": "syssi/xiaomi_airconditioningcompanion", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi and Aqara Air Conditioning Companion integration for Home Assistant", "domain": "xiaomi_miio_airconditioningcompanion", "etag_repository": "W/\"c73d049448ec1eb579f0b09d8f818076922729943dfdde35e865311dc7d9fac1\"", "last_updated": "2023-06-13T07:55:43Z", "stargazers_count": 385, "topics": ["acpartner", "airconditioning", "aqara", "infrared", "xiaomi"], "last_fetched": 1695554173.685809, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188572845": {"repository_manifest": {"name": "Rotel Remote Card", "content_in_root": true}, "full_name": "marrobHD/rotel-card", "category": "plugin", "description": "\ud83d\udd0a Rotel Remote Card", "etag_repository": "W/\"aebe78b13cd915f9345a02ae97036c6a9a16e111754e901e8ee48e4989ffc3fa\"", "last_updated": "2022-05-25T19:39:13Z", "stargazers_count": 5, "topics": ["home-assistant-rotel-card", "lovelace-card"], "last_fetched": 1695553547.958453, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "593780777": {"repository_manifest": {"name": "52PI UPS Integration", "render_readme": true}, "full_name": "archef2000/homeassistant-upsplus", "authors": ["@Archef2000"], "category": "integration", "description": "Home Assistant integration for the 52PI UPS", "domain": "upsplus", "etag_repository": "W/\"1dcd8f25fc6d92bda857624cd0548fa0d63b131302b5ae80e370916a13a130d4\"", "last_updated": "2023-09-05T22:28:02Z", "stargazers_count": 6, "topics": ["52pi", "custom-integration", "upsplus"], "last_fetched": 1695553584.907769, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "100234318": {"repository_manifest": {"name": "Xiaomi Philips Lights Integration", "render_readme": true}, "full_name": "syssi/philipslight", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Philips Lights integration for Home Assistant", "domain": "xiaomi_miio_philipslight", "etag_repository": "W/\"9883968399b99594a4cf2a1ef8a53dadebfe00d3060e56544de5e690f442a142\"", "last_updated": "2023-06-13T08:09:38Z", "stargazers_count": 66, "topics": ["light", "miio", "miio-protocol", "xiaomi", "xiaomi-philips-lights"], "last_fetched": 1695554173.594759, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443529332": {"repository_manifest": {"name": "Bobcat Miner 300", "render_readme": true}, "full_name": "ardevd/ha-bobcatminer", "authors": ["@ardevd"], "category": "integration", "description": "Home Assistant integration for the Bobcat Helium Miner", "domain": "bobcatminer", "etag_repository": "W/\"b0ccb119cf8fcd52a4a5377b5207a54077e3fd947e11e1994a566f365dde6f31\"", "last_updated": "2023-01-09T12:17:31Z", "stargazers_count": 10, "topics": ["bobcatminer", "cryptocurrency", "helium", "mining"], "last_fetched": 1695553585.087901, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "460108030": {"repository_manifest": {"name": "go-eCharger integration for Home Assistant using the MQTT API", "render_readme": true, "homeassistant": "2022.12.0"}, "full_name": "syssi/homeassistant-goecharger-mqtt", "authors": ["@syssi"], "category": "integration", "description": "go-eCharger integration for Home Assistant using the MQTT API", "domain": "goecharger_mqtt", "etag_repository": "W/\"21a7c9863aac5ea02d928bf1ee90efa044fe56a60aa814e9e579bb511d034c9c\"", "last_updated": "2023-05-21T08:15:10Z", "stargazers_count": 43, "topics": ["go-echarger", "goe-charger"], "last_fetched": 1695554172.822922, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "556789449": {"repository_manifest": {"name": "WhatsPie", "homeassistant": "2022.6.0", "render_readme": true}, "full_name": "arifwn/homeassistant-whatspie-integration", "authors": ["@arifwn"], "category": "integration", "description": "Send HomeAssistant Notifications to WhatsApp using WhatsPie", "domain": "whatspie", "etag_repository": "W/\"0572b1b038d06abe72ba82e1385f34cc28dd56bc1451e029199948f1d72c8582\"", "last_updated": "2022-11-22T10:23:37Z", "stargazers_count": 2, "topics": ["whatsapp", "whatspie"], "last_fetched": 1695553584.986837, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164489685": {"repository_manifest": {"name": "Nextbike Integration", "render_readme": true}, "full_name": "syssi/nextbike", "authors": ["@syssi"], "category": "integration", "description": "Nextbike integration for Home Assistant", "domain": "nextbike", "etag_repository": "W/\"1cb41415cf1fa586b09ca57b447ba54b2e66b22b4dbd1cf2b7b256d499c4f623\"", "last_updated": "2023-03-08T13:10:42Z", "stargazers_count": 12, "topics": ["free-floating", "nextbike"], "last_fetched": 1695554173.028748, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "186347733": {"repository_manifest": {"name": "Audi connect", "homeassistant": "0.110.0"}, "full_name": "arjenvrh/audi_connect_ha", "authors": ["@arjenvrh"], "category": "integration", "description": "Adds an audi connect integration to home assistant", "domain": "audiconnect", "etag_repository": "W/\"a8a1ab8cfe2177635ab3c8cf6dee02f90d25bfc324f2d3f6a254cd097b7c4f8d\"", "last_updated": "2023-09-13T05:13:26Z", "stargazers_count": 157, "topics": ["audi", "audi-connect", "sensors"], "last_fetched": 1695553585.237039, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "134057086": {"repository_manifest": {"name": "Xiaomi Mi Electric Rice Cooker Integration", "render_readme": true}, "full_name": "syssi/xiaomi_cooker", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Electric Rice Cooker integration for Home Assistant", "domain": "xiaomi_miio_cooker", "etag_repository": "W/\"003aba2f6195ab69ae14097e9fe9c694bfa44192e80b634a10c7a18daea2abd5\"", "last_updated": "2023-06-08T05:04:34Z", "stargazers_count": 127, "topics": ["miio", "miio-protocol", "rice-cooker", "xiaomi", "xiaomi-cooker"], "last_fetched": 1695554173.943207, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "160728801": {"repository_manifest": {}, "full_name": "asantaga/lightwaverf_HA_EnergySensor", "authors": ["@asantaga"], "category": "integration", "description": "Home Assistant Sensor for the LightwaveRF energy monitor", "domain": "lightwaverf_energy", "etag_repository": "W/\"80ddd8ca96917338c551bb8938030144d0f0426318fc1f7f9ced48b076139eb2\"", "last_updated": "2023-05-16T11:21:38Z", "stargazers_count": 5, "topics": ["electricity", "energysensor", "lightwaverf"], "last_fetched": 1695553585.321116, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "101482973": {"repository_manifest": {"name": "Xiaomi Mi Air Purifier, Air Humidifier, Air Fresh and Pedestal Fan Integration", "render_readme": true, "homeassistant": "2022.8.0"}, "full_name": "syssi/xiaomi_airpurifier", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Air Purifier and Xiaomi Mi Air Humidifier integration for Home Assistant", "domain": "xiaomi_miio_airpurifier", "etag_repository": "W/\"ec634ba1d304d86d411df5f456f09a6d0c60b9f288ae10813137b87ed144fe76\"", "last_updated": "2023-07-14T09:25:27Z", "stargazers_count": 416, "topics": ["airfresh", "airhumidifier", "airpurifier", "fan", "miio", "miio-protocol", "miot", "xiaomi"], "last_fetched": 1695554174.048504, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "572297252": {"repository_manifest": {"name": "IrrigationProgram Custom Card", "render_readme": true, "filename": "irrigation-card.js"}, "full_name": "petergridge/Irrigation-Card", "category": "plugin", "description": "Companion card for Irrigation-V5", "downloads": 1336, "etag_repository": "W/\"601e14df633f30e6db40f7575d27a170bc151f8105954e888c4b951e0e64db94\"", "last_updated": "2023-06-08T23:29:42Z", "stargazers_count": 14, "topics": ["irrigation", "irrigation-v5"], "last_fetched": 1695553553.056972, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "159080189": {"repository_manifest": {"name": "Drayton Wiser Integration for Home Assistant", "homeassistant": "2023.02", "render_readme": true, "zip_release": true, "filename": "wiser.zip"}, "full_name": "asantaga/wiserHomeAssistantPlatform", "authors": ["@asantaga", "@msp1974"], "category": "integration", "description": "Platform and related climate/sensors to support the Drayton Wiser Home Heating System", "domain": "wiser", "downloads": 962, "etag_repository": "W/\"2e7c7a68f5972ed122f9886f7b28e958c272afc75e09a0d3d7ec7bc8aacec262\"", "last_updated": "2023-09-23T17:21:21Z", "stargazers_count": 182, "topics": ["drayton", "heating", "wiser"], "last_fetched": 1695553585.923087, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "598336481": {"repository_manifest": {"name": "Israel Meteorological Service / sensor", "render_readme": true, "country": "IL"}, "full_name": "t0mer/ims-custom-component", "authors": ["@t0mer"], "category": "integration", "description": "The Israel Meteorological Service (IMS) integration component for home assistant", "domain": "ims", "etag_repository": "W/\"96ff083e42cb9c31f9f958a6e5560bf5ebd7a209a1151ee412a0902b584fb80a\"", "last_updated": "2023-09-10T09:01:07Z", "stargazers_count": 26, "topics": ["ims", "israel-meteorological-service", "python3"], "last_fetched": 1695554175.165797, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "455846088": {"repository_manifest": {"name": "Sankey Chart Card", "render_readme": true, "filename": "ha-sankey-chart.js"}, "full_name": "MindFreeze/ha-sankey-chart", "category": "plugin", "description": "A Home Assistant lovelace card to display a sankey chart. For example for power consumption", "downloads": 1770, "etag_repository": "W/\"b12bb323a50ab547801c9951b7783582d168f0f036bc2abced21179bfadc7f4f\"", "last_updated": "2023-09-20T13:32:27Z", "stargazers_count": 224, "topics": ["energy-consumption", "lovelace-card"], "last_fetched": 1695553550.068128, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245694520": {"repository_manifest": {"name": "Helios ventilation", "render_readme": true}, "full_name": "asev/homeassistant-helios", "authors": ["@asev"], "category": "integration", "description": "Custom component for Home Assistant to connect Helios ventilation system.", "domain": "helios", "etag_repository": "W/\"198505addc9e5c710860f8fa26dcc1cee5a1d13ba6e9d326dc148ff1e95c8012\"", "last_updated": "2022-11-07T22:03:36Z", "stargazers_count": 9, "topics": ["helios", "ventilation"], "last_fetched": 1695553585.597678, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "97201395": {"repository_manifest": {"name": "Xiaomi Mi Smart WiFi Socket Integration", "render_readme": true}, "full_name": "syssi/xiaomiplug", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Smart WiFi Socket integration for Home Assistant", "domain": "xiaomi_miio_plug", "etag_repository": "W/\"27b66b15a57450d994d65a8c489f2f32739c0e48f6121b365ca55389271cad47\"", "last_updated": "2023-06-13T08:10:57Z", "stargazers_count": 104, "topics": ["miio", "miio-device", "miio-protocol", "switch", "xiaomi"], "last_fetched": 1695554174.721599, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "252926906": {"repository_manifest": {"name": "Uponor Smatrix Pulse", "render_readme": true}, "full_name": "asev/homeassistant-uponor", "authors": ["@asev"], "category": "integration", "description": "Uponor Smatrix Pulse heating/cooling system integration for Home Assistant.", "domain": "uponor", "etag_repository": "W/\"57d99b112516cecc010c4c97863aebac53173f224e7d4677881b03553e007c10\"", "last_updated": "2022-02-09T12:50:09Z", "stargazers_count": 31, "topics": ["heating-control", "smatrix", "uponor", "uponor-smatrix-pulse"], "last_fetched": 1695553586.659977, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "129049262": {"repository_manifest": {"name": "Xiaomi Mi Smart Pedestal Fan Integration", "render_readme": true, "homeassistant": "2022.8.0"}, "full_name": "syssi/xiaomi_fan", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Smart Fan integration for Home Assistant", "domain": "xiaomi_miio_fan", "etag_repository": "W/\"932c15fa3bf715e3bfa379c585936573dd0691c3940d9493108b54c0b266982f\"", "last_updated": "2023-09-20T12:15:40Z", "stargazers_count": 364, "topics": ["fan", "miio", "miio-protocol", "miot", "xiaomi"], "last_fetched": 1695554174.261621, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "391372854": {"repository_manifest": {"name": "Alarmo Card", "render_readme": true, "filename": "alarmo-card.js"}, "full_name": "nielsfaber/alarmo-card", "category": "plugin", "description": "Home Assistant card for controlling the Alarmo component", "downloads": 13053, "etag_repository": "W/\"0118c9583208c8165b0abfed8f7519f2553ed3b4af132a21ed55ae706d4c4d6c\"", "last_updated": "2023-09-02T04:00:35Z", "stargazers_count": 70, "topics": ["alarm", "alarmo", "assistant", "card", "home", "security"], "last_fetched": 1695553551.71554, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "439944813": {"repository_manifest": {"name": "Miele", "filename": "miele.zip", "homeassistant": "2023.8.0", "render_readme": true, "zip_release": true}, "full_name": "astrandb/miele", "authors": ["@astrandb"], "category": "integration", "description": "A modern integration for Miele devices in Home Assistant", "domain": "miele", "downloads": 2349, "etag_repository": "W/\"0186a989b148c86883ee2649d702dfceb750b58dfa17e6e145756b836a38c87f\"", "last_updated": "2023-09-23T14:46:18Z", "stargazers_count": 112, "topics": ["miele"], "last_fetched": 1695553587.389756, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "129353521": {"repository_manifest": {"name": "Xiaomi MiIO Raw", "render_readme": true}, "full_name": "syssi/xiaomi_raw", "authors": ["@syssi"], "category": "integration", "description": "Custom component for Home Assistant to faciliate the reverse engeneering of Xiaomi MiIO devices", "domain": "xiaomi_miio_raw", "etag_repository": "W/\"a2354ded90ede8ce228de21aed7d590d84aaa2b45b2dfcb9cee742ad2d3d7052\"", "last_updated": "2023-07-11T18:39:57Z", "stargazers_count": 98, "topics": ["miio", "miio-device", "miio-protocol", "monitoring"], "last_fetched": 1695554174.633687, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232299868": {"repository_manifest": {"name": "Sentio", "render_readme": true, "homeassistant": "2023.4.0", "zip_release": true, "filename": "sentio.zip"}, "full_name": "astrandb/sentio", "authors": ["@astrandb"], "category": "integration", "description": "Custom component for Sentiotec sauna controller", "domain": "sentio", "downloads": 36, "etag_repository": "W/\"af41f3c5ea9a2971552e20fb73121df8cb482d985fd75a67bba49b26dcf943bc\"", "last_updated": "2023-04-03T21:30:29Z", "stargazers_count": 3, "topics": ["sentio", "sentiotec"], "last_fetched": 1695553587.239192, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "625923963": {"repository_manifest": {"name": "SOMweb (for Sommer garage doors)", "filename": "somweb.zip", "hide_default_branch": true, "render_readme": true, "zip_release": true}, "full_name": "taarskog/home-assistant-component-somweb", "authors": ["@taarskog"], "category": "integration", "description": "Custom component for Home Assistant to manage garage doors and gates by Sommer", "domain": "somweb", "downloads": 139, "etag_repository": "W/\"c1f27e5a88a69af12d82545108f0869f5a898d5c91fdfb3c1548e3d6892cc801\"", "last_updated": "2023-09-11T04:20:56Z", "stargazers_count": 2, "topics": ["cover", "garage-door-opener", "home-assistant-custom-component", "home-assistant-integration", "sommer", "somweb"], "last_fetched": 1695554175.17667, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "555221653": {"repository_manifest": {"name": "ViVa Coastal Weather", "filename": "viva.zip", "homeassistant": "2023.7.0", "render_readme": true, "zip_release": true}, "full_name": "astrandb/viva", "authors": ["@astrandb"], "category": "integration", "description": "A modern Home Assistant integration for ViVa weather service from Swedish Sj\u00f6fartsverket", "domain": "viva", "downloads": 123, "etag_repository": "W/\"8fa3ea32c559e5f907ab1897dd9b25dbdfc1ebe0a94c0b1d59a0f446a7339d3c\"", "last_updated": "2023-09-18T17:59:48Z", "stargazers_count": 3, "topics": ["sealevel", "sjofartsverket", "viva"], "last_fetched": 1695553587.157452, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "601113362": {"repository_manifest": {"name": "MaNish whatsapp custom notification / notify", "render_readme": true, "country": "IL"}, "full_name": "t0mer/manish-custom-notifier", "authors": ["@t0mer"], "category": "integration", "description": "manish custom notifier allows you to send whatsapp notification using Whatsapp Cloud API", "domain": "manish", "etag_repository": "W/\"7bcb17879c5f96250d54841161a53e6256c8ffef56faac089034790779a0060d\"", "last_updated": "2023-03-12T19:46:54Z", "stargazers_count": 18, "topics": ["homeassistant-custom-component", "notifications", "python3", "whatsapp", "whatsapp-api"], "last_fetched": 1695554174.964156, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "647324399": {"repository_manifest": {"name": "Additional CA", "homeassistant": "2023.3.0", "render_readme": true}, "full_name": "Athozs/hass-additional-ca", "authors": ["@Athozs"], "category": "integration", "description": "Add custom Certificate Authority to Home Assistant.", "domain": "additional_ca", "downloads": 49, "etag_repository": "W/\"a1bb64da5349aac43e4568f24a292d0f246c44074b66480ca1ad81448ddcf676\"", "last_updated": "2023-09-09T17:21:04Z", "stargazers_count": 6, "topics": ["certificate", "certificate-authority", "home-assistant-integration", "homeassistant-custom-component"], "last_fetched": 1695553587.111329, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307974458": {"repository_manifest": {"name": "ResRobot", "country": "SE", "homeassistant": "2023.5.2"}, "full_name": "TekniskSupport/home-assistant-resrobot", "authors": ["@iesus"], "category": "integration", "description": "Get departure times for swedish public transportation", "domain": "resrobot", "etag_repository": "W/\"33f4ad993a7781633e7afcb99a1033917a991a2dc4349c4d376ec6cf8f6922dc\"", "last_updated": "2023-05-07T05:53:35Z", "stargazers_count": 12, "topics": ["bus", "ferry", "iesus", "public", "sweden", "train", "tram", "transportation"], "last_fetched": 1695554176.296632, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "624779425": {"repository_manifest": {"name": "ZCS Azzurro", "homeassistant": "2023.5.0", "zip_release": true, "filename": "zcsazzurro.zip", "render_readme": true}, "full_name": "aturri/ha-zcsazzurro", "authors": ["@aturri"], "category": "integration", "description": "A modern integration for ZCS Azzurro devices in Home Assistant", "domain": "zcsazzurro", "downloads": 406, "etag_repository": "W/\"337b34bba2d0aacce91b12bd19e53e955a3fc7b2359a3e856fb7a66f4383cc05\"", "last_updated": "2023-08-19T07:38:14Z", "stargazers_count": 8, "topics": ["zcs", "zcsazzurro"], "last_fetched": 1695553587.20918, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "181743867": {"repository_manifest": {"name": "Brematic", "homeassistant": "2021.10.0", "render_readme": true}, "full_name": "tefinger/hass-brematic", "authors": ["@tefinger"], "category": "integration", "description": "Custom component for Home Assistant to support Brematic devices", "domain": "brematic", "etag_repository": "W/\"d44aa27f8cc82bd500ea033412d3ac2aca9d5e4edc75ec250d94eb6baf18a2a2\"", "last_updated": "2022-03-30T09:51:05Z", "stargazers_count": 10, "topics": ["433mhz", "brematic", "brennenstuhl", "gateway", "intertechno"], "last_fetched": 1695554176.064811, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223739645": {"repository_manifest": {"name": "Climate IP"}, "full_name": "atxbyea/samsungrac", "authors": ["@SebuZet"], "category": "integration", "description": "Home Assistant Climate Device for controlling (not only) Samsung AC", "domain": "climate_ip", "etag_repository": "W/\"5313cde419d2fd386647720638217d102afabf40d8ac4f2e52b3bef553f7949a\"", "last_updated": "2023-08-29T09:01:43Z", "stargazers_count": 44, "topics": ["airconditioning", "hacktoberfest2021", "samsung"], "last_fetched": 1695553587.477456, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442181774": {"repository_manifest": {"name": "Daikin Altherma", "render_readme": true}, "full_name": "tadasdanielius/daikin_altherma", "authors": ["@tadasdanielius"], "category": "integration", "description": "Daikin Altherma custom component for home assistant", "domain": "daikin_altherma", "etag_repository": "W/\"c4ebdc85d9f6389b670b062626d74388ccc3f19220844cbbaa69cad48a8daa6c\"", "last_updated": "2023-07-21T18:53:47Z", "stargazers_count": 47, "topics": ["altherma", "brp069a61", "brp069a62", "daikin", "daikin-altherma", "homeassistant-custom-component"], "last_fetched": 1695554175.875974, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256899380": {"repository_manifest": {"name": "Project Three Zero (7-11 Fuel Lock Monitor)", "render_readme": true}, "full_name": "atymic/project_three_zero_ha", "authors": ["@atymic"], "category": "integration", "description": "Project Three Zero Home Assistant Integration", "domain": "project_zero_three", "etag_repository": "W/\"8fe4a7122f493cdd479425f5a6f364acefdc3fb241b1d0575405171553264413\"", "last_updated": "2022-01-27T00:39:52Z", "stargazers_count": 3, "topics": ["fuel"], "last_fetched": 1695553587.429358, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544426802": {"repository_manifest": {"name": "Dreame Vacuum", "homeassistant": "2022.8.0", "zip_release": true, "filename": "dreame_vacuum.zip"}, "full_name": "Tasshack/dreame-vacuum", "authors": ["@tasshack"], "category": "integration", "description": "Home Assistant integration for Dreame robot vacuums with map support", "domain": "dreame_vacuum", "downloads": 4435, "etag_repository": "W/\"447845ac43aa5a3821ccbdfaa04662b1db8913a26f4c992ac638de3b7e04ff5d\"", "last_updated": "2023-09-19T18:25:09Z", "stargazers_count": 328, "topics": ["automation", "cloud", "dreame", "dreametech", "map", "mi-home", "miio", "robot", "vacuum", "vacuum-map", "valetudo", "xiaomi"], "last_fetched": 1695554176.104042, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "341046872": {"repository_manifest": {"name": "BlueAir Integration"}, "full_name": "aijayadams/hass-blueair", "authors": ["@aijayadams"], "category": "integration", "description": "BlueAir sensor integration for HomeAssistant", "domain": "blueair", "etag_repository": "W/\"b26efd5e3ecda450d1ab37d1d634a090b13cfc4c1c284154d3d69e4474d4aaa6\"", "last_updated": "2023-05-08T10:57:23Z", "stargazers_count": 27, "topics": ["blueair"], "last_fetched": 1695553572.238523, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "380330823": {"repository_manifest": {"name": "Eldes Alarm", "render_readme": true}, "full_name": "augustas2/eldes", "authors": ["@augustas2"], "category": "integration", "description": "Home Assistant custom component for Eldes Alarm system", "domain": "eldes_alarm", "etag_repository": "W/\"854719601626fb1b51feff4d26c6a54fe77453be09a5cf0494b97d8c9c68f37b\"", "last_updated": "2023-09-22T13:58:07Z", "stargazers_count": 12, "topics": ["alarm", "alarm-panel", "alarm-system", "eldes", "esim364", "esim384", "output", "pitbull-alarm-pro", "switch"], "last_fetched": 1695553587.771403, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356030453": {"repository_manifest": {"name": "remote_syslog", "country": "US", "homeassistant": "2021.3.4", "render_readme": true}, "full_name": "TheByteStuff/RemoteSyslog_Service", "authors": ["@thebytestuff"], "category": "integration", "description": "Home Assistant Custom Component - send Syslog message to remote server.", "domain": "remote_syslog", "etag_repository": "W/\"bb3368c1821c71bd64c36f063fc839195d8fdf9f2cf09ae9c69313e9a7535257\"", "last_updated": "2023-02-23T15:41:24Z", "stargazers_count": 12, "topics": ["syslog", "syslog-client"], "last_fetched": 1695554176.791319, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "607493281": {"repository_manifest": {"name": "NeoVolta", "render_readme": true, "homeassistant": "2022.2.0b0"}, "full_name": "austinmroczek/neovolta", "authors": ["@austinmroczek"], "category": "integration", "description": "NeoVolta integration for Home Assistant", "domain": "neovolta", "etag_repository": "W/\"870611d9483acd4ab85c92877ad81970747cd5ae6461bac5c5701b7027af7da5\"", "last_updated": "2023-04-15T23:57:41Z", "stargazers_count": 1, "topics": ["battery-management-system", "neovolta", "solar-battery"], "last_fetched": 1695553588.068184, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "320324937": {"repository_manifest": {"name": "Veolia", "hacs": "0.24.0", "homeassistant": "0.115.0", "country": "FR"}, "full_name": "tetienne/veolia-custom-component", "authors": ["@tetienne"], "category": "integration", "description": "Home Assistant custom component to retrieve information from Veolia ", "domain": "veolia", "etag_repository": "W/\"767313284359c40282a32afff7f5a46f69499805e7d464bbe41c4bfe6657790d\"", "last_updated": "2023-01-27T16:18:19Z", "stargazers_count": 6, "topics": ["home-assistant-component", "veolia"], "last_fetched": 1695554176.469226, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "577981941": {"repository_manifest": {"name": "Panasonic Eolia HA component", "homeassistant": "0.110.0"}, "full_name": "avolmensky/panasonic_eolia", "authors": ["@avolmensky"], "category": "integration", "description": "Panasonic Eolia component for Home Assistant", "domain": "panasonic_eolia", "etag_repository": "W/\"90555bb3d9bfa3aaa4feb64a39ad8808860e95a07f26c52da65b762f560a720c\"", "last_updated": "2022-12-15T05:07:17Z", "stargazers_count": 2, "topics": ["eolia", "panasonic"], "last_fetched": 1695553588.680078, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "379688863": {"repository_manifest": {"name": "Thermal Vision", "country": "CA", "homeassistant": "2021.4", "render_readme": true}, "full_name": "TheRealWaldo/thermal", "authors": ["@TheRealWaldo"], "category": "integration", "description": "Thermal Vision Sensor and Camera for Home Assistant", "domain": "thermal_vision", "etag_repository": "W/\"396887d04fe87d8175ab4de499d7507b0026bdd5668c415fd3955999a021f36c\"", "last_updated": "2023-09-04T15:27:42Z", "stargazers_count": 48, "topics": ["homeassistant-custom-component", "thermal-camera"], "last_fetched": 1695554177.505688, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "296028613": {"repository_manifest": {"name": "D-Link Presence / device_Tracker", "render_readme": true}, "full_name": "ayavilevich/homeassistant-dlink-presence", "authors": ["@ayavilevich"], "category": "integration", "description": "A D-Link AP/router device tracker for Home Assistant", "domain": "dlink_presence", "etag_repository": "W/\"76d7d999e5e5d073ba5b6cc46cdc84b99b32e28368df0ea26b2a7cfbf73f779c\"", "last_updated": "2021-08-09T11:14:30Z", "stargazers_count": 9, "topics": ["d-link", "dlink", "presence-detection"], "last_fetched": 1695553589.191018, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "620909192": {"repository_manifest": {"name": "Cryptoinfo Advanced", "render_readme": true, "homeassistant": "2022.11.0"}, "full_name": "TheHolyRoger/hass-cryptoinfo", "authors": ["@heyajohnny", "@TheHolyRoger"], "category": "integration", "description": "Provides Home Assistant sensors for all cryptocurrencies supported by CoinGecko", "domain": "cryptoinfo_advanced", "etag_repository": "W/\"b48f3baed9983fda2c4b8b72eedd05218dc79eea71ef39246a5002b06d076ddc\"", "last_updated": "2023-05-21T22:10:24Z", "stargazers_count": 2, "topics": ["bitcoin", "cryptocurrency"], "last_fetched": 1695554177.423657, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "352169259": {"repository_manifest": {"name": "Neerslag App", "render_readme": true, "country": ["NL", "BE"]}, "full_name": "aex351/home-assistant-neerslag-app", "authors": ["@aex351"], "category": "integration", "description": "Neerslag app for Home Assistant. All-in-one package (Sensors + Card).", "domain": "neerslag", "etag_repository": "W/\"313a6a32ba9eaa42bc56320653184c6012e56223a8a2cde580b3768faab8d321\"", "last_updated": "2022-07-08T17:26:32Z", "stargazers_count": 43, "last_fetched": 1695553572.075856, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250866164": {"repository_manifest": {"name": "Event sensor", "render_readme": true, "homeassistant": "2023.8.0"}, "full_name": "azogue/eventsensor", "authors": ["@azogue"], "category": "integration", "description": "HomeAssistant custom sensor to track specific events", "domain": "eventsensor", "etag_repository": "W/\"a4e46790bf41251cf74dbe4b22d70e017f52f8cb4ac51c8ee9fedb28a997f9d0\"", "last_updated": "2023-09-05T10:28:11Z", "stargazers_count": 84, "last_fetched": 1695553589.416673, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "496755553": {"repository_manifest": {"name": "Raspberry Pi 1-Wire via sysbus", "homeassistant": "2022.5.0"}, "full_name": "thecode/ha-onewire-sysbus", "authors": ["@thecode"], "category": "integration", "description": "Home Assistant 1-Wire via sysbus", "domain": "onewire_sysbus", "etag_repository": "W/\"84eb99945797d02510c652c64f105e12b6fc205fb4a0655517cb59709a235eea\"", "last_updated": "2023-09-23T18:00:05Z", "stargazers_count": 21, "topics": ["1-wire", "raspberry-pi"], "last_fetched": 1695554176.872056, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334523683": {"repository_manifest": {"name": "Teufel Raumfeld", "zip_release": true, "filename": "teufel_raumfeld.zip"}, "full_name": "B5r1oJ0A9G/teufel_raumfeld", "authors": ["@B5r1oJ0A9G"], "category": "integration", "description": "Integration for Teufel smart speaker (aka Raumfeld Multiroom) into https://www.home-assistant.io/.", "domain": "teufel_raumfeld", "downloads": 342, "etag_repository": "W/\"dd254463a35112f59f37bc5a4f59ceb1d2fca52557cf647f8bb1e7703a5092d2\"", "last_updated": "2023-08-25T17:39:18Z", "stargazers_count": 21, "topics": ["hassfeld", "multiroom", "multiroom-audio", "raumfeld", "smart-speaker", "teufel"], "last_fetched": 1695553589.552621, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454951296": {"repository_manifest": {"name": "Raspberry Pi GPIO", "homeassistant": "2022.7.0"}, "full_name": "thecode/ha-rpi_gpio", "authors": ["@thecode"], "category": "integration", "description": "Home Assistant Raspberry Pi GPIO Integration", "domain": "rpi_gpio", "etag_repository": "W/\"b1dd453a4b807bf8d0fd0fad3737b4b483646bf8ad36006e4a83d26af4a6b88d\"", "last_updated": "2023-09-22T18:44:18Z", "stargazers_count": 124, "topics": ["iot", "raspberry-pi", "rpi-gpio"], "last_fetched": 1695554177.137816, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237695750": {"repository_manifest": {"name": "OpenNEM (AU) Data", "country": "AU"}, "full_name": "bacco007/sensor.opennem", "authors": ["@bacco007"], "category": "integration", "description": "OpenNEM Sensor for Home Assistant", "domain": "opennem", "etag_repository": "W/\"ea474bbbe4fffcda67a54d36c985f35d56a3e121b1b11cdf6692bc63d6e0f6fc\"", "last_updated": "2023-09-08T23:56:08Z", "stargazers_count": 11, "topics": ["opennem"], "last_fetched": 1695553589.542628, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "239339530": {"repository_manifest": {"name": "RAD Hoekschewaard Afval Kalender", "render_readme": true, "country": ["NL"], "homeassistant": "0.100.0"}, "full_name": "Johnwulp/rad-afval", "authors": ["@johnwulp"], "category": "integration", "description": "Home Assisant sensor component for RAD Hoekschewaard Afval Kalender", "domain": "rad-afval", "etag_repository": "W/\"dcf26ef802e9b849b5414fe76bb705ec9efd16940e10d4a164c90a7ed11ef9e6\"", "last_updated": "2022-02-03T19:08:50Z", "stargazers_count": 3, "last_fetched": 1695554092.234089, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265059207": {"repository_manifest": {"name": "ThermIQ MQTT", "hacs": "0.24.0", "homeassistant": "2022.01", "render_readme": true}, "full_name": "ThermIQ/thermiq_mqtt-ha", "authors": ["@thermiq"], "category": "integration", "description": "Home Assistant integration of ThermIQ-MQTT, providing control and logging of Thermia heatpumps ", "domain": "thermiq_mqtt", "etag_repository": "W/\"77c9636c2a72ec8a2608fd267fe3cb052c341f7fe9791e69a52b8024cef4fdf7\"", "last_updated": "2023-07-02T18:17:23Z", "stargazers_count": 19, "topics": ["bergvarme", "danfoss", "dhp", "diplomat", "g2", "g3", "ha", "heatpump", "optimum", "thermal-pump", "thermia", "thermiq", "thermiq-mqtt", "varmepump"], "last_fetched": 1695554178.196108, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229519365": {"repository_manifest": {"name": "WaterNSW Real Time Data", "country": "AU"}, "full_name": "bacco007/sensor.waternsw", "authors": ["@bacco007"], "category": "integration", "description": "Home Assistant Sensor for WaterNSW Real Time Data", "domain": "waternsw", "etag_repository": "W/\"5df3422eae9ab437d81a9dad600521237d31a3c0148cf4fc352f3fb8edb21460\"", "last_updated": "2022-06-10T08:04:57Z", "stargazers_count": 6, "last_fetched": 1695553589.495485, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "121891488": {"repository_manifest": {"name": "Lennox iComfort WiFi Thermostat Integration", "homeassistant": "2021.4.0"}, "full_name": "thevoltagesource/LennoxiComfort", "authors": ["@thevoltagesource"], "category": "integration", "description": "Home Assistant custom component for controlling Lennox iComfort WiFi and AirEase Comfort Sync thermostats.", "domain": "myicomfort", "etag_repository": "W/\"7e38b6b065e684295e352ec4dcf41520225353501c1bef09b5b9f560516a8923\"", "last_updated": "2023-07-31T03:05:39Z", "stargazers_count": 28, "topics": ["icomfort", "lennox", "thermostat"], "last_fetched": 1695554178.303889, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "537793361": {"repository_manifest": {"name": "MyJDownloader Card", "filename": "myjdownloader-card.js"}, "full_name": "Nyaran/myjdownloader-card", "category": "plugin", "description": "This Lovelace custom card displays downloads information provided by the MyJDownloader Integration", "downloads": 791, "etag_repository": "W/\"741c5e2d0dbe4654c4ed74a146f1f11a17b17ddd1e5420a12f177b08282bf762\"", "last_updated": "2023-09-19T03:18:09Z", "stargazers_count": 4, "topics": ["hacs-custom", "jdownloader", "myjdownloader"], "last_fetched": 1695553551.965518, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "474172189": {"repository_manifest": {"name": "Anycubic 3D Printer", "country": "US", "homeassistant": "2022.3"}, "full_name": "adamoutler/anycubic-homeassistant", "authors": ["@adamoutler"], "category": "integration", "description": "Home assistant integration for Anycubic Printers. ", "domain": "anycubic_wifi", "etag_repository": "W/\"397d4c9c35996a76b721d3a55b6af82a985050f2044711d799a8209e11431640\"", "last_updated": "2023-08-22T20:43:11Z", "stargazers_count": 7, "topics": ["3d-printing"], "last_fetched": 1695553571.881189, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "282688934": {"repository_manifest": {"name": "EVA II PRO WiFi Midea Inventor Dehumidifier custom integration", "homeassistant": "0.96.0"}, "full_name": "barban-dev/homeassistant-midea-dehumidifier", "authors": ["@barban-dev"], "category": "integration", "description": "Home Assistant Custom Integration for EVA II PRO WiFi Smart Dehumidifier appliance by Midea/Inventor.", "domain": "midea_dehumidifier", "etag_repository": "W/\"19518d0a2c9fa7a4605fedef281568e480d3c7fd9aab75b355efc29f291edb85\"", "last_updated": "2022-01-31T20:14:41Z", "stargazers_count": 56, "topics": ["dehumidifier", "eva-ii-pro-wifi", "internet-of-things", "inventor", "iot", "midea"], "last_fetched": 1695553589.548499, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "491066500": {"repository_manifest": {"name": "Robonomics", "render_readme": true}, "full_name": "airalab/homeassistant-robonomics-integration", "authors": ["@airalab"], "category": "integration", "description": "Remote control all Home Assistant devices through Robonomics blockchain", "domain": "robonomics", "etag_repository": "W/\"24767c164f1ae87200a5d169918444896ff2ba882f6cddb1b6306c1a4ed0efcb\"", "last_updated": "2023-09-11T14:02:01Z", "stargazers_count": 4, "topics": ["blockchain", "iot", "robonomics"], "last_fetched": 1695553573.378637, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403123516": {"repository_manifest": {"name": "Ecowater Softener", "render_readme": true}, "full_name": "barleybobs/homeassistant-ecowater-softener", "authors": ["@barleybobs"], "category": "integration", "description": "A Homeassistant custom component to integrate Ecowater water softeners", "domain": "ecowater_softener", "etag_repository": "W/\"9948e79cefae2506fe563f35f174956fd505fa614762131b128dc597a2e76ee3\"", "last_updated": "2023-03-25T07:26:21Z", "stargazers_count": 21, "topics": ["ecowater"], "last_fetched": 1695553589.564937, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "572278409": {"repository_manifest": {"filename": "irrigationprogram.zip", "name": "IrrigationProgram Custom Component", "render_readme": true, "zip_release": true}, "full_name": "petergridge/Irrigation-V5", "authors": ["@petergridge"], "category": "integration", "description": "Irrigation custom component for Home Assistant", "domain": "irrigationprogram", "downloads": 510, "etag_repository": "W/\"408ee8559e2db61a904db67fbe84bc3b3373945af7e4f9ffb48cbdad743d9491\"", "last_updated": "2023-09-18T09:11:06Z", "stargazers_count": 39, "topics": ["irrigation"], "last_fetched": 1695554140.274469, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "504664392": {"repository_manifest": {"name": "PowUnity BikeTrax", "render_readme": true}, "full_name": "basilfx/homeassistant-biketrax", "authors": ["@basilfx"], "category": "integration", "description": "Custom component for the PowUnity BikeTrax integration for Home Assistant.", "domain": "biketrax", "etag_repository": "W/\"f05bf86e0d5048e58db08d931816dcb9d1046de156cd26e288730abd4cded97e\"", "last_updated": "2023-09-11T10:24:21Z", "stargazers_count": 4, "topics": ["biketrax", "powunity"], "last_fetched": 1695553590.053978, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325962977": {"repository_manifest": {"name": "EMSC Earthquake RSS Feed", "hacs": "1.6.0", "homeassistant": "2021.12.2"}, "full_name": "msekoranja/emsc-hacs-repository", "authors": ["@msekoranja"], "category": "integration", "description": "EMSC Home Assistant Integration", "domain": "emscrss", "etag_repository": "W/\"948e5fc0cbf904bb632d51f3d6601755c8268afcac0f9460a8a3b9cc9cfb6852\"", "last_updated": "2023-07-26T18:58:47Z", "stargazers_count": 3, "last_fetched": 1695554126.206409, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "610297310": {"repository_manifest": {"name": "SickGear", "render_readme": true, "homeassistant": "2023.3.0"}, "full_name": "thisisthetechie/home-assistant-sickgear", "authors": ["@thisisthetechie"], "category": "integration", "description": "An Integration to allow Home Assistant and SickGear to be the best of friends", "domain": "sickgear", "etag_repository": "W/\"c0a9f83d556a3ec5034a9460815ff9b5d53a4c3cd99798aa7dd676377e2cfa99\"", "last_updated": "2023-09-18T17:09:40Z", "stargazers_count": 1, "topics": ["home-assistant-integration", "sickgear"], "last_fetched": 1695554178.212657, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "290261325": {"repository_manifest": {"name": "Adaptive Lighting", "render_readme": true, "homeassistant": "2022.11.0"}, "full_name": "basnijholt/adaptive-lighting", "authors": ["@basnijholt", "@RubenKelevra", "@th3w1zard1", "@protyposis"], "category": "integration", "description": "Adaptive Lighting custom component for Home Assistant", "domain": "adaptive_lighting", "etag_repository": "W/\"b5e7462a27f5a726d5729d20f40cc53eef1a0ea18d66462a3ee2435002904553\"", "last_updated": "2023-09-23T17:19:33Z", "stargazers_count": 1196, "topics": ["adaptive-lighting", "automation", "hue", "iot", "lights", "sunrise", "sunset", "zigbee"], "last_fetched": 1695553590.473424, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194140521": {"repository_manifest": {"name": "browser_mod", "homeassistant": "2023.4.0"}, "full_name": "thomasloven/hass-browser_mod", "category": "integration", "description": "\ud83d\udd39 A Home Assistant integration to turn your browser into a controllable entity and media player", "domain": "browser_mod", "etag_repository": "W/\"9c1d9b3a2e4de4b6aceda0f1b55b26f7bf06198fbfd41552c09d482523f4b225\"", "last_updated": "2023-07-25T05:52:38Z", "stargazers_count": 1040, "last_fetched": 1695554178.935048, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "287318591": {"repository_manifest": {"name": "Husqvarna Automower", "homeassistant": "2023.7.0", "render_readme": true, "zip_release": true, "filename": "husqvarna_automower.zip"}, "full_name": "Thomas55555/husqvarna_automower", "authors": ["@Thomas55555"], "category": "integration", "description": "Custom component for Home Assistant to monitor and control your Husqvarna Automower", "domain": "husqvarna_automower", "downloads": 1187, "etag_repository": "W/\"97094bd5889b5fecc7df306e73abd9501817e15b68f3e546c057ca553d0b81d0\"", "last_updated": "2023-09-16T22:30:49Z", "stargazers_count": 89, "topics": ["husqvarna-automower"], "last_fetched": 1695554178.859237, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "181480967": {"repository_manifest": {}, "full_name": "basschipper/homeassistant-generic-hygrostat", "authors": ["@basschipper"], "category": "integration", "description": "Generic Hygrostat for Home Assistant", "domain": "generic_hygrostat", "etag_repository": "W/\"fc311245810e362799b9b258f87255a2f37c6f8652d1cddc6bc80cb7211efa2e\"", "last_updated": "2023-06-08T05:18:12Z", "stargazers_count": 68, "last_fetched": 1695553590.654324, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "537001731": {"repository_manifest": {"name": "Facebook Messenger", "render_readme": true}, "full_name": "emes30/facebook_messenger", "authors": ["@emes30"], "category": "integration", "description": "Home Assistant custom integration for Facebook Messenger.", "domain": "facebook_messenger", "etag_repository": "W/\"f59a50429525da9ad72d5c86bcf691f633b064545ec6d2918717e88bd1af676f\"", "last_updated": "2022-09-26T21:07:38Z", "stargazers_count": 11, "topics": ["facebook", "images", "messenger"], "last_fetched": 1695553636.104031, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200897141": {"repository_manifest": {"name": "lovelace_gen", "homeassistant": "2021.4.0"}, "full_name": "thomasloven/hass-lovelace_gen", "category": "integration", "description": "\ud83d\udd39 Improve the lovelace yaml parser for Home Assistant", "domain": "lovelace_gen", "etag_repository": "W/\"5cb73581a63f3d85e796743be10e10ad578966441e128fb3fca03a32214e8903\"", "last_updated": "2022-10-20T21:24:20Z", "stargazers_count": 177, "last_fetched": 1695554179.284645, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544910198": {"repository_manifest": {"name": "WaterNSW WaterInsights", "render_readme": true, "country": ["AU"], "homeassistant": "2022.9"}, "full_name": "battlemoose/waternsw-waterinsights-ha", "authors": ["@battlemoose"], "category": "integration", "description": "A Home Assistant integration to fetch NSW dam level and capacity data from the WaterNSW WaterInsights API", "domain": "waterinsights", "etag_repository": "W/\"24da4edd75c034e55db1967afccbf59e71eaed44d9044e6270281bff6666acb5\"", "last_updated": "2022-11-27T22:31:47Z", "stargazers_count": 1, "topics": ["australia", "dam", "nsw", "water"], "last_fetched": 1695553591.306267, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "607766615": {"repository_manifest": {"name": "HAM Radio Propagation", "country": "IT", "render_readme": true, "homeassistant": "2022.4"}, "full_name": "emics/ham_radio_propagation", "authors": ["@emics"], "category": "integration", "description": "Custom Integration that allows Home Assistant to receive information on Radio Propagation based on solar conditions and the degree of refraction of the Ionosphere. It also allows you to know the status for the different HF frequency bands and the maximum usable frequency through hundreds of stations installed on earth.", "domain": "ham_radio_propagation", "downloads": 10, "etag_repository": "W/\"2e8073051f967f6e2ef0976e602bf654baead1f3dcc2b00b002cb0e3041844a8\"", "last_updated": "2023-06-15T13:29:25Z", "stargazers_count": 27, "topics": ["assistant", "ham-radio", "home"], "last_fetched": 1695553636.257135, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "157618389": {"repository_manifest": {"name": "fontawesome", "render_readme": true, "homeassistant": "2021.11.0b0"}, "full_name": "thomasloven/hass-fontawesome", "category": "integration", "description": "\ud83d\udd39 Use icons from fontawesome in home-assistant", "domain": "fontawesome", "etag_repository": "W/\"6a284baa9a65b4a2ffdb7bc91bdcb669c9a4018df2f512ca8fdc479d6c5e96c2\"", "last_updated": "2023-01-07T11:46:00Z", "stargazers_count": 228, "last_fetched": 1695554179.185282, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "579801670": {"repository_manifest": {"name": "JellyFish Lighting", "zip_release": true, "filename": "hass-jellyfish-lighting.zip"}, "full_name": "bdunn44/hass-jellyfish-lighting", "authors": ["@bdunn44"], "category": "integration", "description": "A Jellyfish Lighting integration for Home Assistant", "domain": "jellyfish_lighting", "downloads": 96, "etag_repository": "W/\"3c98d2adbbc916cfa4026e67dedafef479d4f5e3605325bfd9056709aaadffd0\"", "last_updated": "2023-05-24T21:34:01Z", "stargazers_count": 6, "topics": ["assistant", "home", "jellyfish", "led", "led-controller", "led-strips", "lighting"], "last_fetched": 1695553591.623424, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319401286": {"repository_manifest": {"name": "Rademacher HomePilot Bridge", "zip_release": true, "filename": "rademacher.zip", "country": "PT", "homeassistant": "2021.12.8", "render_readme": true}, "full_name": "peribeir/homeassistant-rademacher", "authors": ["@peribeir"], "category": "integration", "description": "This custom integration provides access to Rademacher Devices connected to a HomePilot (or Start2Smart) bridge.", "domain": "rademacher", "downloads": 1013, "etag_repository": "W/\"4ea88941c7e98e69df866ce9c73e171c0967f01df5da5e2fdd39a57ab23c00f4\"", "last_updated": "2023-09-05T20:06:35Z", "stargazers_count": 37, "topics": ["homepilot", "iot", "rademacher"], "last_fetched": 1695554139.689443, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "586363416": {"repository_manifest": {"name": "Mushroom - Better Sliders", "filename": "mushroom.js", "homeassistant": "2023.7.0", "render_readme": true}, "full_name": "phischdev/lovelace-mushroom-better-sliders", "category": "plugin", "description": "Fork of Mushroom Cards - For better touch control of light sliders \ud83c\udf44", "downloads": 10018, "etag_repository": "W/\"e75eff5ce67aed3c329db642bc16c87224ba8a580d09a821513ed7f2b4a32a56\"", "last_updated": "2023-07-11T13:23:20Z", "stargazers_count": 17, "topics": ["card", "mushroom", "sliders", "touch"], "last_fetched": 1695553553.526084, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "254203764": {"repository_manifest": {"name": "Bunq balance sensor", "render_readme": true}, "full_name": "ben8p/home-assistant-bunq-balance-sensors", "authors": ["@BSantalucia"], "category": "integration", "description": "Home assistant custom component to provide monetary account balance sensors for Bunq", "domain": "bunq", "etag_repository": "W/\"b3918a01d6959fe610bd7f8b2ba4efc4d8536231615fc4c1a62643b3a3b72c4f\"", "last_updated": "2023-08-08T17:25:05Z", "stargazers_count": 7, "topics": ["bunq", "bunq-api"], "last_fetched": 1695553591.543423, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202220932": {"repository_manifest": {}, "full_name": "thomasloven/hass-favicon", "category": "integration", "description": "\ud83d\udd39 Change the favicon of your Home Assistant instance", "domain": "favicon", "etag_repository": "W/\"80a3522006a44f9551f5b15bf1725e778a37a22bdaccc648c49e7e8396399b55\"", "last_updated": "2022-11-11T01:08:24Z", "stargazers_count": 90, "last_fetched": 1695554178.756207, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "363203831": {"repository_manifest": {"name": "SureHA", "content_in_root": true, "render_readme": true}, "full_name": "benleb/sureha", "authors": ["@benleb"], "category": "integration", "description": "SureHA \ud83d\udc3e monitor & control your Sure Petcare devices via Home Assistant", "domain": "sureha", "etag_repository": "W/\"b9f2bff6f36dc71ecc5e6f2397ec3f58b68bf8d9cd960ff0f0861840558679fa\"", "last_updated": "2021-09-20T15:35:49Z", "stargazers_count": 16, "topics": ["surepet", "surepetcare", "surepy"], "last_fetched": 1695553591.706234, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "368653916": {"repository_manifest": {"name": "MOOX-Track", "render_readme": true}, "full_name": "moox-it/hass-moox-track", "authors": ["@moox-it"], "category": "integration", "description": "MOOX-Track Custom Component for HASS (hass-moox-track) is a custom component that connects your MOOX Track devices to Home Assistant as \"Device Trackers\"", "domain": "moox_track", "etag_repository": "W/\"edc50449bbde708244a8401f8d5927f6088aebf2b1f789f596f601dc5297d7e0\"", "last_updated": "2022-08-29T11:36:27Z", "stargazers_count": 1, "topics": ["device", "gps", "moox", "track", "tracker"], "last_fetched": 1695554125.124822, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "488091347": {"repository_manifest": {"name": "2minersInfo", "render_readme": true, "homeassistant": "0.100.0"}, "full_name": "ThomasPrior/2minersInfo", "authors": ["@thomasprior"], "category": "integration", "description": "Provides data from 2miners.com on a specified miner.", "domain": "2minersinfo", "etag_repository": "W/\"0a0507a1704749543b4029ab482a1fe0f645c3ff589eda358b3bd0fc52ce0dc2\"", "last_updated": "2022-05-24T18:49:52Z", "stargazers_count": 4, "topics": ["2miners", "2miners-api", "miner", "statistics"], "last_fetched": 1695554179.529158, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "301509152": {"repository_manifest": {"name": "Novus 300 Bus", "render_readme": true}, "full_name": "BenPru/novus300_Rs485", "authors": ["@BenPru"], "category": "integration", "description": "Home Assistant HACS component to readout values from a Paul Novus 300 ventilation system", "domain": "novus300bus", "etag_repository": "W/\"b3f1e80011efdb0a86885f3c2f777ddf06f77d5cbd34e131a01fe22183e1cd3d\"", "last_updated": "2023-01-30T22:06:47Z", "stargazers_count": 6, "last_fetched": 1695553591.644243, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "398601732": {"repository_manifest": {"name": "FlexpoolInfo", "render_readme": true, "homeassistant": "0.100.0"}, "full_name": "ThomasPrior/FlexpoolInfo", "authors": ["@thomasprior"], "category": "integration", "description": "Provides data from Flexpool.io on a specified miner.", "domain": "flexpoolinfo", "etag_repository": "W/\"a54b2bb2d264d354526844793a5f02366655108ad0e8888e98efffc7f61d3f33\"", "last_updated": "2022-11-05T14:35:14Z", "stargazers_count": 7, "topics": ["flexpool", "flexpool-api", "miner", "statistics"], "last_fetched": 1695554179.635688, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "137655647": {"repository_manifest": {}, "full_name": "bertbert72/HomeAssistant_VirginTivo", "authors": ["@bertbert72"], "category": "integration", "description": "HomeAssistant component for control of Virgin Media Tivo boxes", "domain": "virgintivo", "etag_repository": "W/\"049fe2aca4500144e8dbdb858f58d0469a46f13e835535272e42d044901cac6e\"", "last_updated": "2023-01-25T21:43:05Z", "stargazers_count": 28, "last_fetched": 1695553591.684371, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "523827471": {"repository_manifest": {"name": "Systemair SAVE Connect Integration", "homeassistant": "2022.8.3", "render_readme": true}, "full_name": "perara/systemair-save-connect", "authors": ["@perara"], "category": "integration", "description": "Systemair SAVE Connect: custom integration for Home Assistant", "domain": "systemair", "etag_repository": "W/\"8e2210d39ee7959dc11f69c487e4f19f0189e986f708ca9b688f3c59dcd5c07b\"", "last_updated": "2022-08-15T18:38:52Z", "stargazers_count": 5, "topics": ["systemair", "ventilation"], "last_fetched": 1695554139.257495, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "162808336": {"repository_manifest": {"name": "Lightwave RF"}, "full_name": "bigbadblunt/homeassistant-lightwave2", "authors": ["@bigbadblunt"], "category": "integration", "description": "Lightwave RF custom component for Home Assistant. Requires generation 2 (\"Link Plus\") hub, but will control both generation 1 (\"Connect Series\") and generation 2 (\"Smart Series\") devices.", "domain": "lightwave2", "etag_repository": "W/\"74b9679e786e1c7b3b5cd880d0e68b9940a577f50463811a77a4479bdf370e1f\"", "last_updated": "2023-09-16T06:06:28Z", "stargazers_count": 37, "topics": ["lightwave", "lightwaverf"], "last_fetched": 1695553591.989189, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "635072820": {"repository_manifest": {"name": "T-Smart thermostat"}, "full_name": "pdw-mb/tsmart_ha", "authors": ["@pdw-mb"], "category": "integration", "description": "Support for Tesla T-Smart thermostats in Home Assistant", "domain": "t_smart", "etag_repository": "W/\"390cec74d78ce1cccb516ffa8e37e9a61d37af172d14645243385bbb314a5c0d\"", "last_updated": "2023-09-05T22:14:07Z", "stargazers_count": 4, "topics": ["t-smart"], "last_fetched": 1695554139.202193, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256292682": {"repository_manifest": {"name": "Battery State Card / Entity Row", "filename": "battery-state-card.js", "render_readme": true}, "full_name": "maxwroc/battery-state-card", "category": "plugin", "description": "Battery state card for Home Assistant", "downloads": 41472, "etag_repository": "W/\"b1d131e6a72aa5c82012bd39f08312cf1bba6f873bd51e9d6673e55cdb580adc\"", "last_updated": "2023-06-05T15:58:12Z", "stargazers_count": 554, "topics": ["battery", "lovelace-custom-card"], "last_fetched": 1695553549.476402, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356033332": {"repository_manifest": {"name": "Crypto Tracker", "render_readme": true}, "full_name": "BigNocciolino/CryptoTracker", "authors": ["@BigNocciolino"], "category": "integration", "description": "Integration for Home Assistant to implement a crypto tracking system", "domain": "cryptostate", "etag_repository": "W/\"bfe41a4dc8b70bb23eca5902c78d454f85cd7f72826b43e5cf0681343d2d4380\"", "last_updated": "2023-04-03T14:47:22Z", "stargazers_count": 24, "topics": ["automation", "currency", "tracker"], "last_fetched": 1695553592.331835, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "251020820": {"repository_manifest": {"name": "Nespresso Ble coffee machine"}, "full_name": "tikismoke/home-assistant-nespressoble", "authors": ["@Tikismoke"], "category": "integration", "description": "NESPRESSO ble Home Assistant custom componenets and also a 2MQTT script", "domain": "nespresso", "etag_repository": "W/\"e3fb4be712a53b9286d312c7afe9c5cde5ce845da436a025a89598225a3480ba\"", "last_updated": "2023-03-04T12:20:10Z", "stargazers_count": 35, "topics": ["nespresso", "nespresso-ble"], "last_fetched": 1695554180.398957, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236146080": {"repository_manifest": {"name": "Solaredge Modbus", "homeassistant": "2023.9.2"}, "full_name": "binsentsu/home-assistant-solaredge-modbus", "authors": ["@binsentsu"], "category": "integration", "description": "Home assistant Component for reading data locally from Solaredge inverter through modbus TCP", "domain": "solaredge_modbus", "etag_repository": "W/\"4e3e7ff4b51d1a1c80692c79be987b3cc93fe73554ef9aa904f93493ce7ad1b0\"", "last_updated": "2023-09-16T08:53:27Z", "stargazers_count": 194, "topics": ["modbus", "modbus-tcp", "solaredge", "solaredge-inverter"], "last_fetched": 1695553592.774267, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "472497355": {"repository_manifest": {"name": "Energi Data Service", "render_readme": true, "homeassistant": "2023.3.0", "zip_release": true, "filename": "energidataservice.zip", "country": ["DK", "SE", "NO", "FI", "EE", "LV", "LT", "FR", "NL", "BE", "AT", "DE", "LU"]}, "full_name": "MTrab/energidataservice", "authors": ["@MTrab"], "category": "integration", "description": "Fetches spot prices from Energi Data Service", "domain": "energidataservice", "downloads": 1534, "etag_repository": "W/\"52b36ab5182c89774d3e755e19151804151cd7430976f3fc2f9f480d854351bf\"", "last_updated": "2023-09-18T06:43:54Z", "stargazers_count": 111, "topics": ["energi", "spotprice", "statistics"], "last_fetched": 1695554128.06866, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237102126": {"repository_manifest": {"name": "Warsaw ZTM Information", "country": "PL", "homeassistant": "0.100.0"}, "full_name": "peetereczek/ztm", "authors": ["@kabturek", "@peetereczek"], "category": "integration", "description": "Home Assistant (hass.io) custom component for Warsaw public transport", "domain": "ztm", "etag_repository": "W/\"2353a6be55541c7fa9fa04f6ab250a988354406d64f07fe97129f823011abed4\"", "last_updated": "2022-02-02T11:15:20Z", "stargazers_count": 8, "last_fetched": 1695554139.266214, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582464471": {"repository_manifest": {"name": "OralB_ble", "homeassistant": "2022.11.0"}, "full_name": "bkbilly/oralb_ble", "authors": ["@bkbilly"], "category": "integration", "description": "\ud83e\udea5 Integrates OralB Bluetooth Toothbrushes", "domain": "oralb_ble", "etag_repository": "W/\"51c49fd60b7efff8264ca40f2004fe26d9c64ead04683a72277dca99dd0e60f4\"", "last_updated": "2023-01-06T07:45:15Z", "stargazers_count": 2, "topics": ["bluetooth", "oralb"], "last_fetched": 1695553592.76186, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "391413239": {"repository_manifest": {"name": "Teletask", "homeassistant": "0.109.0"}, "full_name": "Tiemooowh/homeassistant-teletask", "authors": ["@tiemooowh"], "category": "integration", "description": "Teletask (DoIP) Integration for Home Assistant Comunity Store (HACS)", "domain": "teletask", "etag_repository": "W/\"8a17fb134bf210c81924751fd12e87450fcd222471cf05e7bb95b8ec9223577f\"", "last_updated": "2023-02-06T13:38:38Z", "stargazers_count": 3, "topics": ["domotics", "homeassistant-custom-component", "teletask"], "last_fetched": 1695554181.247027, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "609302851": {"repository_manifest": {"name": "TPMS_ble", "homeassistant": "2022.11.0"}, "full_name": "bkbilly/tpms_ble", "authors": ["@bkbilly"], "category": "integration", "description": "\ud83c\udfcd\ufe0f Home Assistant custom integration for Tire Pressure sensors", "domain": "tpms_ble", "etag_repository": "W/\"de457c56e88deeb0e1a6df7495b589d4f35676bfcd7b13492be33f9e10a6afc3\"", "last_updated": "2023-04-05T12:15:32Z", "stargazers_count": 9, "topics": ["bluetooth-low-energy", "tire-pressure", "tpms"], "last_fetched": 1695553593.440672, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "554898014": {"repository_manifest": {"name": "Fusion Solar", "render_readme": true}, "full_name": "tijsverkoyen/HomeAssistant-FusionSolar", "authors": ["@tijsVerkoyen"], "category": "integration", "description": "Integrate FusionSolar into your Home Assistant.", "domain": "fusion_solar", "etag_repository": "W/\"7cb0a45b05415b17b248cdc0b44f420ba2eb6f0ac7a16e9f8e73778fd43837ca\"", "last_updated": "2023-09-20T13:42:10Z", "stargazers_count": 70, "topics": ["fusionsolar", "huawei"], "last_fetched": 1695554180.608581, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "311536795": {"repository_manifest": {"hacs": "1.6.0", "name": "Frigate", "homeassistant": "2022.4.5"}, "full_name": "blakeblackshear/frigate-hass-integration", "authors": ["@blakeblackshear"], "category": "integration", "description": "Frigate integration for Home Assistant", "domain": "frigate", "etag_repository": "W/\"62c0e46d72d24f98d5c594275823f6e76ae61f02e18bee4b66570feacc21bf04\"", "last_updated": "2023-09-23T22:28:56Z", "stargazers_count": 469, "topics": ["ai", "camera", "frigate", "nvr", "object-detection"], "last_fetched": 1695553594.044053, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261496794": {"repository_manifest": {"name": "Plcbus integration"}, "full_name": "tikismoke/home-assistant-plcbus", "authors": ["@Tikismoke"], "category": "integration", "description": "a plcbus custom somponents for HomeAssistant", "domain": "plcbus", "etag_repository": "W/\"72ca565146ac199226143ae35192b455a023cb8056e05b6c4cfe8d8b99e062b0\"", "last_updated": "2023-01-02T22:17:56Z", "stargazers_count": 2, "topics": ["plcbus"], "last_fetched": 1695554180.85539, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "488086721": {"repository_manifest": {"name": "Platinum Weather Card", "hacs": "1.26.0", "render_readme": true, "hide_default_branch": true}, "full_name": "Makin-Things/platinum-weather-card", "category": "plugin", "description": "This is a fully customisable weather card for Home Assistant with a graphical configuration.", "downloads": 12435, "etag_repository": "W/\"34349c726c8c617143ab69d39f313cc9574ef674e13bdcd415fa4bd4c9506d45\"", "last_updated": "2023-09-11T21:14:39Z", "stargazers_count": 100, "topics": ["frontend", "weather", "weather-forecast"], "last_fetched": 1695553547.661006, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443297453": {"repository_manifest": {"name": "hasslife", "country": "CN", "render_readme": true}, "full_name": "Blear/HassLife", "authors": ["@Blear"], "category": "integration", "description": "\u5929\u732b\u7cbe\u7075\u3001\u5c0f\u7231\u540c\u5b66\u63a7\u5236HomeAssistant\u8bbe\u5907\u548c\u5c5e\u6027\u4e0a\u62a5\u67e5\u8be2", "domain": "hasslife", "etag_repository": "W/\"2b7f7a949575e52cc13a3a4da9665788c3c2444cf850f09dc5e385fccb9560cb\"", "last_updated": "2023-04-11T11:05:27Z", "stargazers_count": 96, "topics": ["miiot", "tmall", "tmall-genie"], "last_fetched": 1695553593.787047, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "585709486": {"repository_manifest": {"name": "Remeha Home", "homeassistant": "2022.12.0", "render_readme": true, "country": "NL"}, "full_name": "msvisser/remeha_home", "authors": ["@msvisser"], "category": "integration", "description": "Remeha Home integration for Home Assistant", "domain": "remeha_home", "etag_repository": "W/\"fcdaef0ae99e810e3bbe1db26a84644d8a1527ce5c1c243fc5d03acd16236bab\"", "last_updated": "2023-09-24T07:07:06Z", "stargazers_count": 32, "topics": ["home-assistant-component", "home-assistant-integration", "remeha", "remeha-home"], "last_fetched": 1695554127.354041, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203592862": {"repository_manifest": {"name": "USR-R16 16\u8def\u7f51\u7edc\u7ee7\u7535\u5668", "render_readme": true, "homeassistant": "2022.7.5", "country": ["CN"]}, "full_name": "blindlight86/HA_USR-R16", "authors": ["@blindlight"], "category": "integration", "description": "USR-R16 integration for Home Assistant", "domain": "usr_r16", "etag_repository": "W/\"8566f134365c29972385ed34f41e3dcf03d3d34f5a1b475c150346d32006f029\"", "last_updated": "2022-07-31T19:41:14Z", "stargazers_count": 8, "topics": ["relays"], "last_fetched": 1695553593.681726, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "498861412": {"repository_manifest": {"name": "Aquanta", "filename": "aquanta.zip", "hacs": "1.6.0", "homeassistant": "2023.3.0", "render_readme": true, "zip_release": true}, "full_name": "bmcclure/ha-aquanta", "authors": ["@bmcclure"], "category": "integration", "description": "An unofficial Aquanta water heater controller integration for Home Assistant", "domain": "aquanta", "downloads": 159, "etag_repository": "W/\"9e4c34d0b0068c4d01f296c8d396806eb31d1ed2acc1ad38adf4b498242b36c9\"", "last_updated": "2023-08-14T15:38:51Z", "stargazers_count": 5, "topics": ["hacs-custom", "home-assistant-integration"], "last_fetched": 1695553593.775815, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "580805288": {"repository_manifest": {"name": "N\u00e5r kommer posten", "country": ["NO"]}, "full_name": "BobTheShoplifter/HomeAssistant-Posten", "authors": ["@BobTheShoplifter"], "category": "integration", "description": "Posten integrasjon som trigger dagen n\u00e5r posten kommer: https://www.posten.no/levering-av-post", "domain": "posten", "etag_repository": "W/\"aacc94aa19002ade1b8b1b630d01603634b4cfa4f608e75e2de38097d75d7b06\"", "last_updated": "2023-07-02T21:11:13Z", "stargazers_count": 30, "topics": ["posten", "posten-packages"], "last_fetched": 1695553593.822403, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "597539627": {"repository_manifest": {"name": "Cielo Home", "homeassistant": "2023.0.0"}, "full_name": "bodyscape/cielo_home", "authors": ["@bodyscape"], "category": "integration", "description": "Integration with Cielo Home", "domain": "cielo_home", "etag_repository": "W/\"6903a11ab50efe91a69d7fcc76feb38b52a379fa5259ea2f6ff9bb3748d347f8\"", "last_updated": "2023-09-14T12:25:11Z", "stargazers_count": 31, "topics": ["cielo", "thermostat"], "last_fetched": 1695553594.402827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "296946072": {"repository_manifest": {"homeassistant": "0.115.0", "name": "Kodi Recently Added Media", "render_readme": true}, "full_name": "boralyl/kodi-recently-added", "authors": ["@boralyl"], "category": "integration", "description": "Custom component to feed recently added tv shows and movies to the custom card \"Upcoming Media Card\" for Home Assistant. ", "domain": "kodi_recently_added", "etag_repository": "W/\"3ffddb023ae1f5e2110e7bbe7542518ece55d8a772063e1a62b6f9c035cc126d\"", "last_updated": "2021-12-19T23:48:44Z", "stargazers_count": 6, "topics": ["kodi"], "last_fetched": 1695553594.497433, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250688607": {"repository_manifest": {"homeassistant": "0.108.0", "name": "Steam Wishlist", "render_readme": true}, "full_name": "boralyl/steam-wishlist", "authors": ["@boralyl"], "category": "integration", "description": "A home assistant integration that monitors games on sale on your Steam wishlist.", "domain": "steam_wishlist", "etag_repository": "W/\"97ed2a7248a28ba3a07f33ececd0b96c8eb4d7786d87603f55359b2ae68345d7\"", "last_updated": "2023-05-19T00:47:45Z", "stargazers_count": 18, "topics": ["steam"], "last_fetched": 1695553596.169964, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "186605347": {"repository_manifest": {"name": "Bosch thermostat", "homeassistant": "2022.9.0", "render_readme": true}, "full_name": "bosch-thermostat/home-assistant-bosch-custom-component", "authors": ["@pszafer"], "category": "integration", "description": "HA custom component for Bosch thermostats", "domain": "bosch", "etag_repository": "W/\"02530c831f8f6529b6feec066d36de15a304c8f035246be40b25fe6d37fb5082\"", "last_updated": "2023-09-24T07:24:37Z", "stargazers_count": 158, "topics": ["bosch", "bosch-thermostat", "buderus", "nefit", "sensors", "thermostat", "xmpp"], "last_fetched": 1695553595.13363, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264796130": {"repository_manifest": {"name": "Pandora CAS card", "render_readme": true}, "full_name": "turbulator/pandora-cas-card", "category": "plugin", "description": "Pandora lovelace card for Home Assistant", "etag_repository": "W/\"138d879e44403be11829ba13f54b2181de61f16a5f7db352bc01aa9fa62876e9\"", "last_updated": "2020-10-03T15:41:00Z", "stargazers_count": 4, "topics": ["lovelace-custom-card", "pandora"], "last_fetched": 1695553567.248133, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "419449609": {"repository_manifest": {"name": "First Bus", "render_readme": true}, "full_name": "BottlecapDave/HomeAssistant-FirstBus", "authors": ["@bottlecapdave"], "category": "integration", "description": "Unofficial Home Assistant integration for determining the time to the next First bus", "domain": "first_bus", "etag_repository": "W/\"b6b5ee72af90b865c956c3195719d80625ab27019b6d77f1c9bf8db45292a0b7\"", "last_updated": "2023-08-12T08:32:48Z", "stargazers_count": 3, "topics": ["bus-arrival", "first-bus"], "last_fetched": 1695553595.62281, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "401282856": {"repository_manifest": {"name": "Octopus Energy", "render_readme": true, "homeassistant": "2023.6.0"}, "full_name": "BottlecapDave/HomeAssistant-OctopusEnergy", "authors": ["@bottlecapdave"], "category": "integration", "description": "Unofficial Home Assistant integration for interacting with Octopus Energy", "domain": "octopus_energy", "etag_repository": "W/\"32659f1d638e1b07acf070ac85fe4a3ffb7bf7f5c8e578fe81e91935019e8c9c\"", "last_updated": "2023-09-24T09:03:05Z", "stargazers_count": 289, "topics": ["energy-consumption", "octopus-energy"], "last_fetched": 1695553596.096997, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "302895020": {"repository_manifest": {"name": "Github Flexi Card / Entity Row", "filename": "github-flexi-card.js", "render_readme": true}, "full_name": "maxwroc/github-flexi-card", "category": "plugin", "description": "Github stats card for Home Assistant", "downloads": 794, "etag_repository": "W/\"adb4edc5a5df874ac284d2cd5374cf07d4bb9e725a91baced132f6df273dc1af\"", "last_updated": "2022-02-08T20:54:42Z", "stargazers_count": 23, "topics": ["card", "flexi", "github", "github-flexi-card"], "last_fetched": 1695553549.262241, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259900367": {"repository_manifest": {"name": "AbfallPlus", "country": "DE", "render_readme": true}, "full_name": "Bouni/abfallplus", "authors": ["@bouni"], "category": "integration", "description": "AbfallPlus component for Home Assistant ", "domain": "abfallplus", "etag_repository": "W/\"3f0583b84bdc46f560b9787112fa7ea705070b2496e29dc84eedb1ccdf23a420\"", "last_updated": "2023-06-09T10:56:03Z", "stargazers_count": 10, "topics": ["abfallplus"], "last_fetched": 1695553595.9191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259865897": {"repository_manifest": {"name": "DRK Blutspende", "country": "DE", "render_readme": true}, "full_name": "Bouni/drkblutspende", "authors": ["@bouni"], "category": "integration", "description": "DRK Blutspende component for Home Assistant ", "domain": "drkblutspende", "etag_repository": "W/\"3d5ade584ebbc57c13431a2d1b6989eb027f8d3f2a737f739333715b8fdbbd56\"", "last_updated": "2023-06-09T14:19:36Z", "stargazers_count": 4, "topics": ["blutspende", "drk"], "last_fetched": 1695553595.937898, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260169906": {"repository_manifest": {"name": "Luxtronik", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "Bouni/luxtronik", "authors": ["@bouni"], "category": "integration", "description": "Luxtronik integration for Home Assistant", "domain": "luxtronik", "etag_repository": "W/\"c15930575f35b433a0587c68b1a527dbf4526c1415f300b54b877cb79d273f36\"", "last_updated": "2023-09-11T06:05:43Z", "stargazers_count": 66, "topics": ["luxtronik", "luxtronik2"], "last_fetched": 1695553596.153616, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192086849": {"repository_manifest": {}, "full_name": "bouwew/sems2mqtt", "authors": ["bouwew"], "category": "integration", "description": "GoodWe SEMS MQTT-componenent for Home Assistant", "domain": "sems2mqtt", "etag_repository": "W/\"9b6de1fd6d8fae3c5829c09a23e11df1b6e8974b8dfbfe760aeb9ad97ee67c45\"", "last_updated": "2023-03-31T18:23:01Z", "stargazers_count": 8, "last_fetched": 1695553596.251968, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190260955": {"repository_manifest": {"name": "MIND Mobility", "country": "NL", "render_readme": true}, "full_name": "bramkragten/mind", "authors": ["@bramkragten"], "category": "integration", "description": "Add support for Mind Mobility vehicles in Home Assistant", "domain": "mind", "etag_repository": "W/\"e03514647c0e3cd1a48bf9b187265172a79255efe20e5870aaa15db9efb33ee6\"", "last_updated": "2021-05-07T13:37:44Z", "stargazers_count": 9, "last_fetched": 1695553596.495096, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373845609": {"repository_manifest": {"name": "Powercalc", "zip_release": true, "filename": "powercalc.zip", "homeassistant": "2022.11.0"}, "full_name": "bramstroker/homeassistant-powercalc", "authors": ["@bramstroker"], "category": "integration", "description": "Custom component to calculate estimated power consumption of lights and other appliances", "domain": "powercalc", "downloads": 4766, "etag_repository": "W/\"b67e709e2a59db483ef4402ba7ebf79ee05ce43ee41cf3b9c85cdd50cd323850\"", "last_updated": "2023-09-19T16:51:32Z", "stargazers_count": 714, "topics": ["consumption", "energy-monitor", "hue-lights", "metering", "power"], "last_fetched": 1695553597.278072, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "507038522": {"repository_manifest": {"name": "NAD Multi-room Audio Controller", "render_readme": true}, "full_name": "Breina/nad_controller", "authors": ["@Breina"], "category": "integration", "description": "NAD Multi-room Audio Controller HomeAssistant Integration", "domain": "nad_controller", "etag_repository": "W/\"ac6aa1d30353227a5e5b3677b5b38e9f6541b9e1113fa4a9e6e3b000c89a2659\"", "last_updated": "2022-08-14T14:56:11Z", "topics": ["amplifier-controller"], "last_fetched": 1695553597.268496, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "517429793": {"repository_manifest": {"name": "EcoStruxure PowerTag Link Gateway", "render_readme": true}, "full_name": "Breina/PowerTagGateway", "authors": ["@Breina"], "category": "integration", "description": "EcoStruxure PowerTag Link Gateway", "domain": "powertag_gateway", "etag_repository": "W/\"cf4ecd2fcf9c4fa65f944a5c9e579fc5dcc069df53ab861155b21319681433bf\"", "last_updated": "2023-07-30T17:53:59Z", "stargazers_count": 6, "topics": ["ecostruxure", "energy-monitor", "schneider-electric"], "last_fetched": 1695553597.744537, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "284006518": {"repository_manifest": {"name": "Bonaire MyClimate", "render_readme": "true", "homeassistant": "2021.12.0"}, "full_name": "bremor/bonaire_myclimate", "authors": ["@bremor"], "category": "integration", "description": "Reverse engineered implementation of the Bonaire MyClimate app.", "domain": "bonaire_myclimate", "etag_repository": "W/\"d0b00c8018bc87f307b2049d9aa56e081878a2d75cf26b075b76cd6f458cc8e9\"", "last_updated": "2022-08-08T20:42:19Z", "stargazers_count": 17, "topics": ["bonaire", "bonaire-myclimate", "climate", "myclimate"], "last_fetched": 1695553598.255487, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307586942": {"repository_manifest": {"name": "Bureau of Meteorology", "render_readme": "true", "homeassistant": "2022.7.0b0"}, "full_name": "bremor/bureau_of_meteorology", "authors": ["@bremor,@makin-things"], "category": "integration", "description": "Custom component for retrieving weather information from the Bureau of Meteorology.", "domain": "bureau_of_meteorology", "etag_repository": "W/\"da694227822df89193512279d2ee88c0bae049bf7625c7f35e08b13cc5006bd3\"", "last_updated": "2023-09-17T07:47:03Z", "stargazers_count": 128, "topics": ["bom", "bureau", "forecast", "meteorology", "observations", "weather", "weather-information"], "last_fetched": 1695553598.373967, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "282427417": {"repository_manifest": {"name": "Public Transport Victoria", "render_readme": "true"}, "full_name": "bremor/public_transport_victoria", "authors": ["@bremor"], "category": "integration", "description": "Custom component for retrieving departure times for Public Transport Victoria.", "domain": "public_transport_victoria", "etag_repository": "W/\"58a90d21d8a815999403ecc8a8fbfd2701142b08b596248005f46bc9af0e97bb\"", "last_updated": "2022-06-20T00:23:49Z", "stargazers_count": 24, "topics": ["australia", "bus", "ptv", "public", "train", "tram", "transport", "victoria"], "last_fetched": 1695553598.269774, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "455217528": {"repository_manifest": {"name": "systemd notifier", "render_readme": true}, "full_name": "brianegge/home-assistant-sdnotify", "authors": ["@brianegge"], "category": "integration", "description": "systemd service for Home Assistant", "domain": "sdnotify", "etag_repository": "W/\"ab8c1a667ddfddca068b0700977b27325380245ca43213f4bdd9a5789e4195ca\"", "last_updated": "2022-05-29T10:15:45Z", "stargazers_count": 14, "topics": ["systemd"], "last_fetched": 1695553598.151644, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "186765704": {"repository_manifest": {"homeassistant": "0.100.0", "render_readme": true}, "full_name": "nervetattoo/banner-card", "category": "plugin", "description": "A fluffy banner card for Home Assistant \ud83e\udd70", "downloads": 36664, "etag_repository": "W/\"d0b5301f84451e2ed53c60d700fd09e31169077741b2a879e8b21c63234febd4\"", "last_updated": "2023-02-03T04:52:53Z", "stargazers_count": 555, "last_fetched": 1695553551.112042, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "427867835": {"repository_manifest": {"name": "WeatherFlow Integration", "homeassistant": "2023.1.0"}, "full_name": "briis/hass-weatherflow", "authors": ["@briis"], "category": "integration", "description": "Home Assistant Integration for WeatherFlow Stations", "domain": "weatherflow", "etag_repository": "W/\"e6fe29b3895e285a5793dc04fe364c94ca455a3a77da7059423e2359a05f112d\"", "last_updated": "2023-08-31T08:06:36Z", "stargazers_count": 67, "topics": ["python3", "weatherflow"], "last_fetched": 1695553598.555268, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262854926": {"repository_manifest": {"name": "Meteobridge Datalogger Integration", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "briis/meteobridge", "authors": ["@briis"], "category": "integration", "description": "The Meteobridge Integration adds support for retrieving current weather data from a Meteobridge datalogger connected to a local Weather Station.", "domain": "meteobridge", "etag_repository": "W/\"e3b42c789557e52acfd549be72b7f100225631359cc72c80b0b6402a48c459b1\"", "last_updated": "2023-02-24T16:31:12Z", "stargazers_count": 9, "topics": ["meteobridge"], "last_fetched": 1695553598.616991, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250498561": {"repository_manifest": {"name": "SecuritySpy for Home Assistant", "render_readme": true, "homeassistant": "2021.11.0"}, "full_name": "briis/securityspy", "authors": ["@briis"], "category": "integration", "description": "SecuritySpy Integration for Home Assistant with Camera Streams and Motion Detection", "domain": "securityspy", "etag_repository": "W/\"b0fb951ea410c84b01782f35a3d3f764386e3e91ad4f96de515363a0aa353a2c\"", "last_updated": "2023-02-04T08:17:26Z", "stargazers_count": 29, "topics": ["home-assistant-component", "securityspy"], "last_fetched": 1695553598.74634, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "258712314": {"repository_manifest": {"name": "Fan Speed Control", "render_readme": "true"}, "full_name": "iml885203/HA-FanSpeedControl", "category": "python_script", "description": "A python script for Home Assistant that control fan speed with Fan Template and Broadlink.", "etag_repository": "W/\"ff953c1c68cbe41e088bf4143953e413e708b541c45efe13a2aba81c569b647c\"", "last_updated": "2022-10-19T06:24:44Z", "stargazers_count": 16, "last_fetched": 1695553508.00948, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261970408": {"repository_manifest": {"name": "Weatherbit Weather Forecast for Home Assistant", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "briis/weatherbit", "authors": ["@briis"], "category": "integration", "description": "The weatherbit integration adds support for the weatherbit.io web service as a source for meteorological data for your location.", "domain": "weatherbit", "etag_repository": "W/\"709800766b9934eae2ee50478ffa8b177635b118f206358c117a1a4477675464\"", "last_updated": "2023-05-05T11:28:33Z", "stargazers_count": 35, "topics": ["meteorological-data", "weather-forecast", "weatherbit"], "last_fetched": 1695553599.617948, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "447307317": {"repository_manifest": {"name": "Holidays", "zip_release": true, "filename": "holidays.zip", "homeassistant": "2022.12.0"}, "full_name": "bruxy70/Holidays", "authors": ["@bruxy70"], "category": "integration", "description": "\ud83d\udcc5 Custom Home Assistant integration for public holidays - also used for garbage_collection integration to automatically move scheduled events that fall on a public holiday (by an automation blueprint)", "domain": "holidays", "downloads": 4074, "etag_repository": "W/\"ce818b96f5067270f22baae6988da6387dbc36190aebf5c61c0a2596e3cfc6c6\"", "last_updated": "2023-08-15T07:19:23Z", "stargazers_count": 38, "topics": ["calendar", "country-holidays", "garbage-collection", "holidays", "public-holidays"], "last_fetched": 1695553599.649387, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441294260": {"repository_manifest": {"name": "Auto Areas", "render_readme": true}, "full_name": "c-st/auto_areas", "authors": ["@c-st"], "category": "integration", "description": "\ud83e\udd16 A custom component for Home Assistant which automates your areas.", "domain": "auto_areas", "downloads": 3, "etag_repository": "W/\"134384363fc31939f5d7227a4ca58e019281cd7a9541ea9fdd58542ea3daee20\"", "last_updated": "2023-09-18T04:54:13Z", "stargazers_count": 19, "last_fetched": 1695553599.880211, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "136170574": {"repository_manifest": {"name": "Photo captcha on Ezviz Camera for Home Assistant", "render_readme": true, "country": "CN", "homeassistant": "2022.11.0"}, "full_name": "c1pher-cn/homeassistan-ezviz", "authors": ["@_\u5c0f\u611a_"], "category": "integration", "description": "HomeAssistant \u8424\u77f3\uff08ezviz\uff09\u7ec4\u4ef6", "domain": "myezviz", "etag_repository": "W/\"05bda3db63916f05c32ae5f8eb5ec4777973bf4d34699a61d97b43550a3918af\"", "last_updated": "2023-08-09T03:29:04Z", "stargazers_count": 53, "topics": ["camera", "ezviz", "myezviz"], "last_fetched": 1695553600.189375, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201445202": {"repository_manifest": {"name": "ACV garbage collection sensor", "render_readme": true, "country": ["NL"]}, "full_name": "Cadsters/acv-hass-component", "authors": ["@floriskruisselbrink", "@Cadsters", "@aritmeester"], "category": "integration", "description": "\ud83d\uddd1\ufe0f Integration for bin/waste collection by acv-groep", "domain": "acv", "etag_repository": "W/\"77f695888762ef9e5c5e6194de3c7b5998349adb56cefc814916644f061dca22\"", "last_updated": "2022-05-30T13:17:35Z", "stargazers_count": 4, "topics": ["acv-groep", "python3", "trash", "waste"], "last_fetched": 1695553600.54628, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262017793": {"repository_manifest": {"name": "Switchbot_press", "render_readme": true}, "full_name": "cagnulein/switchbot_press", "authors": ["@cagnulein"], "category": "integration", "description": "This is a simple project that manage the Switchbot ( https://amzn.to/3dnliBD ) that has only the \"press\" ability in Home Assistant.", "domain": "switchbot_press", "etag_repository": "W/\"f5fd75677c55d1435d179b906050aaf300540a985a1c154253121fa086a6d840\"", "last_updated": "2022-07-11T07:32:35Z", "stargazers_count": 13, "topics": ["python3", "switchbot"], "last_fetched": 1695553600.322828, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180464361": {"repository_manifest": {"name": "Travel Time Card", "render_readme": true, "filename": "dist/travel-time-card.js"}, "full_name": "ljmerza/travel-time-card", "category": "plugin", "description": "show travel times for you travel time sensors", "downloads": 1647, "etag_repository": "W/\"622af55f1e9dd28d24624072759553db203afad0ca7f2b622ba916424f963f86\"", "last_updated": "2023-07-11T01:04:26Z", "stargazers_count": 25, "last_fetched": 1695553545.057446, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207620142": {"repository_manifest": {"name": "DPC sensor", "country": ["IT"]}, "full_name": "caiosweet/Home-Assistant-custom-components-DPC-Alert", "authors": ["@caiosweet"], "category": "integration", "description": "Italy Meteo-hydro alert and hydrogeological phenomena Civil Protection (Protezione Civile). In this custom component you can find the vigilance Bulletin and the Bulletin of national hydrogeological and hydraulic criticalities. They allow to check whether in your current location there will be criticalities/warnings related to weather-hydrogeological and hydraulic phenomena. Weather forecasts for civil protection purposes differs from the classic \"weather forecasts\". They highlight potentially harmful situations to people or things. This component was created for personal purposes, in order to be able to monitor the Civil Protection site and check for important updates. I hope it will be useful to you.", "domain": "dpc", "etag_repository": "W/\"7c27eea37502fa0117fd0e0e5dba2227dafc8c2f34ce253d4d5fff16b927a72a\"", "last_updated": "2023-09-05T02:20:09Z", "stargazers_count": 38, "topics": ["dpc", "protezionecivile"], "last_fetched": 1695553600.661613, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307503425": {"repository_manifest": {"name": "INGV Earthquakes", "zip_release": true, "filename": "ingv_centro_nazionale_terremoti.zip", "country": ["IT"], "render_readme": true, "homeassistant": "2023.02.0"}, "full_name": "caiosweet/Home-Assistant-custom-components-INGV", "authors": ["@exxamalte", "@caiosweet"], "category": "integration", "description": "INGV - National Institute of Geophysics and Volcanology [Istituto Nazionale di Geofisica e Vulcanologia] Terremoti Italia.", "domain": "ingv_centro_nazionale_terremoti", "downloads": 634, "etag_repository": "W/\"b76cff45f9a60164550c492fb49c14f8745e3bce351a89efc7315ffe628b25f5\"", "last_updated": "2023-09-05T10:49:25Z", "stargazers_count": 16, "topics": ["assistant", "geofisica", "home", "ingv", "terremoti", "vulcanologia"], "last_fetched": 1695553600.806766, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319343045": {"repository_manifest": {"name": "UltraSync", "hacs": "0.24.0", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "caronc/ha-ultrasync", "authors": ["@caronc"], "category": "integration", "description": "Interlogix ZeroWire and Hills ComNav (NX-595E) UltraSync Security Panel for Integration for Home Assistant Comunity Store (HACS)", "domain": "ultrasync", "etag_repository": "W/\"217b7e5abb40dd6dee9b172bfe5bbae4cc7cabda37de66905521f8e296629a1b\"", "last_updated": "2023-09-11T05:08:33Z", "stargazers_count": 19, "topics": ["comnav", "homeassistant-custom-component", "interlogix", "nx-595e", "security", "ultrasync"], "last_fetched": 1695553600.766311, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "520644302": {"repository_manifest": {"name": "TAM Card", "render_readme": true, "filename": "tam-card.js"}, "full_name": "MathisAlepis/lovelace-tam-card", "category": "plugin", "description": "Montpellier Lovelace TAM card displays next two crossing times of the tramway or bus in Montpellier, France.", "downloads": 179, "etag_repository": "W/\"4a091a13d3335f9b03909b68a0420ecb12d4190a9013c6f0634c0955c49a3c3f\"", "last_updated": "2022-09-14T11:20:07Z", "stargazers_count": 6, "topics": ["lovelace-custom-card", "montpellier", "public-transport", "tam"], "last_fetched": 1695553548.876362, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229140999": {"repository_manifest": {"name": "go-eCharger", "render_readme": true}, "full_name": "cathiele/homeassistant-goecharger", "authors": ["@cathiele"], "category": "integration", "description": "Home Assistant custom_component for controlling the go-eCharger EV-Charger", "domain": "goecharger", "etag_repository": "W/\"2714c77698ea7ffe552173b3b54a529c40ad1f8c4f05c410a2e69137d3a3a2e9\"", "last_updated": "2023-08-11T15:58:31Z", "stargazers_count": 77, "topics": ["charger", "component", "custom", "go-echarger"], "last_fetched": 1695553600.997829, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "487680971": {"repository_manifest": {"name": "Weather Radar Card", "render_readme": true, "filename": "weather-radar-card.js"}, "full_name": "Makin-Things/weather-radar-card", "category": "plugin", "description": "A rain radar card using the tiled images from RainViewer", "downloads": 19854, "etag_repository": "W/\"9123c7f5505b39021065e92bc2d734c99fc7c035e9e7430c3f85b9ed5cd3ddb0\"", "last_updated": "2022-11-04T00:34:52Z", "stargazers_count": 103, "topics": ["frontend", "home-assistant-config", "meteorology", "radar", "rainviewer", "weather"], "last_fetched": 1695553547.026102, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441942093": {"repository_manifest": {"name": "keyatome", "homeassistant": "2021.12.0"}, "full_name": "jugla/keyatome", "authors": ["@jugla"], "category": "integration", "description": "Home Assistant component to handle key atome (linky) -conso live feature-", "domain": "keyatome", "etag_repository": "W/\"12e4b3cfbbdeb06aa83a7969eb5cba553eb1f4139a4e3a9685f9a13700999eda\"", "last_updated": "2023-05-13T21:37:30Z", "stargazers_count": 20, "topics": ["atome", "keyatome", "linky"], "last_fetched": 1695554096.693114, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "491303842": {"repository_manifest": {"name": "Datetime Card", "render_readme": true}, "full_name": "a-p-z/datetime-card", "category": "plugin", "description": "A minimalistic card for Home Assistant Lovelace UI which shows how many days it has been between any input_datetime and today.", "downloads": 838, "etag_repository": "W/\"350ecb41577214087e303e91830541ba9de75e16318b7f4d2f8aeaf25d8ffd56\"", "last_updated": "2023-09-15T07:37:53Z", "stargazers_count": 15, "topics": ["lovelace-custom-card", "svelte"], "last_fetched": 1695553508.412512, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195438291": {"repository_manifest": {"name": "Nintendo Wishlist", "render_readme": true, "homeassistant": "0.118.5"}, "full_name": "custom-components/sensor.nintendo_wishlist", "authors": ["@boralyl"], "category": "integration", "description": "A sensor that monitors a Nintendo Switch wish list for when games are on sale.", "domain": "nintendo_wishlist", "etag_repository": "W/\"b5d94cd7eee427c217d63f1013c81b6fbef7c2437763923557107ba011529723\"", "last_updated": "2023-06-19T22:02:37Z", "stargazers_count": 14, "topics": ["nintendo-switch"], "last_fetched": 1695553609.985822, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220641275": {"repository_manifest": {"name": "Dark Orange Theme"}, "full_name": "home-assistant-community-themes/dark-orange", "category": "theme", "description": "Dark Orange theme for Home Assistant", "etag_repository": "W/\"295cdd304df0a847968ba1df570b45b0948ff282c64b4a0dc63b81594f6221cd\"", "last_updated": "2023-03-22T19:58:15Z", "stargazers_count": 11, "last_fetched": 1695553498.295739, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334448958": {"repository_manifest": {"name": "bootstrap-grid-card", "render_readme": true}, "full_name": "ownbee/bootstrap-grid-card", "category": "plugin", "description": "Bootstrap grid in Lovelace UI", "downloads": 4042, "etag_repository": "W/\"0fa7727b08653ac7f1f9b87e2e48b18c803d216164e5ecbf542e71e5391eb7c6\"", "last_updated": "2023-04-29T09:22:47Z", "stargazers_count": 34, "topics": ["bootstrap", "bootstrap-grid-card", "card", "grid", "layout"], "last_fetched": 1695553552.853711, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214979604": {"repository_manifest": {"name": "Dark Mint Theme"}, "full_name": "home-assistant-community-themes/dark-mint", "category": "theme", "description": "Another Dark theme for Home Assistant", "etag_repository": "W/\"f408a4d5fc43b4fcb4498ab497bf9ad205f7c24254c77360cfb5297f0ac0029f\"", "last_updated": "2023-03-27T21:57:12Z", "stargazers_count": 4, "last_fetched": 1695553498.283929, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497319128": {"repository_manifest": {"name": "Kiosk Mode", "filename": "kiosk-mode.js", "render_readme": true}, "full_name": "NemesisRE/kiosk-mode", "category": "plugin", "description": "\ud83d\ude48 Hides the Home Assistant header and/or sidebar", "downloads": 12307, "etag_repository": "W/\"bec55efb90000594ee56a49703f1b502e62e699d5fae8707d0445b9673241698\"", "last_updated": "2023-09-08T16:29:26Z", "stargazers_count": 135, "topics": ["customization"], "last_fetched": 1695553550.951233, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236277163": {"repository_manifest": {"name": "Reeder Dark Theme", "render_readme": true}, "full_name": "hekm77/reeder_dark_theme", "category": "theme", "description": "Reeder Dark Theme for Home Assistant", "etag_repository": "W/\"626aea7d0e0fea394f8e9f826a81a00aaf509ec43a9f9ba3e0e64562b8f71c8d\"", "last_updated": "2020-09-18T07:41:54Z", "stargazers_count": 8, "last_fetched": 1695553496.535947, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "154845921": {"repository_manifest": {}, "full_name": "custom-components/sensor.ssh", "authors": ["@jchasey"], "category": "integration", "description": "SSH Generic Sensor", "domain": "ssh", "etag_repository": "W/\"3276b79ceae5c46b8f300270be50f7953a1de0778bbf1dbcf193f89938393fdc\"", "last_updated": "2023-06-20T20:26:28Z", "stargazers_count": 38, "last_fetched": 1695553610.702693, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "437989480": {"repository_manifest": {"name": "Centrometal Boiler Display Card", "render_readme": true, "homeassistant": "2021.11.3", "filename": "centrometal-boiler-card.js"}, "full_name": "9a4gl/lovelace-centrometal-boiler-card", "category": "plugin", "description": "Lovelace Centrometal Boiler Card", "etag_repository": "W/\"21b4dd20c0f509eb2f36c6cd919f5ee634ccbb29acdb66c3d90d828185694fac\"", "last_updated": "2023-09-11T12:35:55Z", "stargazers_count": 2, "topics": ["centrometal", "homeassitant", "pellet", "peltec"], "last_fetched": 1695553508.357342, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203294272": {"repository_manifest": {}, "full_name": "custom-cards/unused-card", "category": "plugin", "description": "All your unused entities in a list", "etag_repository": "W/\"8b714b08507ead23869ffb5ee05a8c0c7f93ae078200b1af038fcc795c9c2115\"", "last_updated": "2023-01-04T07:38:35Z", "stargazers_count": 29, "last_fetched": 1695553521.342218, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "587494301": {"repository_manifest": {"name": "TimBox Remote Control Card", "filename": "timbox-remote-control-card.js", "render_readme": true}, "full_name": "czz/timbox-remote-control-card", "category": "plugin", "description": "TimBox Remote Control card for Home Assistant", "etag_repository": "W/\"c5617c26fc76e23a3d9084d8b16c656c3bb8cf0d885c7383deb0b126017a0aed\"", "last_updated": "2023-02-20T21:12:25Z", "topics": ["remote-control", "tim", "timbox"], "last_fetched": 1695553521.702083, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192835334": {"repository_manifest": {"name": "Lovelace Lock Card", "render_readme": true}, "full_name": "CyrisXD/love-lock-card", "category": "plugin", "description": "Home Assistant Lovelace card to lock entire cards behind passwords or prompts.", "etag_repository": "W/\"4535f668b7376fac6794bc1bdf09064d5c450a81fa8a4df006f0c5f25dd19683\"", "last_updated": "2023-02-20T00:55:00Z", "stargazers_count": 115, "last_fetched": 1695553521.556667, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "254206234": {"repository_manifest": {"name": "PVPC Hourly Pricing Card", "render_readme": true}, "full_name": "danimart1991/pvpc-hourly-pricing-card", "category": "plugin", "description": "Home Assistant Lovelace custom card to use with Spain electricity hourly pricing (PVPC) integration", "downloads": 2112, "etag_repository": "W/\"fcb22d471bf2692908273a34daf7c20ef416eba878c950b1a7b61fcb3886bb1c\"", "last_updated": "2023-07-14T06:51:57Z", "stargazers_count": 69, "topics": ["esios", "graphics", "lovelace-card", "lovelace-custom-card", "pvpc", "ree"], "last_fetched": 1695553522.452252, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "567030726": {"repository_manifest": {"name": "Default Dashboard", "render_readme": true, "filename": "default-dashboard.js"}, "full_name": "daredoes/default-dashboard", "category": "plugin", "description": "Automatically set the default dashboard for all devices for Home Assistant", "downloads": 2195, "etag_repository": "W/\"3f59ca62258ce81a2e7eb02d50bc1b0c07dcd4b9df76a27c35694f216a87b9e1\"", "last_updated": "2023-05-03T07:44:41Z", "stargazers_count": 20, "topics": ["hacs-custom"], "last_fetched": 1695553522.33841, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234961647": {"repository_manifest": {"name": "Climate Mode Entity Row", "filename": "climate-mode-entity-row.js", "render_readme": true}, "full_name": "piitaya/lovelace-climate-mode-entity-row", "category": "plugin", "description": "Climate mode entity for Lovelace", "etag_repository": "W/\"ef375c4651bd828ee437b9657877d078d10fe0807768126fd9e3d6fa4c945923\"", "last_updated": "2022-06-27T07:31:07Z", "stargazers_count": 75, "topics": ["card", "thermostat"], "last_fetched": 1695553553.517019, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "559360809": {"repository_manifest": {"name": "Linked Lovelace", "render_readme": true, "filename": "linked-lovelace-ui.js"}, "full_name": "daredoes/linked-lovelace-ui", "category": "plugin", "description": "Create cards that can be re-used, updated, and handle templated data.", "downloads": 954, "etag_repository": "W/\"7346b081527c04de97d88e707ea668b294cc66f75ce0a03a3b5ac54611bbb582\"", "last_updated": "2023-06-26T23:04:57Z", "stargazers_count": 19, "topics": ["javascript", "typescript"], "last_fetched": 1695553522.782805, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215075805": {"repository_manifest": {"name": "Blue Night Theme"}, "full_name": "home-assistant-community-themes/blue-night", "category": "theme", "description": "Blue Night theme for Home Assistant", "etag_repository": "W/\"7da07f37988cd62ae9a0c5c5a5274ea5c6ecb64496cafbd49442064c8252f7c4\"", "last_updated": "2023-09-23T11:27:55Z", "stargazers_count": 8, "last_fetched": 1695553497.084884, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228627470": {"repository_manifest": {"name": "HVCGroep", "country": "NL"}, "full_name": "cyberjunky/home-assistant-hvcgroep", "authors": ["@cyberjunky"], "category": "integration", "description": ":recycle: :wastebasket: This component fetches garbage pickup dates for parts of The Netherlands using HVC Groep's REST API.", "domain": "hvcgroep", "etag_repository": "W/\"45e0a54c6b209c368abffe0e37d61173482dae39add04d7809bf5fe2294356b6\"", "last_updated": "2022-11-24T21:32:23Z", "stargazers_count": 10, "last_fetched": 1695553612.874473, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209891408": {"repository_manifest": {"name": "Amoled Theme"}, "full_name": "home-assistant-community-themes/amoled", "category": "theme", "description": "Amoled theme for Home Assistant", "etag_repository": "W/\"15eb6c0ed4ed459d607f4bb7205c935c308a0059f54bffb6516e7ac20daa0b21\"", "last_updated": "2023-03-23T02:57:45Z", "stargazers_count": 27, "last_fetched": 1695553496.603349, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "444350375": {"repository_manifest": {"name": "Mushroom", "filename": "mushroom.js", "homeassistant": "2023.7.0", "render_readme": true}, "full_name": "piitaya/lovelace-mushroom", "category": "plugin", "description": "Mushroom Cards - Build a beautiful dashboard easily \ud83c\udf44", "downloads": 37464, "etag_repository": "W/\"411901ce0ff5354feaf4b3dd1798aa4f15dc04d662683dba07d40b6ee4bfd1af\"", "last_updated": "2023-08-30T09:17:09Z", "stargazers_count": 2530, "topics": ["card", "mushroom"], "last_fetched": 1695553554.453342, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228662926": {"repository_manifest": {"name": "Toon Climate", "country": "NL"}, "full_name": "cyberjunky/home-assistant-toon_climate", "authors": ["@cyberjunky"], "category": "integration", "description": "This component provides a climate device for rooted Toon thermostats.", "domain": "toon_climate", "etag_repository": "W/\"2977eb3eaeb83c32baac03089acdd8e1dd6b151ce8a40c7a5c877aab8817829c\"", "last_updated": "2022-11-24T20:30:08Z", "stargazers_count": 27, "last_fetched": 1695553613.574648, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228678807": {"repository_manifest": {"name": "Toon Smart Meter", "country": "NL"}, "full_name": "cyberjunky/home-assistant-toon_smartmeter", "authors": ["@cyberjunky"], "category": "integration", "description": "This component reads and displays sensor values from the meteradapter connected to a rooted Toon thermostat.", "domain": "toon_smartmeter", "etag_repository": "W/\"c251c4df9266076b9452d3bb08743c311e85a8a7e64505138eb415f839f71090\"", "last_updated": "2023-07-10T14:54:22Z", "stargazers_count": 19, "last_fetched": 1695553614.119474, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "361205663": {"repository_manifest": {"name": "Meteoalarm Card", "render_readme": true, "filename": "meteoalarm-card.js"}, "full_name": "MrBartusek/MeteoalarmCard", "category": "plugin", "description": "Meteoalarm, M\u00e9t\u00e9o-France and DWD severe weather warnings card for Home Assistant Lovelace UI \u26c8\ufe0f", "downloads": 2705, "etag_repository": "W/\"c5bae1dca42579c48a680d8973fafafc094c69fb44b83620f2b09ab62fd6bad9\"", "last_updated": "2023-08-22T16:14:45Z", "stargazers_count": 95, "topics": ["deutscher-wetterdienst", "dwd", "lovelace-card", "meteo-france", "meteoalarm", "meteoalarmeu", "nina", "nws", "weather"], "last_fetched": 1695553550.446271, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228690854": {"repository_manifest": {"name": "TTN Gateway Sensor", "country": "NL"}, "full_name": "cyberjunky/home-assistant-ttn_gateway", "authors": ["@cyberjunky"], "category": "integration", "description": "This components reads statistics from a The Things Network Gateway.", "domain": "ttn_gateway", "etag_repository": "W/\"d03e55949ffa2773df66542c39874b4461d846e095b6679037057f3e995be6c6\"", "last_updated": "2021-12-18T16:52:03Z", "stargazers_count": 2, "last_fetched": 1695553613.982364, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "491465538": {"repository_manifest": {"name": "custom-icons", "render_readme": true}, "full_name": "Mariusthvdb/custom-icons", "category": "plugin", "description": "Several custom made and legacy icons, and icons collected all over the internet in 1 set, UI selectable.", "downloads": 6268, "etag_repository": "W/\"ec3c933f38790a55566e72228d2658ec9592a0e4e0ff2c33ba190c730465576c\"", "last_updated": "2023-09-06T15:56:26Z", "stargazers_count": 18, "topics": ["custom", "customization", "icons", "iphone", "light", "shutter", "vacuum"], "last_fetched": 1695553547.254348, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224258177": {"repository_manifest": {"name": "Heatzy", "country": "FR", "homeassistant": "0.109", "render_readme": true}, "full_name": "cyr-ius/hass-heatzy", "authors": ["@cyr-ius"], "category": "integration", "description": "Climate Home Assistant component for Heatzy Pilot", "domain": "heatzy", "etag_repository": "W/\"5c97f92493a10113d312adf1185c559186f0ab9ab14270fcc7cc95001ea31cbd\"", "last_updated": "2023-04-23T12:24:25Z", "stargazers_count": 24, "topics": ["climate", "heatzy"], "last_fetched": 1695553614.255402, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220661494": {"repository_manifest": {"name": "Orange Livebox routeur", "country": "FR", "homeassistant": "0.109", "render_readme": true}, "full_name": "cyr-ius/hass-livebox-component", "authors": ["@cyr-ius"], "category": "integration", "description": "Livebox Component for Home assistant", "domain": "livebox", "etag_repository": "W/\"3b6bb4931c45ed5f7b209011f75168da90e6f9c38e41400e2e677f30689c8b38\"", "last_updated": "2023-08-22T09:34:34Z", "stargazers_count": 41, "topics": ["livebox", "orange"], "last_fetched": 1695553614.339533, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "591644026": {"repository_manifest": {"name": "Google Photos", "hacs": "1.6.0", "homeassistant": "2022.6.0", "render_readme": true, "zip_release": true, "filename": "google_photos.zip", "hide_default_branch": true}, "full_name": "Daanoz/ha-google-photos", "authors": ["@Daanoz"], "category": "integration", "description": "Home Assistant Google Photos integration", "domain": "google_photos", "downloads": 2167, "etag_repository": "W/\"f8b6850d96a98f8353d8b1c8c9d81b1155f0651f1759c87208094a9f7485e7ba\"", "last_updated": "2023-09-13T05:33:30Z", "stargazers_count": 51, "topics": ["google-photos", "home-assistant-integration"], "last_fetched": 1695553614.372228, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195459345": {"repository_manifest": {"name": "Climate Group", "render_readme": true, "homeassistant": "0.96.0"}, "full_name": "daenny/climate_group", "authors": ["@daenny"], "category": "integration", "description": "Home Assistant Climate Group", "domain": "climate_group", "etag_repository": "W/\"8cd5e0a57a3215969054be8f3d7eeaef98e51f5b02b756c70446ea4c688c4cf2\"", "last_updated": "2023-09-20T07:03:33Z", "stargazers_count": 106, "last_fetched": 1695553615.174634, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "650965476": {"repository_manifest": {"name": "Cupra WeConnect", "render_readme": true, "homeassistant": "2022.7.0"}, "full_name": "daernsinstantfortress/cupra_we_connect", "authors": ["@daernsinstantfortress"], "category": "integration", "description": "Cupra integration for Home Assistant", "domain": "cupra_we_connect", "etag_repository": "W/\"20cec78907ddbeb55eb16be7b2e2fdf963db0498b6f4f50f52f0bfee94ecd0c5\"", "last_updated": "2023-09-18T08:29:02Z", "stargazers_count": 18, "topics": ["born", "car", "cupra", "ev"], "last_fetched": 1695553615.134807, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "485895021": {"repository_manifest": {"name": "Blueair Filters", "render_readme": true, "country": ["US"], "homeassistant": "2021.10.0b0"}, "full_name": "dahlb/ha_blueair", "authors": ["@dahlb"], "category": "integration", "description": "Home Assistant Integration for Blueair Class Filters", "domain": "ha_blueair", "etag_repository": "W/\"2922fddf3eb0141e8e9bf786480b2841f1c85e631623567395a718749a8cc5de\"", "last_updated": "2023-09-18T18:08:55Z", "stargazers_count": 8, "topics": ["blueair", "hassio-integration", "python3"], "last_fetched": 1695553615.520674, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265916869": {"repository_manifest": {"name": "Melnor Raincloud", "render_readme": true, "homeassistant": "2021.4.0", "zip_release": true, "filename": "raincloud.zip"}, "full_name": "vanstinator/hass-raincloud", "authors": ["@vanstinator"], "category": "integration", "description": "Melnor Raincloud Home Assistant Integration", "domain": "raincloud", "downloads": 90, "etag_repository": "W/\"104fdc3536fb2782c308f4436d883b470e1da52a60af252428a47e581f7b7d41\"", "last_updated": "2022-05-30T18:58:16Z", "stargazers_count": 6, "topics": ["assistant", "home", "irrigation", "melnor", "raincloud", "sprinkler"], "last_fetched": 1695554190.690025, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "587122619": {"repository_manifest": {"name": "Carrier Infinity Thermostat", "render_readme": true, "country": ["US"], "homeassistant": "2022.01.0b0"}, "full_name": "dahlb/ha_carrier", "authors": ["@dahlb"], "category": "integration", "description": "Carrier Infinity Integration for Home Assistant", "domain": "ha_carrier", "etag_repository": "W/\"3e5ed97d41f5d45a21706ff7e5f6a08e578697ec6ec7f6beda2d8142bc53b971\"", "last_updated": "2023-09-18T19:49:29Z", "stargazers_count": 16, "topics": ["carrier-integration"], "last_fetched": 1695553615.895552, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "634325657": {"repository_manifest": {"name": "GoXLR Utility", "render_readme": true, "zip_release": true, "filename": "goxlr_utility.zip"}, "full_name": "timmo001/homeassistant-integration-goxlr-utility", "authors": ["@timmo001"], "category": "integration", "description": "Home Assistant Integration - GoXLR Utility", "domain": "goxlr_utility", "downloads": 31, "etag_repository": "W/\"89a9fac0ce9dc6c27c6cbdc054ec735190b4174e65b41cc98f4a07bc24c2065b\"", "last_updated": "2023-09-22T11:25:09Z", "stargazers_count": 1, "topics": ["goxlr-utility-api", "home-assistant-integration"], "last_fetched": 1695554183.623773, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "545945955": {"repository_manifest": {"name": "Formula One Card", "filename": "formulaone-card.js", "render_readme": true, "content_in_root": true}, "full_name": "marcokreeft87/formulaone-card", "category": "plugin", "description": "Present the data of Formula One in a pretty way", "etag_repository": "W/\"f35b90beb027c7fd3c2a10225b5c8fb63ae5e378ed35491a9ebc542f1d1ed8f0\"", "last_updated": "2023-09-15T21:09:59Z", "stargazers_count": 97, "topics": ["card", "f1", "formula1", "formulaone", "homeassistant-frontend", "lovelace-custom-card"], "last_fetched": 1695553547.254076, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183499944": {"repository_manifest": {"name": "Tracking Number Card", "render_readme": true, "filename": "dist/tracking-number-card.js"}, "full_name": "ljmerza/tracking-number-card", "category": "plugin", "description": "Show Tracking Numbers from the Email Sensor for Home Assistant", "downloads": 411, "etag_repository": "W/\"543525f0470491479ae877a3f37cc3ef93b7cb64d926db35ccd09d35122ba6d3\"", "last_updated": "2023-07-03T19:02:56Z", "stargazers_count": 24, "last_fetched": 1695553545.04459, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164841067": {"repository_manifest": {}, "full_name": "isabellaalstrom/sensor.krisinformation", "authors": ["@isabellaalstrom"], "category": "integration", "description": "A custom component for Home Assistant to get messages from krisinformation.se", "domain": "krisinformation", "etag_repository": "W/\"3d8d34eec87d56aa3dd70d383b712902aee391141ea6a1f13c50cfea53f2eae6\"", "last_updated": "2021-06-29T18:03:29Z", "stargazers_count": 27, "last_fetched": 1695553666.657199, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "169467285": {"repository_manifest": {"name": "EdgeOS (Ubiquiti)", "homeassistant": "2022.11.0"}, "full_name": "elad-bar/ha-edgeos", "authors": ["@elad-bar"], "category": "integration", "description": "Integration with EdgeOS (Ubiquiti)", "domain": "edgeos", "etag_repository": "W/\"860de9e870d0dc1b01d90eca35185747feee2de8a4b8ace81c7c5b1ab2405f36\"", "last_updated": "2023-08-13T08:46:35Z", "stargazers_count": 120, "topics": ["edgeos"], "last_fetched": 1695553634.152289, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "494545750": {"repository_manifest": {"name": "Peaqhvac", "homeassistant": "2022.10.5", "zip_release": true, "filename": "peaqhvaq.zip", "render_readme": true}, "full_name": "elden1337/hass-peaqhvac", "authors": ["@elden1337"], "category": "integration", "description": "Home Assistant custom component to help hvac-systems stay below peak hourly energy levels and prioritize cheap hours to heat your home.", "domain": "peaqhvac", "etag_repository": "W/\"49472659bd2c82c73f55a8f678de5f545ca8bc225088a39d1c1c0a4d5888ac28\"", "last_updated": "2023-09-18T18:10:15Z", "stargazers_count": 3, "topics": ["nibe", "peak-shaving", "smart-pricing"], "last_fetched": 1695553635.763407, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "142051833": {"repository_manifest": {"name": "Vertical Stack In Card", "render_readme": true, "filename": "vertical-stack-in-card.js"}, "full_name": "ofekashery/vertical-stack-in-card", "category": "plugin", "description": "\ud83d\udcd0 Home Assistant Card: Group multiple cards into a single sleek card.", "etag_repository": "W/\"f475cb145aabbb0e59c6986aaa4771144829b1ead097a295ef02191ef4771ba1\"", "last_updated": "2023-02-22T22:57:19Z", "stargazers_count": 789, "last_fetched": 1695553552.45428, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "357930725": {"repository_manifest": {"name": "Shinobi Video NVR", "homeassistant": "2023.7.0"}, "full_name": "elad-bar/ha-shinobi", "authors": ["@elad-bar"], "category": "integration", "description": "Shinobi Video custom component for HA", "domain": "shinobi", "etag_repository": "W/\"9629432c03ac9a0a830f58ffaf3b5dda9b51d4a426e76489b92531c1c6b8cdc8\"", "last_updated": "2023-08-31T06:57:32Z", "stargazers_count": 44, "topics": ["shinobi"], "last_fetched": 1695553634.209986, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187339794": {"repository_manifest": {"name": "TV Remote Card", "content_in_root": true, "homeassistant": "2022.4.0"}, "full_name": "marrobHD/tv-card", "category": "plugin", "description": "\ud83d\udcfa TV Remote Card", "etag_repository": "W/\"9fddc41ac69277b6873a29822a20cb8a8b248ba41d9ff740677444ee360e13d8\"", "last_updated": "2022-11-15T14:04:23Z", "stargazers_count": 155, "topics": ["homeassistant-tv-card", "lovelace-card", "tv-card"], "last_fetched": 1695553548.220153, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216173358": {"repository_manifest": {"name": "Christmas Theme"}, "full_name": "home-assistant-community-themes/christmas", "category": "theme", "description": "Christmas theme for Home Assistant", "etag_repository": "W/\"f6919ebed3a6ea24c14498535675d0315cef1260af20fcdfc0610ae9fb279c6b\"", "last_updated": "2023-03-27T23:57:09Z", "stargazers_count": 1, "last_fetched": 1695553498.300633, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "619284862": {"repository_manifest": {"name": "Auto generating Mushroom dashboard strategy", "render_readme": true, "filename": "mushroom-strategy.js"}, "full_name": "AalianKhan/mushroom-strategy", "category": "plugin", "description": "A strategy to automatically generate a dashboard using mushroom cards", "downloads": 3373, "etag_repository": "W/\"503b78eb1dde0d396e39344ec4d3212396b6018d7d4a42632a6612e319b0e441\"", "last_updated": "2023-09-21T19:23:44Z", "stargazers_count": 128, "topics": ["mushroom-strategy", "strategy"], "last_fetched": 1695553508.690243, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "238414582": {"repository_manifest": {"name": "Custom Card for Warsaw ZTM Information", "country": "PL", "homeassistant": "0.100.0"}, "full_name": "peetereczek/ztm-stop-card", "category": "plugin", "description": "Custom Lovelace card for Warsaw public transport", "etag_repository": "W/\"ea560636c70016b07b2fffc8e8b2a2d9b3e3172a623e20578e1efeb5e3301e24\"", "last_updated": "2023-01-09T10:38:52Z", "stargazers_count": 5, "last_fetched": 1695553552.79017, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "440617082": {"repository_manifest": {"name": "NYC 311 Public Services Calendar", "render_readme": true}, "full_name": "elahd/ha-nyc311", "authors": ["@elahd"], "category": "integration", "description": "Home Assistant integration for NYC trash collection, school, and alternate side parking schedules.", "domain": "nyc311", "etag_repository": "W/\"c3e260409e20ceb200498fc4e2606110b71234d20594264ec741031ed7c75eac\"", "last_updated": "2023-09-18T18:34:32Z", "stargazers_count": 4, "topics": ["community", "government-data", "nyc", "nyc-opendata"], "last_fetched": 1695553634.380114, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "240900380": {"repository_manifest": {"name": "Entities Script", "render_readme": "true"}, "full_name": "pmazz/ps_hassio_entities", "category": "python_script", "description": "Python script to handle state and attributes of existing sensors and entities", "etag_repository": "W/\"1e22e9b5770ed909d275d8e62688fce0104072c192ed20a381f87f8e905b2893\"", "last_updated": "2021-03-07T22:15:32Z", "stargazers_count": 39, "last_fetched": 1695553508.160565, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236127727": {"repository_manifest": {"name": "Camect Camera Card", "filename": "HACS-camect-custom_card.js"}, "full_name": "pfunkmallone/HACS-camect-custom_card", "category": "plugin", "description": "A custom card which exposes Camect video streams via the Home Assistant Lovelace interface. To use this card, you MUST have already installed the Camect HACS integration.", "etag_repository": "W/\"9276f5a56b5431e82add3eee2a69a91273b6bfacc79a31452a38eed5c7bd2c2a\"", "last_updated": "2022-06-22T04:51:11Z", "stargazers_count": 5, "topics": ["camect"], "last_fetched": 1695553553.204699, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "267558148": {"repository_manifest": {"name": "Custom-ui", "homeassistant": "2021.6.0", "render_readme": true}, "full_name": "Mariusthvdb/custom-ui", "category": "plugin", "description": "Add templates and icon_color to Home Assistant UI", "downloads": 2208, "etag_repository": "W/\"3e10dfcc4e10cb9f781b6d0437cb55a48f14a93d784aeacc5e689c682eb2bd8d\"", "last_updated": "2023-09-08T14:02:38Z", "stargazers_count": 131, "topics": ["customization", "icon-color", "more-info"], "last_fetched": 1695553547.823426, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235943258": {"repository_manifest": {"name": "Hubitat", "country": "US"}, "full_name": "jason0x43/hacs-hubitat", "authors": ["@jason0x43"], "category": "integration", "description": "A Hubitat integration for Home Assistant", "domain": "hubitat", "etag_repository": "W/\"264dedb0e4cdf6f3f93cbf87823e0bb6e0d96b378b9a68739c85d08462b7dcd4\"", "last_updated": "2023-08-10T01:59:59Z", "stargazers_count": 156, "topics": ["hubitat", "maker-api"], "last_fetched": 1695553669.093616, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183989659": {"repository_manifest": {"name": "NHL API"}, "full_name": "JayBlackedOut/hass-nhlapi", "authors": ["@jayblackedout", "@mastermc0"], "category": "integration", "description": "NHL Stats API Integration Into Home Assistant", "domain": "nhl_api", "etag_repository": "W/\"ba255870a5ea5c301eda52eb56c56090a1a268fab0c62c95d04be158a1d256c8\"", "last_updated": "2023-09-22T15:03:18Z", "stargazers_count": 57, "last_fetched": 1695553669.070542, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "472077314": {"repository_manifest": {"name": "World's Air Quality Index", "render_readme": true, "country": ["GB", "US", "PL"]}, "full_name": "pawkakol1/worlds-air-quality-index", "authors": ["@pawkakol1"], "category": "integration", "description": "HACS World's Air Quality Index integration from waqi.info", "domain": "worlds_air_quality_index", "etag_repository": "W/\"e0ae8c7a8382813f81e1c48cba082dec7d7116f5072630104c1aee8a0f60d39b\"", "last_updated": "2023-08-28T15:41:11Z", "stargazers_count": 34, "topics": ["ha", "pollution", "waqi"], "last_fetched": 1695554139.157465, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255270395": {"repository_manifest": {"name": "Stell Blue with Colors Theme"}, "full_name": "home-assistant-community-themes/stell-blue-with-colors", "category": "theme", "description": "Stell Blue with Colors theme for Home Assistant", "etag_repository": "W/\"85d360e158623f3e73a08fececd61ab0cf90d4b5cc716501da05cf40565ef0d6\"", "last_updated": "2023-05-29T08:57:05Z", "stargazers_count": 2, "last_fetched": 1695553500.182727, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "85400693": {"repository_manifest": {"name": "Padavan Tracker", "render_readme": true}, "full_name": "PaulAnnekov/home-assistant-padavan-tracker", "authors": ["@PaulAnnekov"], "category": "integration", "description": "Device tracker component that uses Padavan-based router", "domain": "padavan_tracker", "etag_repository": "W/\"34deb73003b02807f9a4b6fb679c3fe040e8e031523aaa1981dbdd5e8c58747c\"", "last_updated": "2022-05-18T17:01:17Z", "stargazers_count": 43, "topics": ["padavan", "router", "xiaomi"], "last_fetched": 1695554137.788345, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201740996": {"repository_manifest": {"name": "Generate readme", "zip_release": true, "filename": "readme.zip", "homeassistant": "2021.5.0", "hide_default_branch": true, "render_readme": true, "hacs": "0.19.1"}, "full_name": "custom-components/readme", "authors": ["@ludeeus"], "category": "integration", "description": "Use Jinja and data from Home Assistant to generate your README.md file", "domain": "readme", "downloads": 203, "etag_repository": "W/\"4b39c848a5ee47abe0b5e03d153f49125828a2e4a2fd52197e300166d72929bf\"", "last_updated": "2023-01-29T21:10:32Z", "stargazers_count": 24, "topics": ["automation", "jinja", "readme"], "last_fetched": 1695553608.637248, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "647057223": {"repository_manifest": {"name": "Pronote for Home Assistant", "country": "FR"}, "full_name": "delphiki/hass-pronote", "authors": ["@delphiki"], "category": "integration", "description": "Pronote integration for Home Assistant", "domain": "pronote", "etag_repository": "W/\"3219b9150419fbbafc596eee0f6bb0f38980290f95cde0ac988aaf559ac29d82\"", "last_updated": "2023-09-24T09:32:28Z", "stargazers_count": 10, "topics": ["hassio-integration", "pronote"], "last_fetched": 1695553622.942982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "467638459": {"repository_manifest": {"name": "Niko Home Control II", "render_readme": true}, "full_name": "joleys/niko-home-control-II", "authors": ["@filipvh", "@joleys", "@tijsverkoyen"], "category": "integration", "description": "Home Assistant Custom Integration for Niko Home Control II", "domain": "nhc2", "etag_repository": "W/\"3cb0feb871e7c893f9caf1dd0a074c29164d234dde17dd19dc9626607f4d3548\"", "last_updated": "2023-09-19T11:14:29Z", "stargazers_count": 61, "topics": ["automation", "domotics", "niko"], "last_fetched": 1695554092.374474, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255139072": {"repository_manifest": {"name": "Entidade Reguladora dos Servi\u00e7os Energ\u00e9ticos", "country": "PT", "homeassistant": "2023.7.0", "render_readme": true}, "full_name": "dgomes/ha_erse", "authors": ["@dgomes"], "category": "integration", "description": "Home Assistant Custom Component for ERSE", "domain": "erse", "etag_repository": "W/\"fafe65d72597046e993760f398ad18f3b0dce06d316d72f6f1b93f5b105507d1\"", "last_updated": "2023-09-23T22:20:52Z", "stargazers_count": 35, "topics": ["home-assistant-component", "utility-meters"], "last_fetched": 1695553624.810708, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222292912": {"repository_manifest": {}, "full_name": "gcobb321/icloud3", "authors": ["@gcobb321"], "category": "integration", "description": "iCloud3 v3 Prerelease is now available, Enable Beta Versions in HACS. ---- iCloud3 is an advanced iDevice tracker that uses Apple iCloud account and HA Companion App data for presence detection and location based automations.", "domain": "icloud3", "downloads": 11075, "etag_repository": "W/\"9cc3452b4f631c0547a36f8c3a597d19b2cff8c9c57495a6085a315a3f402503\"", "last_updated": "2023-09-24T06:54:08Z", "stargazers_count": 394, "topics": ["device-tracker", "ha-ios", "icloud", "icloud-account", "tracking", "zone", "zones"], "last_fetched": 1695553647.393965, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "445977563": {"repository_manifest": {"name": "Plum ecoMAX boiler controller integration", "homeassistant": "2023.4.0"}, "full_name": "denpamusic/homeassistant-plum-ecomax", "authors": ["@denpamusic"], "category": "integration", "description": "Plum ecoMAX boiler controller integration for Home Assistant.", "domain": "plum_ecomax", "etag_repository": "W/\"382b2e17fe01020e337e87ce33c9f8f8e816c0298f583b5c8c911c7445f42677\"", "last_updated": "2023-09-21T20:07:56Z", "stargazers_count": 20, "topics": ["ecomax", "econet", "heating-controller", "heating-monitoring", "python3"], "last_fetched": 1695553623.18863, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "332651510": {"repository_manifest": {"homeassistant": "2023.1.0", "name": "Baby Buddy", "render_readme": true}, "full_name": "jcgoette/baby_buddy_homeassistant", "authors": ["@jcgoette"], "category": "integration", "description": "This custom integration provides sensors for Baby Buddy API endpoints.", "domain": "babybuddy", "downloads": 4, "etag_repository": "W/\"035db6e06d3a5e56ed2bac1bebe807ef78afc00c071be443a21b8e010f20028e\"", "last_updated": "2023-09-08T12:46:14Z", "stargazers_count": 52, "topics": ["baby", "home-assistant-component", "parents"], "last_fetched": 1695553672.933506, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187201747": {"repository_manifest": {}, "full_name": "jihao/rokid-webhook-hass", "category": "integration", "description": "rokid webhook component for Home Assistant (\u82e5\u742aHA\u7ec4\u4ef6)", "domain": "rokid_webhook", "etag_repository": "W/\"dab3ee102c3eeefcb64a4f6c3cfd475b37d1b7d554b0b25f1d9ac79db2db974f\"", "last_updated": "2022-02-15T08:44:30Z", "stargazers_count": 13, "last_fetched": 1695553677.525114, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245159052": {"repository_manifest": {"name": "Canary"}, "full_name": "jcwillox/lovelace-canary", "category": "plugin", "description": "\ud83d\udc24 Adds many useful extensions to lovelace, such as templating secondary info, stacking within a card and more!", "downloads": 6207, "etag_repository": "W/\"ed7c25aa72f1ab58cca8709c770b56275d71ab74e062fbcdcbac859fbae72a32\"", "last_updated": "2023-09-23T04:25:34Z", "stargazers_count": 71, "topics": ["canary-card", "extensions"], "last_fetched": 1695553539.035201, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "127689312": {"repository_manifest": {"name": "Sinope Neviweb", "filename": false, "render_readme": true, "country": ["CA"], "homeassistant": "0.110.0"}, "full_name": "claudegel/sinope-1", "authors": ["@claudegel"], "category": "integration", "description": "Neviweb Custom Component for Home Assistant to manage devices connected via GT125", "domain": "neviweb", "etag_repository": "W/\"c849c0106b95ba9468324ed3485b67aa6c83b679682e5c76c9caeb5790dded25\"", "last_updated": "2023-03-05T02:59:58Z", "stargazers_count": 23, "topics": ["neviweb", "sinope"], "last_fetched": 1695553603.155583, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223938651": {"repository_manifest": {"name": "Midnight Blue Theme"}, "full_name": "home-assistant-community-themes/midnight-blue", "category": "theme", "description": "Midnight Blue theme for Home Assistant", "etag_repository": "W/\"061caa491a47077ce674313f0450ccabde1824944c1df9d56b133705934e719c\"", "last_updated": "2023-03-27T22:57:02Z", "stargazers_count": 5, "last_fetched": 1695553499.011301, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "589771870": {"repository_manifest": {"name": "Youfone", "render_readme": true, "country": ["BE", "NL"]}, "full_name": "myTselection/youfone_be", "authors": ["@myTselection"], "category": "integration", "description": "Youfone Home Assistant custom component HACS to get Youfone mobile phone subscription and usage details for Belgium and Netherlands.", "domain": "youfone_be", "etag_repository": "W/\"0d32804bbab001978e16ff63b79143abaf896ba219a215ade20da289d50fed27\"", "last_updated": "2023-08-20T15:15:37Z", "stargazers_count": 2, "topics": ["youfone"], "last_fetched": 1695554130.684783, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "337228671": {"repository_manifest": {"name": "Porsche Connect", "hacs": "1.6.0", "render_readme": true, "homeassistant": "0.118.0"}, "full_name": "CJNE/ha-porscheconnect", "authors": ["@cjne"], "category": "integration", "description": "Porsche Connect custom component for Home Assistant", "domain": "porscheconnect", "etag_repository": "W/\"226230cd3290ea57d99d4392bf2b6268358d824994e5d2df198453d0210f2af6\"", "last_updated": "2023-09-11T20:46:24Z", "stargazers_count": 19, "topics": ["porsche"], "last_fetched": 1695553602.909335, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "370997019": {"repository_manifest": {"name": "WebOS Keyboard Card", "content_in_root": true, "filename": "webos-keyboard-card.js", "render_readme": true}, "full_name": "bernikr/lovelace-webos-keyboard-card", "category": "plugin", "description": "Type on your WebOS TV using this lovelace card", "etag_repository": "W/\"d0a513554a52bfe4b44bcdc2ae8c85453f016d4dbbd959c5e70a9e774eb070b3\"", "last_updated": "2021-12-17T14:54:58Z", "stargazers_count": 5, "topics": ["card", "input-method", "keyboard", "remote", "webos"], "last_fetched": 1695553514.552077, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "163446489": {"repository_manifest": {"name": "Entur Card", "render_readme": true, "filename": "entur-card.js"}, "full_name": "jonkristian/entur-card", "category": "plugin", "description": "Home Assistant Lovelace card card for the Entur public transport component.", "etag_repository": "W/\"e7db09be9d76888ab02b50b5167e87675e0639f63ca2d4f12cca55a281ed503d\"", "last_updated": "2023-06-12T10:24:09Z", "stargazers_count": 46, "topics": ["entur", "transportation"], "last_fetched": 1695553539.873782, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366332990": {"repository_manifest": {"name": "Electrolux Wellbeing", "hacs": "1.6.0", "homeassistant": "2021.12.0"}, "full_name": "JohNan/homeassistant-wellbeing", "authors": ["@JohNan"], "category": "integration", "description": "Get the status from your Electrolux devices connected to Wellbeing", "domain": "wellbeing", "downloads": 7, "etag_repository": "W/\"10fa0e7006fdf9d6409063232beaffedb27e4fc280ac4af7707f03f5510e7daa\"", "last_updated": "2023-08-08T16:29:54Z", "stargazers_count": 48, "topics": ["electrolux", "electrolux-wellbeing", "wellbeing"], "last_fetched": 1695554092.49331, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "358962656": {"repository_manifest": {"name": "Notify Card", "content_in_root": true, "filename": "notify-card.js", "render_readme": true}, "full_name": "bernikr/lovelace-notify-card", "category": "plugin", "description": "Send notifications directly from the dashboard", "etag_repository": "W/\"99370bca047633dfa0073f00015923c66cc4182e5e5db76c776a2bb8cc29b51f\"", "last_updated": "2023-03-17T09:29:34Z", "stargazers_count": 24, "topics": ["card", "notification", "notifications", "notify", "service"], "last_fetched": 1695553514.55025, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188698828": {"repository_manifest": {"country": ["RU", "BY"], "homeassistant": "2022.5", "name": "Yandex Smart Home", "render_readme": true}, "full_name": "dext0r/yandex_smart_home", "authors": ["@dext0r"], "category": "integration", "description": "Adds support for Yandex Smart Home (Alice voice assistant) into Home Assistant", "domain": "yandex_smart_home", "etag_repository": "W/\"cf7603a307ea63142432a490253743fbc24f5d9311261a6ed1abcb2119464a7d\"", "last_updated": "2023-09-06T17:35:31Z", "stargazers_count": 644, "topics": ["alice", "home-assistant-component", "voice-assistant", "yandex"], "last_fetched": 1695553624.232301, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "489295753": {"repository_manifest": {"name": "Navbar Position", "render_readme": true}, "full_name": "javawizard/ha-navbar-position", "category": "plugin", "description": "Moves the Home Assistant dashboard navigation bar to the bottom of the screen", "etag_repository": "W/\"9b1543da236ea6dcde0e950e58bca570d858231cd68b9192c6e3593ef0d92780\"", "last_updated": "2023-07-06T00:49:31Z", "stargazers_count": 17, "last_fetched": 1695553538.648621, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283578257": {"repository_manifest": {"name": "power-distribution-card", "render_readme": true, "filename": "power-distribution-card.js"}, "full_name": "JonahKr/power-distribution-card", "category": "plugin", "description": "A Lovelace Card for visualizing power distributions.", "downloads": 6203, "etag_repository": "W/\"40c6fd8312310e331b0e791baad3e55c28f6ba6da61dfb6a353130efe2bcee09\"", "last_updated": "2023-09-09T18:31:33Z", "stargazers_count": 167, "topics": ["e3dc", "lovelace-card"], "last_fetched": 1695553540.043138, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "449416816": {"repository_manifest": {"name": "Sonos Card", "render_readme": true, "filename": "custom-sonos-card.js"}, "full_name": "johanfrick/custom-sonos-card", "category": "plugin", "description": "Home Assistant custom lovelace sonos card", "downloads": 2464, "etag_repository": "W/\"a56f2855bd20ea7e6077b0c2e7f41d7f9bc8b76cfc672c1031ef041dc8e2930f\"", "last_updated": "2023-09-19T10:29:52Z", "stargazers_count": 76, "topics": ["lovelace-custom-card", "sonos"], "last_fetched": 1695553539.429942, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "476357279": {"repository_manifest": {"name": "Music Assistant", "render_readme": true, "zip_release": true, "filename": "mass.zip", "hide_default_branch": true, "homeassistant": "2023.3.0"}, "full_name": "music-assistant/hass-music-assistant", "authors": ["@music-assistant"], "category": "integration", "description": "Turn your Home Assistant instance into a jukebox, hassle free streaming of your favorite media to Home Assistant media players.", "domain": "mass", "downloads": 9861, "etag_repository": "W/\"dc83a140842941b84876c9dabe5cd8326b8275d8ef2b07ea1241968469ac3ddd\"", "last_updated": "2023-09-23T00:48:36Z", "stargazers_count": 706, "topics": ["music-library", "music-player"], "last_fetched": 1695554128.633169, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362551242": {"repository_manifest": {"name": "Update Time Card", "content_in_root": true, "render_readme": true, "filename": "update-time-card.js"}, "full_name": "itobey/update-time-card", "category": "plugin", "description": "Simple last-updated card for Home assistant lovelace", "etag_repository": "W/\"d714882f55a5696d2c28ef2c9c66333106442c49b6c12897dc334c59bd134e58\"", "last_updated": "2023-04-03T23:03:48Z", "stargazers_count": 5, "topics": ["clock", "dashboard", "e-ink", "last-updated", "lovelace-custom-card"], "last_fetched": 1695553538.267168, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "351472550": {"repository_manifest": {"name": "Multiline Entity Card", "render_readme": true, "filename": "multiline-entity-card.js"}, "full_name": "jampez77/Multiline-Entity-Card", "category": "plugin", "description": "A custom entity card for Home Assistant that allows text to span multiple lines.", "etag_repository": "W/\"0f1dfb8ffd142f8da0c04c86afa2d93bdcd5484195b08c78768945708e3913d2\"", "last_updated": "2023-01-31T09:32:25Z", "stargazers_count": 14, "topics": ["automation"], "last_fetched": 1695553538.650477, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201599575": {"repository_manifest": {"name": "Emby Latest Media"}, "full_name": "gcorgnet/sensor.emby_upcoming_media", "authors": ["@gcorgnet"], "category": "integration", "description": "Home Assistant component to feed Upcoming Media Card with the latest releases on an Emby instance.", "domain": "emby_upcoming_media", "etag_repository": "W/\"1e7ee64c3b41a4b5f8c2dd7cf30b816fd8e28bd83cac176e5cee300cf1584b7a\"", "last_updated": "2022-06-23T21:18:24Z", "stargazers_count": 17, "last_fetched": 1695553647.538064, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "244872232": {"repository_manifest": {"name": "Paper Buttons Row"}, "full_name": "jcwillox/lovelace-paper-buttons-row", "category": "plugin", "description": "Adds highly configurable buttons that use actions and per-state styling.", "downloads": 18072, "etag_repository": "W/\"7c0350f4440e5b0b254109faf23485d17a1fab46004cf8b6c2d3094953f85636\"", "last_updated": "2023-09-23T03:53:38Z", "stargazers_count": 214, "topics": ["actions", "buttons", "haptic", "paper"], "last_fetched": 1695553539.075503, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309506416": {"repository_manifest": {"name": "WallPanel", "render_readme": true, "filename": "wallpanel.js"}, "full_name": "j-a-n/lovelace-wallpanel", "category": "plugin", "description": "\ud83d\uddbc\ufe0f Wall panel mode and photo screensaver for your Home Assistant Dashboards", "downloads": 3149, "etag_repository": "W/\"1cb90381bdd34f2709e3f4f9022043e0e5dc9422e08dc6e4f7f331a2710a1a26\"", "last_updated": "2023-09-17T13:09:49Z", "stargazers_count": 249, "topics": ["dashboard", "fullscreen", "home-assistant-addons", "photo-gallery", "screensaver", "wallpanel"], "last_fetched": 1695553538.671949, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "318359434": {"repository_manifest": {"name": "keymaster", "zip_release": true, "filename": "keymaster.zip", "homeassistant": "2022.4.0"}, "full_name": "FutureTense/keymaster", "authors": ["@FutureTense", "@firstof9", "@raman325"], "category": "integration", "description": "Home Assistant integration for managing Z-Wave enabled locks", "domain": "keymaster", "downloads": 5469, "etag_repository": "W/\"adf3dc2e108871a3e8ac187bf8c94fcd4e93109d5ca4a1a803cf0fa25a7cac03\"", "last_updated": "2023-02-22T08:12:59Z", "stargazers_count": 182, "topics": ["keymaster", "locks", "zwave", "zwave-enabled-locks"], "last_fetched": 1695553645.552998, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "165156754": {"repository_manifest": {}, "full_name": "custom-cards/pc-card", "category": "plugin", "description": "\ud83d\udcb5 Personal Capital Card", "etag_repository": "W/\"00d18c21094d8061d5fc0884ed8d7d6109647fb45128a93f5062a49b3a38b574\"", "last_updated": "2019-10-21T03:36:31Z", "stargazers_count": 5, "last_fetched": 1695553519.708465, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "416059983": {"repository_manifest": {"name": "Stiebel Eltron ISG", "filename": "stiebel_eltron_isg.zip", "homeassistant": "2023.9.1", "render_readme": true, "zip_release": true}, "full_name": "pail23/stiebel_eltron_isg_component", "authors": ["@pail23"], "category": "integration", "description": "Stiebel Eltron ISG integration for Home Assistant ", "domain": "stiebel_eltron_isg", "downloads": 199, "etag_repository": "W/\"9d7ed0679760398f87ce6523c45eee7fe3d844b6bc90f55a3a812daf7396351f\"", "last_updated": "2023-09-18T20:26:32Z", "stargazers_count": 22, "last_fetched": 1695554137.301092, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "528492198": {"repository_manifest": {"name": "Telenet Telemeter", "render_readme": true, "country": ["BE"]}, "full_name": "myTselection/telenet_telemeter", "authors": ["@myTselection"], "category": "integration", "description": "Telenet Telemeter Home Assistant custom component HACS for Belgian ISP and mobile phone network traffic.", "domain": "telenet_telemeter", "etag_repository": "W/\"2c08eeb69aff872a8903156c51c04a73dc459428804234f092a66856973e660c\"", "last_updated": "2023-09-21T20:08:36Z", "stargazers_count": 18, "topics": ["telemeter", "telenet"], "last_fetched": 1695554130.747982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180229356": {"repository_manifest": {"name": "Simple Vacuum Card", "filename": "xiaomi-vacuum-card.js", "render_readme": true}, "full_name": "benct/lovelace-xiaomi-vacuum-card", "category": "plugin", "description": "Simple card for various robot vacuums in Home Assistant's Lovelace UI", "downloads": 19795, "etag_repository": "W/\"08cbcfcca79c7fcc21203f8032111e1c84073fb15de0646c4fba9baad7895a28\"", "last_updated": "2023-01-18T07:18:33Z", "stargazers_count": 241, "topics": ["card", "roborock", "robot-vacuums", "vacuum", "xiaomi", "xiaomi-vacuum"], "last_fetched": 1695553514.670382, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "178921037": {"repository_manifest": {"name": "Multiple Entity Row", "filename": "multiple-entity-row.js", "render_readme": true}, "full_name": "benct/lovelace-multiple-entity-row", "category": "plugin", "description": "Show multiple entity states and attributes on entity rows in Home Assistant's Lovelace UI", "downloads": 27660, "etag_repository": "W/\"32e70d9776f8d589a30b5f2a5033c9d537a966f8a6813ce97dbf68438f8915ee\"", "last_updated": "2023-05-30T20:51:09Z", "stargazers_count": 664, "topics": ["attribute", "card", "entity", "entity-attribute", "entity-rows", "format", "multiple", "state"], "last_fetched": 1695553514.695148, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328132422": {"repository_manifest": {"name": "Kodi Playlist Card", "render_readme": true, "filename": "kodi-playlist-card.js"}, "full_name": "jtbgroup/kodi-playlist-card", "category": "plugin", "description": "This repository is used to contain the code of a kodi playlist card for Home Assistant and publish it via HACS", "downloads": 416, "etag_repository": "W/\"54ae74fb128d357f63d3815aa82ee70691b2d1ad811957b8f51c235feec4302c\"", "last_updated": "2023-06-11T05:28:23Z", "stargazers_count": 2, "topics": ["kodi"], "last_fetched": 1695553540.470965, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192732887": {"repository_manifest": {"homeassistant": "0.110.0"}, "full_name": "bramkragten/swipe-card", "category": "plugin", "description": "Card that allows you to swipe throught multiple cards for Home Assistant Lovelace", "etag_repository": "W/\"ad1504153cff90f8eb262d0c4a0d42f4c2e5f4858fdcda51f92b48a5a294dd9a\"", "last_updated": "2023-09-07T21:30:39Z", "stargazers_count": 173, "last_fetched": 1695553514.726473, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362058414": {"repository_manifest": {"name": "Libratone Zipp", "render_readme": true}, "full_name": "Chouffy/home_assistant_libratone_zipp", "authors": ["@chouffy"], "category": "integration", "description": "Control a Libratone Zipp speaker within Home Assistant", "domain": "libratone_zipp", "etag_repository": "W/\"70eb8b9fe73fc5658c3b1c297fdd30f6c800f03584a04ea201216c16b050e461\"", "last_updated": "2022-05-27T07:58:22Z", "stargazers_count": 5, "topics": ["home-assistant-integration", "libratone", "python3"], "last_fetched": 1695553601.99957, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250022973": {"repository_manifest": {"name": "SmartThinQ LGE Sensors", "homeassistant": "2023.7.0"}, "full_name": "ollo69/ha-smartthinq-sensors", "authors": ["@ollo69"], "category": "integration", "description": "HomeAssistant custom integration for SmartThinQ LG devices configurable with Lovelace User Interface.", "domain": "smartthinq_sensors", "etag_repository": "W/\"cc265bf950600dbe1fa727f6e06f10f7cf9068410686049004e6379452109954\"", "last_updated": "2023-09-22T22:48:29Z", "stargazers_count": 782, "topics": ["ac", "air-purifier", "climate", "dehumidifier", "dishwasher", "dryer", "fan", "lg", "lge", "microwave", "oven", "range", "refrigerator", "sensors", "smartthinq", "thinq", "washer"], "last_fetched": 1695554137.096011, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "524783308": {"repository_manifest": {"name": "Shutter Row", "render_readme": true, "filename": "shutter-row.js", "content_in_root": true}, "full_name": "berrywhite96/lovelace-shutter-row", "category": "plugin", "description": "Home Assistant Lovelace Shutter Row Card", "downloads": 2747, "etag_repository": "W/\"278e79df436312f0509f9825d5b38ee9cf73fc0b825ae2aad7019ea54b361313\"", "last_updated": "2023-05-19T14:24:38Z", "stargazers_count": 17, "topics": ["home-assistant-card", "lovelace-card"], "last_fetched": 1695553514.718353, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224560492": {"repository_manifest": {"name": "Sinope Neviweb130", "filename": false, "render_readme": true, "country": ["CA"], "homeassistant": "2021.12.1"}, "full_name": "claudegel/sinope-130", "authors": ["@claudegel"], "category": "integration", "description": "Neviweb custom component for Home Assistant to manage devices connected via a GT130 and wifi devices from Sinop\u00e9", "domain": "neviweb130", "etag_repository": "W/\"d6cbf432b357096eda9e832e77a91391b63678f9012b3665062cbd91c6a8a3ac\"", "last_updated": "2023-09-09T18:00:56Z", "stargazers_count": 42, "topics": ["neviweb", "sinope"], "last_fetched": 1695553603.328012, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "610701268": {"repository_manifest": {"name": "FoxESS - Modbus", "hacs": "1.20.0", "homeassistant": "2023.3.0", "render_readme": true}, "full_name": "nathanmarlor/foxess_modbus", "authors": ["@nathanmarlor"], "category": "integration", "description": "FoxESS inverter integration. Connect directly to your FoxESS inverter (no cloud!) for real-time status and control.", "domain": "foxess_modbus", "etag_repository": "W/\"d7f6ff20c1e6163aa0c3d51abdd609b1fbaa45b440547235f051283dc85b8445\"", "last_updated": "2023-09-18T16:22:20Z", "stargazers_count": 52, "topics": ["energy", "foxess"], "last_fetched": 1695554131.466316, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197245179": {"repository_manifest": {}, "full_name": "twrecked/lovelace-hass-aarlo", "category": "plugin", "description": "Lovelace card for hass-aarlo integration.", "etag_repository": "W/\"e771afd437fb2fb734f3492a92e284ab98f1de2815fbdf05160b339209b007e6\"", "last_updated": "2023-09-02T17:56:32Z", "stargazers_count": 64, "topics": ["arlo", "camera", "lovelace-card", "streaming"], "last_fetched": 1695553567.157023, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340759468": {"repository_manifest": {"name": "NIWA Tides", "country": "NZ", "render_readme": true}, "full_name": "muxa/home-assistant-niwa-tides", "authors": ["@muxa"], "category": "integration", "description": "Custom integration for Home Assistant to get New Zealand tide information from NIWA Tides API", "domain": "niwa_tides", "etag_repository": "W/\"68ba8726c6e855bebb9d26727014775968672e50fc16105493e742d924035c54\"", "last_updated": "2022-03-12T21:41:22Z", "stargazers_count": 6, "topics": ["tides"], "last_fetched": 1695554128.332474, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192732636": {"repository_manifest": {}, "full_name": "bramkragten/weather-card", "category": "plugin", "description": "Weather Card with animated icons for Home Assistant Lovelace", "etag_repository": "W/\"9bc4063dc93b0b0d2d9e10dbc917f70770d46c7d838c0d3d26b7e7c1f9bb4adf\"", "last_updated": "2023-07-03T20:13:34Z", "stargazers_count": 412, "last_fetched": 1695553515.77284, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "439467929": {"repository_manifest": {"name": "Midea Air Appliances (LAN)", "homeassistant": "2022.5.0"}, "full_name": "nbogojevic/homeassistant-midea-air-appliances-lan", "authors": ["@nbogojevic"], "category": "integration", "description": "This Home Assistant custom component adding support for controlling Midea air conditioners and dehumidifiers on local network. ", "domain": "midea_dehumidifier_lan", "etag_repository": "W/\"3d4eb73f4f5c51a9da3d6d617102df37e41d71a2430b9ae529b5db29b84369d5\"", "last_updated": "2023-09-17T18:07:57Z", "stargazers_count": 169, "topics": ["air-conditioner", "airconditioning", "dehumidifier", "midea"], "last_fetched": 1695554131.978426, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "297106424": {"repository_manifest": {"name": "Ebeco thermostats"}, "full_name": "joggs/home_assistant_ebeco", "authors": ["@joggs"], "category": "integration", "description": "Integration for Ebeco thermostats", "domain": "ebeco", "etag_repository": "W/\"c9a7633f120b39113af75cb825cb0e3ce66288b04ccd556f71a1df4055067212\"", "last_updated": "2023-08-03T08:12:37Z", "stargazers_count": 22, "topics": ["ebeco"], "last_fetched": 1695554092.397624, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269588712": {"repository_manifest": {"name": "Philips Hue Play HDMI Sync Box", "render_readme": true, "homeassistant": "2023.8.0"}, "full_name": "mvdwetering/huesyncbox", "authors": ["@mvdwetering"], "category": "integration", "description": "Custom integration for Home Assistant to control the Philips Hue Play HDMI Sync Box", "domain": "huesyncbox", "downloads": 12, "etag_repository": "W/\"576e2296bf2ee1134d7f71f1a4d0eeaa57b61c65828d00af3e29ed71f8040df6\"", "last_updated": "2023-09-24T00:07:08Z", "stargazers_count": 80, "topics": ["hue-entertainment", "huesync", "philips-hue"], "last_fetched": 1695554129.035296, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "144888844": {"repository_manifest": {}, "full_name": "Paul-dH/Home-Assisant-Sensor-OvApi", "category": "integration", "description": null, "domain": "ovapi", "etag_repository": "W/\"35d51573b100d1cd101bf4611c7396543cad0038fbae5359c28ed098f45e93a7\"", "last_updated": "2023-06-05T21:33:45Z", "stargazers_count": 18, "last_fetched": 1695554137.112051, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "520565579": {"repository_manifest": {"name": "Theme Parks Waiting Times", "render_readme": true}, "full_name": "danielsmith-eu/home-assistant-themeparks-integration", "authors": ["@danielsmith-eu"], "category": "integration", "description": "A Home Assistant integration that shows Theme Park waiting times using the ThemeParks.wiki API", "domain": "themeparks", "etag_repository": "W/\"f6669b44b082ed59128b7273728117df3fa1d891534c02986df3365425255b47\"", "last_updated": "2023-03-07T13:02:40Z", "stargazers_count": 9, "topics": ["api", "queue", "themeparks", "times", "wait"], "last_fetched": 1695553618.272107, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "456340193": {"repository_manifest": {"name": "Innova Heat and A/C", "homeassistant": "2022.12.0", "country": "CA"}, "full_name": "danielrivard/homeassistant-innova", "authors": ["@danielrivard"], "category": "integration", "description": "Home Assistant Integration for Innova 2.0 Heat Pump and AirLeaf", "domain": "innova", "etag_repository": "W/\"ba0f47ae9864340855e9842e267f360f020c74f06d3a2ece487ec77f7696c2df\"", "last_updated": "2023-09-13T13:09:15Z", "stargazers_count": 22, "topics": ["airleaf", "climate", "fancoil", "innova", "innova-2point0", "innovaenergie", "twopointzero"], "last_fetched": 1695553618.396679, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215327195": {"repository_manifest": {"name": "RGB Light Card", "content_in_root": true, "filename": "card.js", "render_readme": true}, "full_name": "bokub/rgb-light-card", "category": "plugin", "description": "\ud83d\udca1 A Lovelace custom card for RGB lights", "downloads": 25676, "etag_repository": "W/\"9f94ab17d5925fb4867a4c345004de200fbc0a0fb15534d2eba041a379ac2207\"", "last_updated": "2023-05-15T06:53:21Z", "stargazers_count": 376, "topics": ["lovelace-custom-card", "rgb-lights"], "last_fetched": 1695553514.759545, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283847957": {"repository_manifest": {"name": "pyscript", "zip_release": true, "filename": "hass-custom-pyscript.zip"}, "full_name": "custom-components/pyscript", "authors": ["@craigbarratt"], "category": "integration", "description": "Pyscript adds rich Python scripting to HASS", "domain": "pyscript", "downloads": 8227, "etag_repository": "W/\"b26a98c70729a8ad251b7d129923e9f0e94557e65f625c19e847ec61446ccca3\"", "last_updated": "2023-08-25T21:03:41Z", "stargazers_count": 684, "topics": ["jupyter"], "last_fetched": 1695553608.762397, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "247070270": {"repository_manifest": {"name": "SamsungTV Smart", "homeassistant": "2023.7.0"}, "full_name": "ollo69/ha-samsungtv-smart", "authors": ["@jaruba", "@ollo69", "@screwdgeh"], "category": "integration", "description": "\ud83d\udcfa Home Assistant SamsungTV Smart Component with simplified SmartThings API Support configurable from User Interface.", "domain": "samsungtv_smart", "etag_repository": "W/\"44c12310c8e922a9449d4c3057c5164b3c083d9d2dc89a770e03b4c355d00fc9\"", "last_updated": "2023-09-14T20:10:02Z", "stargazers_count": 315, "topics": ["samsung", "samsung-smart-tv", "samsung-tv", "smartthings"], "last_fetched": 1695554136.607724, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "480112024": {"repository_manifest": {"name": "Sj\u00f6fartsverket ViVa", "country": "SE"}, "full_name": "patrickribbing/sjofartsverket_viva-component", "authors": ["@patrickribbing"], "category": "integration", "description": "Get wind information from the Swedish Sj\u00f6farsverket's ViVa service.", "domain": "sjofartsverket_viva", "etag_repository": "W/\"d8c3d32af275c29dc7f2ad2df64bd06b0e71021fbfee35ca850215ebf4831fb3\"", "last_updated": "2023-07-14T12:19:43Z", "stargazers_count": 2, "last_fetched": 1695554137.209879, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "459761427": {"repository_manifest": {"name": "PGNIG sensor", "country": "PL", "render_readme": true}, "full_name": "pawelhulek/pgnig-sensor", "authors": ["@pawelhulek"], "category": "integration", "description": "This sensor is gathering gas usage data from PGNIG ebok page.", "domain": "pgnig_gas_sensor", "downloads": 18, "etag_repository": "W/\"d5cee2549c9cfff0ba74ed2f4d5c41f026e20f58306a2bdcb24cf6e01951b203\"", "last_updated": "2022-09-19T05:48:29Z", "stargazers_count": 24, "topics": ["gas-sensor"], "last_fetched": 1695554138.908827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "459709817": {"repository_manifest": {"name": "Tedee", "render_readme": true, "hide_default_branch": true}, "full_name": "patrickhilker/tedee_hass_integration", "authors": ["@patrickhilker", "@joerg65", "@zweckj"], "category": "integration", "description": "Control your tedee smart lock from Home Assistant", "domain": "tedee", "etag_repository": "W/\"8092adf2686df77d8154e33dcc08bcf727ff9f47f500783da01c2fd537769ef8\"", "last_updated": "2023-07-10T06:48:56Z", "stargazers_count": 14, "topics": ["customcomponent", "lock", "security", "smart-lock", "smartlock", "tedee"], "last_fetched": 1695554137.17064, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "270638476": {"repository_manifest": {"name": "Nord Theme"}, "full_name": "home-assistant-community-themes/nord", "category": "theme", "description": "Nord theme for Home Assistant", "etag_repository": "W/\"a8a81a787bb50a5338b40000021cb3d5ea4e8cd0f726f2fb1e49461676c5195b\"", "last_updated": "2023-04-03T13:58:06Z", "stargazers_count": 12, "last_fetched": 1695553500.175676, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "396695907": {"repository_manifest": {"name": "Gree Extension for Home-Assistant built in integration", "render_readme": true}, "full_name": "mullerdavid/hass_GreeExt", "authors": ["@mullerdavid"], "category": "integration", "description": "Gree Extension for built in integration", "domain": "gree_ext", "etag_repository": "W/\"6417ad2a8a4db38b7b8fbc502a7df0692a9ab3081e0a1ba557c8bb748a6e8412\"", "last_updated": "2023-06-12T09:56:03Z", "stargazers_count": 5, "topics": ["gree"], "last_fetched": 1695554128.206232, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "278930028": {"repository_manifest": {"name": "Linkplay-based speakers and devices", "homeassistant": "2022.6.0"}, "full_name": "nagyrobi/home-assistant-custom-components-linkplay", "authors": ["@nicjo814", "@limych", "@nagyrobi"], "category": "integration", "description": "LinkPlay based media devices integration for Home Assistant. Supports multiroom, Media Browser, and snapshot and restore functionality for TTS. Compatible with Mini Media Player card.", "domain": "linkplay", "etag_repository": "W/\"32e0c3d8c083e0d4834659f233f556e420fc03b7c304ba5474e4f76aa33333fc\"", "last_updated": "2023-08-17T19:33:14Z", "stargazers_count": 124, "topics": ["arylic", "cvte", "harman-kardon", "linkplay", "speaker", "tts"], "last_fetched": 1695554130.832701, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442594482": {"repository_manifest": {"name": "Kontomierz sensor", "country": "PL", "render_readme": true}, "full_name": "pawelhulek/kontomierz-sensor", "category": "integration", "description": "A sensor that integrates all your bank balance gathered in kontomierz app", "domain": "kontomierz_sensor", "etag_repository": "W/\"47ec1f87cdac3df692fd832c4db4043530640136aead9e45998462205821a0da\"", "last_updated": "2022-03-10T06:49:41Z", "stargazers_count": 5, "topics": ["finance", "financial-analysis", "fintech", "kontomierz"], "last_fetched": 1695554138.812456, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265313034": {"repository_manifest": {"name": "Refreshable picture card", "filename": "refreshable-picture-card.js", "render_readme": true}, "full_name": "dimagoltsman/refreshable-picture-card", "category": "plugin", "description": "a refreshable picture card for HACS", "etag_repository": "W/\"b4f118c634158c58b6dda94f051333c6264cf60c6fb20ae77dace11e1a3e802c\"", "last_updated": "2023-09-23T20:34:08Z", "stargazers_count": 27, "last_fetched": 1695553525.530658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193262086": {"repository_manifest": {}, "full_name": "dimagoltsman/content-card-remote-control", "category": "plugin", "description": "Home assistant remote control", "etag_repository": "W/\"2dcf4ef195cf9aa18a135300300f91b9cc1ca21b2f761e8f6963a037cec9f319\"", "last_updated": "2022-01-20T20:58:11Z", "stargazers_count": 4, "last_fetched": 1695553524.520035, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "337387822": {"repository_manifest": {"name": "Hella ONYX.CENTER", "homeassistant": "2023.8.0", "render_readme": true}, "full_name": "muhlba91/onyx-homeassistant-integration", "authors": ["@muhlba91"], "category": "integration", "description": "Home Assistant integration (HACS) for Hella's ONYX.CENTER appliance", "domain": "hella_onyx", "etag_repository": "W/\"46f2af18f65e3d670ad8bcf05002a0ab22c70b80ea27b14e93e74d8af8542589\"", "last_updated": "2023-09-13T00:52:01Z", "stargazers_count": 2, "topics": ["hella", "onyx"], "last_fetched": 1695554128.412762, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "394082552": {"repository_manifest": {"name": "Frigate Card", "render_readme": true, "filename": "frigate-hass-card.js", "homeassistant": "2022.3.0"}, "full_name": "dermotduffy/frigate-hass-card", "category": "plugin", "description": "A Lovelace card for Frigate in Home Assistant", "downloads": 21357, "etag_repository": "W/\"626ffd8bfecedc5d1019777e770dd31f016decc469ffd5d42e41e06f158bfb8d\"", "last_updated": "2023-09-19T16:18:54Z", "stargazers_count": 319, "topics": ["cctv", "frigate", "nvr"], "last_fetched": 1695553524.885369, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "351828005": {"repository_manifest": {"name": "Dahua VTO", "render_readme": true}, "full_name": "myhomeiot/DahuaVTO", "authors": ["@myhomeiot"], "category": "integration", "description": "Control Dahua VTO/VTH devices from Home Assistant", "domain": "dahua_vto", "etag_repository": "W/\"7dacfe7f9103fc3e6bc2830b506b6539c3c403eedd0bd86faec264bceb86ba8f\"", "last_updated": "2023-04-11T19:32:50Z", "stargazers_count": 109, "topics": ["dahua"], "last_fetched": 1695554129.964351, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197929015": {"repository_manifest": {}, "full_name": "dmulcahey/zha-network-card", "category": "plugin", "description": "Custom Lovelace card that displays ZHA network and device information", "etag_repository": "W/\"66cd3099f87f3708fd09a9045c0f8944fdd8dd11569118a4edf3284fd0b81cba\"", "last_updated": "2020-11-25T23:16:49Z", "stargazers_count": 83, "last_fetched": 1695553525.249088, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "157674859": {"repository_manifest": {"name": "Air Visual Card"}, "full_name": "dnguyen800/air-visual-card", "category": "plugin", "description": "A Lovelace card showing air quality data from airvisual.com. Requires the AirVisual component.", "etag_repository": "W/\"91de5a924469d46e40f981986e2435357ce00e4a354df4d191c4ccaab1a1e32b\"", "last_updated": "2023-04-06T20:25:49Z", "stargazers_count": 87, "topics": ["air-quality", "air-visual"], "last_fetched": 1695553525.766406, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "604796673": {"repository_manifest": {"name": "Carbu.com", "render_readme": true, "country": ["BE", "FR"]}, "full_name": "myTselection/Carbu_com", "authors": ["@myTselection"], "category": "integration", "description": "Home Assistant custom component HACS integration to Carbu.com site to compare and save on your fuel oil / heating oil (mazout) and fuel (diesel, super and lpg) purchases in Belgium, France and Luxembourg. Fuel prices supported for Netherlands, Germany and Italy too!", "domain": "carbu_com", "etag_repository": "W/\"cbad1efd35d49e3ba83515ebc7512181ac3288f4fcc8f8a189bb24089455cf25\"", "last_updated": "2023-09-07T21:11:28Z", "stargazers_count": 10, "topics": ["fuel-prices", "price-tracker"], "last_fetched": 1695554130.345151, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454859084": {"repository_manifest": {"name": "Home Connect Alt", "hacs": "1.25.0", "homeassistant": "2022.7.0"}, "full_name": "ekutner/home-connect-hass", "authors": ["@ekutner"], "category": "integration", "description": "Alternative (and improved) Home Connect integration for Home Assistant", "domain": "home_connect_alt", "etag_repository": "W/\"1204c05f0a822890dfd35e675ab75e95aa94fc37690bdeb749235a6f0c1c6699\"", "last_updated": "2023-09-20T16:40:24Z", "stargazers_count": 269, "topics": ["home-assistant-component", "home-assistant-integration", "home-connect", "homeconnect"], "last_fetched": 1695553634.053356, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373101151": {"repository_manifest": {"name": "SunSpec", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2021.9.1"}, "full_name": "CJNE/ha-sunspec", "authors": ["@cjne"], "category": "integration", "description": "Home Assistant customcomponent for SunSpec modbus devices", "domain": "sunspec", "etag_repository": "W/\"0013d6a7be0d5d0467c7d0e85fa8e7d50f75d16e1fe7706e78095cffff01aceb\"", "last_updated": "2023-06-29T05:12:10Z", "stargazers_count": 40, "topics": ["sunspec"], "last_fetched": 1695553603.134969, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283518438": {"repository_manifest": {"name": "RHVoice", "render_readme": true}, "full_name": "definitio/ha-rhvoice", "authors": ["@definitio"], "category": "integration", "description": "Home Assistant integration for RHVoice - a local text-to-speech engine.", "domain": "rhvoice", "etag_repository": "W/\"edc7a2974b9cb0cd761352cbea23be64af03e7c61ae60d9410d85a5839fd77f3\"", "last_updated": "2023-06-11T19:21:14Z", "stargazers_count": 37, "topics": ["rhvoice", "tts"], "last_fetched": 1695553622.780248, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192604318": {"repository_manifest": {"name": "iPhone Device Tracker", "homeassistant": "0.94.0", "zip_release": true, "filename": "iphonedetect.zip"}, "full_name": "mudape/iphonedetect", "authors": ["@mudape"], "category": "integration", "description": "A custom component for Home Assistant to detect iPhones connected to local LAN, even if the phone is in deep sleep.", "domain": "iphonedetect", "downloads": 15683, "etag_repository": "W/\"5a880cbf57db3a5c30d0283e6827ee434a5d1c518083b6b5ea6409f6b162b9d8\"", "last_updated": "2023-03-09T15:55:27Z", "stargazers_count": 305, "topics": ["iphonedetect"], "last_fetched": 1695554127.99795, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "527179792": {"repository_manifest": {"name": "wnsm", "render_readme": true, "zip_release": true, "filename": "wnsm.zip", "country": "AT"}, "full_name": "DarwinsBuddy/WienerNetzeSmartmeter", "authors": ["@DarwinsBuddy"], "category": "integration", "description": "A home-assistant integration supporting WienerNetze Smartmeters as sensors", "domain": "wnsm", "downloads": 310, "etag_repository": "W/\"fc80f6efe47ecb4fcbb04b4c0039693560514e4cb0b1752c03c256b632a2464a\"", "last_updated": "2023-08-31T20:19:50Z", "stargazers_count": 76, "topics": ["energy", "smartmeter", "wien-energie", "wiener-netze"], "last_fetched": 1695553620.368909, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "598313217": {"repository_manifest": {"name": "MijnTuin", "render_readme": true, "country": ["BE"]}, "full_name": "myTselection/MijnTuin", "authors": ["@myTselection"], "category": "integration", "description": "MijnTuin.org Home Assistant custom component HACS to manage garden plants and see activities for your garden", "domain": "mijntuin", "etag_repository": "W/\"a509df4fbb163b56a30c2312ad457504c6a01fc8eff8fde5a308aabfc907e709\"", "last_updated": "2023-05-23T07:19:23Z", "stargazers_count": 5, "topics": ["garden", "gardening"], "last_fetched": 1695554130.198238, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "425931056": {"repository_manifest": {"name": "HA Kia/Hyundai", "render_readme": true, "country": ["US", "CA"], "homeassistant": "2021.10.0b0"}, "full_name": "dahlb/ha_kia_hyundai", "authors": ["@dahlb"], "category": "integration", "description": "A Home Assistant HACS integration that supports Kia Connect(Uvo). The integration supports the USA.", "domain": "ha_kia_hyundai", "etag_repository": "W/\"84a870f8e32a4ae89b7f645addeaacb24d957dca9a069cd360630cfc1db10a09\"", "last_updated": "2023-09-18T18:10:20Z", "stargazers_count": 15, "topics": ["car", "kia", "python3", "uvo"], "last_fetched": 1695553618.423311, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292081477": {"repository_manifest": {"name": "Shairport Sync Media Player", "render_readme": true}, "full_name": "parautenbach/hass-shairport-sync", "authors": ["@parautenbach"], "category": "integration", "description": "A custom media player for Home Assistant that allows you to control and get updates from a Shairport Sync installation using MQTT.", "domain": "shairport_sync", "etag_repository": "W/\"6330793d1d3d14ed1956963655491f0b5198f1b150b55fc6c6f3a6cfcc212b59\"", "last_updated": "2023-07-22T20:04:56Z", "stargazers_count": 47, "topics": ["airplay", "mqtt", "shairport-sync"], "last_fetched": 1695554137.098217, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269665267": {"repository_manifest": {"name": "Yamaha (YNCA)", "render_readme": true, "homeassistant": "2023.6.0"}, "full_name": "mvdwetering/yamaha_ynca", "authors": ["@mvdwetering"], "category": "integration", "description": "Custom integration for Home Assistant to support Yamaha AV receivers with the YNCA protocol (serial and network).", "domain": "yamaha_ynca", "downloads": 10, "etag_repository": "W/\"fc1aafe61ef0c4653c2f499c09827df45a2651bbd97a44a6d3fcff501a52a0c1\"", "last_updated": "2023-09-16T15:12:15Z", "stargazers_count": 17, "topics": ["home-assistant-component", "yamaha-avr", "yamaha-receiver"], "last_fetched": 1695554129.760618, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340596609": {"repository_manifest": {"name": "Panasonic Smart App", "homeassistant": "2021.9.0"}, "full_name": "osk2/panasonic_smart_app", "authors": ["@osk2"], "category": "integration", "description": "\ud83d\udd1b Panasonic Smart App integration for Home Assistant.", "domain": "panasonic_smart_app", "etag_repository": "W/\"3c66ddac4a31df77786226c3dc78bf89a15295f557dbfc3ce1c5694049d61da0\"", "last_updated": "2023-08-13T09:25:55Z", "stargazers_count": 61, "topics": ["panasonic"], "last_fetched": 1695554136.95105, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216165131": {"repository_manifest": {"name": "Solarized Light Theme"}, "full_name": "home-assistant-community-themes/solarized-light", "category": "theme", "description": "Solarized Light theme for Home Assistant", "etag_repository": "W/\"e0c4ddbc1fe6724bbdda1a8efcda8612ba4dbdc690237b4f93e02996e9eb70c7\"", "last_updated": "2023-03-27T02:57:14Z", "stargazers_count": 4, "last_fetched": 1695553500.195567, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "263901624": {"repository_manifest": {"name": "Generic Remote Control Card", "filename": "generic-remote-control-card.js", "render_readme": true}, "full_name": "dimagoltsman/generic-remote-control-card", "category": "plugin", "description": "Generic Remote control card for HACS", "etag_repository": "W/\"f69db0a45d7e3f7ad3cff4c1be14e071f5885d4eb58a8df89b18053b1cbda186\"", "last_updated": "2022-10-11T20:06:17Z", "stargazers_count": 82, "last_fetched": 1695553524.808837, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "586474647": {"repository_manifest": {"name": "Pixometer", "render_readme": true}, "full_name": "myTselection/pixometer", "authors": ["@myTselection"], "category": "integration", "description": "Home Assistant custom component HACS for Pixolus Pixometer app meter reading integration.", "domain": "pixometer", "etag_repository": "W/\"31fd229bedf1a17557fc0729c61277152a1bb5fedaf7561d086b7f67f07b133c\"", "last_updated": "2023-08-16T23:09:00Z", "stargazers_count": 3, "topics": ["meterreading", "pixometer"], "last_fetched": 1695554130.343353, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "169641362": {"repository_manifest": {"name": "BlueIris NVR", "homeassistant": "2021.12.0"}, "full_name": "elad-bar/ha-blueiris", "authors": ["@elad-bar", "@kramttocs"], "category": "integration", "description": "Integration with Blue Iris Video Security Software", "domain": "blueiris", "etag_repository": "W/\"d88a671c537d8944c8217efdee826359021a8426f91943f9b199f9626d1e44f0\"", "last_updated": "2022-12-05T07:02:47Z", "stargazers_count": 150, "last_fetched": 1695553634.006751, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "158194879": {"repository_manifest": {"name": "Entity Controller", "homeassistant": "2022.7.4"}, "full_name": "danobot/entity-controller", "authors": ["@danobot"], "category": "integration", "description": "Entity and lighting controller for managing devices via timers, scripts, and sun-based time restrictions.", "domain": "entity_controller", "etag_repository": "W/\"c9c2a157a808e52d10dea722411776d79702da660e85f34b1bdbaefd5835a5ed\"", "last_updated": "2023-08-24T08:44:01Z", "stargazers_count": 246, "topics": ["finite-state-machine", "internet-of-things", "iot", "lighting-controller", "motion-light", "motion-sensor"], "last_fetched": 1695553618.523697, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "422834940": {"repository_manifest": {"name": "Kef Connector", "render_readme": true}, "full_name": "N0ciple/hass-kef-connector", "authors": ["@n0ciple"], "category": "integration", "description": "A Home Assistant integration for the Kef LS50W2", "domain": "kef_connector", "etag_repository": "W/\"4313a372907191c753f602f1912c92c308f2e555a3c2ab421a712aee592d1b9d\"", "last_updated": "2022-03-03T14:43:11Z", "stargazers_count": 4, "topics": ["kef", "ls50", "ls50w2", "speaker"], "last_fetched": 1695554130.530188, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "463624702": {"repository_manifest": {"name": "Hatch Rest Mini Sound Machine", "render_readme": true, "country": ["US"], "homeassistant": "2021.10.0b0"}, "full_name": "dahlb/ha_hatch", "authors": ["@dahlb"], "category": "integration", "description": "Home Assistant Integration for Hatch Rest Mini", "domain": "ha_hatch", "etag_repository": "W/\"23d9e908c0918574a970c68e9031ba839034b62c2c42e03e5986ad7c3595550a\"", "last_updated": "2023-09-18T11:35:52Z", "stargazers_count": 43, "topics": ["hatch-baby-rest", "python3"], "last_fetched": 1695553618.393635, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "484333657": {"repository_manifest": {"name": "Lovelace Wallpanel Screensaver", "render_readme": true, "zip_release": true, "filename": "wallpanel-screensaver.js"}, "full_name": "Shreyas-R/lovelace-wallpanel-screensaver", "category": "plugin", "description": "Wall panel mode for your Home Assistant Lovelace dashboard with more focus on screensaver. Configurable extension which features a fullscreen kiosk mode, image and weather-clock screensaver, screen wake lock and the ability to hide side and top bar.", "downloads": 6416, "etag_repository": "W/\"7af0fc9613900ec57c73bc81d27c3ec0abc61f4b935803afc36bc1cf3808cba8\"", "last_updated": "2022-09-08T12:24:08Z", "stargazers_count": 25, "topics": ["configurable", "css", "fullscreen", "hide-side-bar", "hide-top-bar", "javascript", "kiosk", "photo-screensaver", "screensaver", "wallclock", "wallpanel", "weather"], "last_fetched": 1695553559.720584, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259126760": {"repository_manifest": {"name": "Honeycomb Menu", "content_in_root": true, "filename": "honeycomb-menu.js", "render_readme": true}, "full_name": "Sian-Lee-SA/honeycomb-menu", "category": "plugin", "description": "Honeycomb menu is a Home Assistant module (not a card) that can be applied to any lovelace card. When activated by the defined action on said card, the module will display a 'rounded' list of honeycomb buttons with an optional XY pad to make interfacing with lovelace more fluent", "downloads": 1621, "etag_repository": "W/\"908d10b1994fe86ed912b862423bfc93a1a54551141f8d8524836a9947ae682a\"", "last_updated": "2023-08-08T21:03:45Z", "stargazers_count": 153, "topics": ["lovelace-module", "menu", "module"], "last_fetched": 1695553560.002129, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "633889686": {"repository_manifest": {"name": "Silent bus card", "filename": "silent-bus.js", "render_readme": true, "homeassistant": "0.95.4", "country": "IL"}, "full_name": "silentbil/silent-bus", "category": "plugin", "description": "Bus card for homeassistant - Israel", "etag_repository": "W/\"fd479f6da958b5f976dbba9e6acb699e9def1dad6f7fd2a20529b1784ce25640\"", "last_updated": "2023-09-22T14:05:57Z", "stargazers_count": 19, "topics": ["bus", "card", "frontend"], "last_fetched": 1695553560.246126, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "583449944": {"repository_manifest": {"name": "Silent remotes card", "filename": "silent-remotes-card.js", "render_readme": true, "homeassistant": "0.95.4"}, "full_name": "silentbil/silent-remotes-card", "category": "plugin", "description": "Remotes control card for home assistant", "etag_repository": "W/\"4e3ca3a67f4e2d1c1c7a3ef83d8985218e0cb8ec87d164770c8126eba9853460\"", "last_updated": "2023-04-25T10:30:32Z", "stargazers_count": 7, "topics": ["broadlink", "card", "remote", "remote-control", "smartir"], "last_fetched": 1695553560.382311, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "300754203": {"repository_manifest": {"name": "Kanji Clock Card", "render_readme": true, "filename": "kanji-clock-card.js", "country": "JP"}, "full_name": "sopelj/lovelace-kanji-clock-card", "category": "plugin", "description": "A simple clock widget using Japanese Kanji for date and time", "downloads": 400, "etag_repository": "W/\"cd8a6d76f83bd4917f113324900994aa51d827839faf36cc8fb136e007f09486\"", "last_updated": "2023-07-23T22:40:23Z", "stargazers_count": 2, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553560.944757, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "431901513": {"repository_manifest": {"name": "Fluid Level Background Card", "render_readme": true, "filename": "fluid-level-background-card.js"}, "full_name": "swingerman/lovelace-fluid-level-background-card", "category": "plugin", "description": "This card wraps any other cards and renders a fluid background behind them.", "downloads": 1809, "etag_repository": "W/\"447c4e770412042e5f99a4d7ce5daef2bca25efc4d67935fa125bb852b9b6061\"", "last_updated": "2023-09-11T01:54:11Z", "stargazers_count": 18, "topics": ["lovelace-card"], "last_fetched": 1695553561.177894, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "607398282": {"repository_manifest": {"name": "UV Index Card", "render_readme": true, "filename": "uv-index-card.js"}, "full_name": "t1gr0u/uv-index-card", "category": "plugin", "description": "A Lovelace card that shows a the UV index and risk level for Home Assistant", "downloads": 4166, "etag_repository": "W/\"6dd97aa113bf1fb991753d97fe022caa667bd334262a5f47259ddcdfe1f96b86\"", "last_updated": "2023-07-19T08:39:57Z", "stargazers_count": 16, "topics": ["uv-index"], "last_fetched": 1695553561.273039, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "609593305": {"repository_manifest": {"name": "Rain Gauge Card", "render_readme": true, "filename": "rain-gauge-card.js"}, "full_name": "t1gr0u/rain-gauge-card", "category": "plugin", "description": "A Lovelace card that shows the rain gauge for Home Assistant", "downloads": 4137, "etag_repository": "W/\"f127ae27f20b6d8dc920166cabd224989eb191d127c134d102c6d6255bd5a662\"", "last_updated": "2023-08-03T10:11:46Z", "stargazers_count": 28, "topics": ["uv-index"], "last_fetched": 1695553561.069249, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "284283867": {"repository_manifest": {"name": "Gallery Card", "filename": "gallery-card.js", "render_readme": true}, "full_name": "TarheelGrad1998/gallery-card", "category": "plugin", "description": "A custom card for Home Assistant that will display images and/or videos from a folder in the style of a gallery. ", "etag_repository": "W/\"124a53ef73b2eefa48bbcc82e043e60a2cf9adb311ae5d1b9ea378644462d4e1\"", "last_updated": "2023-04-25T20:26:39Z", "stargazers_count": 77, "topics": ["gallery", "gallery-card", "images", "videos"], "last_fetched": 1695553561.567383, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "191580766": {"repository_manifest": {"name": "Light with profiles", "content_in_root": true, "filename": "light-with-profiles.js", "homeassistant": "0.100.0"}, "full_name": "tcarlsen/lovelace-light-with-profiles", "category": "plugin", "description": "Turn on lights based on light_profiles.csv", "etag_repository": "W/\"56d49fd73f3a56bf226bd760b8c32b3539cfbb6fb5c5cfe16ed5273ac8e913a6\"", "last_updated": "2022-06-12T20:39:16Z", "stargazers_count": 60, "topics": ["light", "light-profiles", "lovelace-card", "profiles"], "last_fetched": 1695553561.502857, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202874270": {"repository_manifest": {}, "full_name": "TheLastProject/lovelace-media-art-background", "category": "plugin", "description": "Sets the background of your Home Assistant to match the entity picture of a media player. No longer maintained.", "etag_repository": "W/\"53e019e38eda5a74a31a8261e78532a261dee16ad1d553715e4e9236ee041746\"", "last_updated": "2023-04-08T19:23:34Z", "stargazers_count": 28, "last_fetched": 1695553561.379293, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309056232": {"repository_manifest": {"name": "GitHub Dark Theme", "render_readme": true}, "full_name": "einschmidt/github_dark_theme", "category": "theme", "description": "A Home Assistant theme inspired on Github.", "etag_repository": "W/\"d186404dbc0555ace565deac5a730a240e7da0730658dc1583642fc8ca7a27cb\"", "last_updated": "2023-08-23T06:12:41Z", "stargazers_count": 3, "topics": ["assistant-theme"], "last_fetched": 1695553496.3907, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "637182469": {"repository_manifest": {"name": "MIWA", "render_readme": true, "country": ["BE"]}, "full_name": "geertmeersman/miwa", "authors": ["@geertmeersman"], "category": "integration", "description": "Home Assistant component for MIWA BE services", "domain": "miwa", "etag_repository": "W/\"98c4000bf6af401edda20f79f56272ebb21664507190a2eace9e9885d28c0c8d\"", "last_updated": "2023-09-22T11:28:05Z", "topics": ["miwa"], "last_fetched": 1695553647.677986, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "622332920": {"repository_manifest": {"name": "TTLock", "render_readme": true, "zip_release": true, "filename": "ttlock.zip"}, "full_name": "jbergler/hass-ttlock", "authors": ["@jbergler"], "category": "integration", "description": "Home Assistant integration for TTLock locks", "domain": "ttlock", "downloads": 788, "etag_repository": "W/\"443a7acbe7835a43e5178765c019b560903a306089fc1ec715d4868b8bc66663\"", "last_updated": "2023-07-15T06:41:10Z", "stargazers_count": 16, "topics": ["cielsa", "e-lok", "ttlock"], "last_fetched": 1695553671.675968, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "485813852": {"repository_manifest": {"name": "Google Light and Dark Theme", "render_readme": true}, "full_name": "digitaljamie/google-theme", "category": "theme", "description": "A fork of Google Assistant Theme to fix common issues - by digitaljamie", "etag_repository": "W/\"9f4be962a3475ed7242b12d59fc3cc361e595364faf1becc27277a0e0fa41c8e\"", "last_updated": "2023-01-04T13:52:20Z", "stargazers_count": 5, "topics": ["darkmode", "google-theme", "googletheme", "lightmode"], "last_fetched": 1695553495.15352, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237620254": {"repository_manifest": {"name": "todoist-task-list", "content_in_root": true, "render_readme": true, "filename": "todoist-task-list.js"}, "full_name": "tholgir/TodoIst-Task-List", "category": "plugin", "description": "This is a custom lovelace card for displaying a todoist calendar in Home Assistant.", "etag_repository": "W/\"3be29afd2eff41b05cf3d334f213659001eadf5c97afbb6edd082ecf0709ac73\"", "last_updated": "2021-04-25T07:36:09Z", "stargazers_count": 13, "topics": ["lovelace-custom-card", "todoist"], "last_fetched": 1695553561.941385, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190927524": {"repository_manifest": {"name": "card-mod", "render_readme": true, "homeassistant": "2023.4.0b5"}, "full_name": "thomasloven/lovelace-card-mod", "category": "plugin", "description": "\ud83d\udd39 Add CSS styles to (almost) any lovelace card", "etag_repository": "W/\"9f28e549a9364b1da69eb1872bdad0fe3706e8b5784f4ca3c87eecaaab7748d5\"", "last_updated": "2023-06-08T08:51:44Z", "stargazers_count": 771, "last_fetched": 1695553563.167046, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "167744584": {"repository_manifest": {"name": "auto-entities", "render_readme": true, "homeassistant": "2022.3.0"}, "full_name": "thomasloven/lovelace-auto-entities", "category": "plugin", "description": "\ud83d\udd39Automatically populate the entities-list of lovelace cards", "etag_repository": "W/\"b7955713c4dfcca681bcbd4d58d4139a9e71bb0bfdd321c06a1e3415ed21d7c0\"", "last_updated": "2023-02-13T21:35:57Z", "stargazers_count": 934, "last_fetched": 1695553562.350389, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "281453608": {"repository_manifest": {"name": "badge-card", "render_readme": true}, "full_name": "thomasloven/lovelace-badge-card", "category": "plugin", "description": "\ud83d\udd39 Place badges anywhere in the lovelace layout", "etag_repository": "W/\"eb18ab38f90b508512e3d393d414b17455d1ecee92748156a900b38b85f2c799\"", "last_updated": "2023-03-05T07:44:24Z", "stargazers_count": 64, "last_fetched": 1695553562.253401, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "150781994": {"repository_manifest": {"name": "fold-entity-row", "render_readme": true}, "full_name": "thomasloven/lovelace-fold-entity-row", "category": "plugin", "description": "\ud83d\udd39 A foldable row for entities card, containing other rows", "etag_repository": "W/\"b3845266719a8367412541a94f05392aecce354196e27338179d70be5c5a611c\"", "last_updated": "2023-03-04T05:08:58Z", "stargazers_count": 462, "last_fetched": 1695553563.333638, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "161403328": {"repository_manifest": {"name": "card-tools", "homeassistant": "0.100.0"}, "full_name": "thomasloven/lovelace-card-tools", "category": "plugin", "description": "\ud83d\udd39A collection of tools for other lovelace plugins to use", "etag_repository": "W/\"14581a3017be04216c53bcd12f7239a16a92dad8ef5a879381f244e3e40f487e\"", "last_updated": "2023-04-10T09:48:29Z", "stargazers_count": 219, "last_fetched": 1695553563.026897, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "249942054": {"repository_manifest": {"name": "hui-element", "render_readme": true}, "full_name": "thomasloven/lovelace-hui-element", "category": "plugin", "description": "\ud83d\udd39 Use built-in elements in the wrong place", "etag_repository": "W/\"306858ff4ddfd6542450f47d2991601cc0267e47344dafc2a81396bcf65ed435\"", "last_updated": "2023-03-04T07:59:05Z", "stargazers_count": 85, "last_fetched": 1695553563.158832, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180528950": {"repository_manifest": {"name": "more-info-card", "render_readme": true, "homeassistant": "0.113"}, "full_name": "thomasloven/lovelace-more-info-card", "category": "plugin", "description": "\ud83d\udd39 Display the more-info dialog of any entity as a lovelace card", "etag_repository": "W/\"81be24661dd978d2b2f1d61b27c6769c48c7a362a9f2a109457a6312a9ab282c\"", "last_updated": "2022-05-28T13:40:55Z", "stargazers_count": 89, "last_fetched": 1695553563.446214, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "156434866": {"repository_manifest": {"name": "layout-card", "render_readme": true, "homeassistant": "2022.3.0"}, "full_name": "thomasloven/lovelace-layout-card", "category": "plugin", "description": "\ud83d\udd39 Get more control over the placement of lovelace cards.", "etag_repository": "W/\"2f229d3ac0d2eb4aef1987c9a7486611683a67ed171b3a2c01b8115e22b7eddf\"", "last_updated": "2023-08-19T15:53:52Z", "stargazers_count": 815, "last_fetched": 1695553563.520472, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "144899700": {"repository_manifest": {"name": "slider-entity-row", "render_readme": true}, "full_name": "thomasloven/lovelace-slider-entity-row", "category": "plugin", "description": "\ud83d\udd39 Add sliders to entity cards", "etag_repository": "W/\"12c5cf685cd57bc20bd6a3b5edc51011b431057624aa9c93dc3efad00c03b820\"", "last_updated": "2022-12-26T01:55:34Z", "stargazers_count": 737, "last_fetched": 1695553563.674271, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "158756598": {"repository_manifest": {"name": "state-switch", "render_readme": true}, "full_name": "thomasloven/lovelace-state-switch", "category": "plugin", "description": "\ud83d\udd39Dynamically replace lovelace cards depending on occasion", "etag_repository": "W/\"eee5e6347d6cd057256bdfa408e6c4c19cdb0ed3436456d12fdfe86f1fabfbed\"", "last_updated": "2023-01-08T19:43:39Z", "stargazers_count": 326, "last_fetched": 1695553564.015714, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231674882": {"repository_manifest": {"name": "template-entity-row", "render_readme": true, "homeassistant": "0.107.0b1"}, "full_name": "thomasloven/lovelace-template-entity-row", "category": "plugin", "description": "\ud83d\udd39 Display whatever you want in an entities card row.", "etag_repository": "W/\"d6280aa7a458687a1b49bb79346da53541c48938c80c92b4fd31a50eef8e716c\"", "last_updated": "2023-05-07T13:58:22Z", "stargazers_count": 165, "last_fetched": 1695553564.208549, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "308752409": {"repository_manifest": {"name": "Charger Card", "render_readme": true, "filename": "charger-card.js"}, "full_name": "tmjo/charger-card", "category": "plugin", "description": "A lovelace card for electrical vehicle (EV) home chargers and charging robots.", "downloads": 1777, "etag_repository": "W/\"d4127670128f98babe7cc1ce2af1f2a4dcf3fc40b2fb4fc706682b5f7e1b8e5a\"", "last_updated": "2023-07-24T21:32:01Z", "stargazers_count": 70, "topics": ["charger", "charging-robot", "easee", "elbil", "electric-vehicle", "evcharger"], "last_fetched": 1695553564.573498, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "320381430": {"repository_manifest": {"name": "Analog Clock", "render_readme": true, "filename": "analogclock.js"}, "full_name": "tomasrudh/analogclock", "category": "plugin", "description": "An analog clock for Home Assistant Lovelace", "etag_repository": "W/\"c6e0a5e77bfc8c765f0c5526dc12734e0ae0b76606a93144fbc1cd13ecc452cb\"", "last_updated": "2022-06-03T19:55:56Z", "stargazers_count": 15, "topics": ["analog", "analog-clock", "assistant-lovelace", "clock"], "last_fetched": 1695553564.989175, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234581410": {"repository_manifest": {"name": "UX Goodie Theme", "render_readme": true}, "full_name": "fi-sch/ux_goodie_theme", "category": "theme", "description": "\ud83c\udfa8 Theme for Home Assistant inspired by iOS Dark Mode \ud83c\udf16", "etag_repository": "W/\"57940713ba8e7bc708b7af4e0c4f8f2ca23ee89e9fd00d0af15e816b0d747880\"", "last_updated": "2022-05-27T21:05:56Z", "stargazers_count": 11, "topics": ["dark", "ios", "lovelace-theme", "mode", "ux"], "last_fetched": 1695553496.568896, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "227988032": {"repository_manifest": {"name": "sweet pink", "render_readme": true}, "full_name": "estiens/sweet_pink_hass_theme", "category": "theme", "description": "Theme for home assistant that makes use of pinks and purples and maybe some teal", "etag_repository": "W/\"8ac56c91f32681d2c53decbc81c89de869cfcb8e7c650a8c68c861742c2ebe56\"", "last_updated": "2022-05-14T18:31:48Z", "stargazers_count": 4, "topics": ["cyberpunk", "lovelace-theme"], "last_fetched": 1695553496.398076, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "464998514": {"repository_manifest": {"name": "Cyberpunk 2077 Theme"}, "full_name": "flejz/hass-cyberpunk-2077-theme", "category": "theme", "description": "Cyberpunk 2077 GUI inspied Home Assistant theme", "etag_repository": "W/\"388d95402e2615165aee07bd5016017e9f6d899b87f45ba8796b76c05b39237b\"", "last_updated": "2023-03-27T22:58:46Z", "stargazers_count": 21, "topics": ["cyberpunk", "cyberpunk-2077"], "last_fetched": 1695553496.593383, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309053262": {"repository_manifest": {"name": "GitHub Light Theme", "render_readme": true}, "full_name": "einschmidt/github_light_theme", "category": "theme", "description": "A Home Assistant theme inspired on Github.", "etag_repository": "W/\"79d3b7e53dc26aabc215172653c0053a4775ce5267f31b57a82b1bae4394c7ed\"", "last_updated": "2020-12-16T13:49:52Z", "stargazers_count": 4, "topics": ["assistant-theme"], "last_fetched": 1695553496.407189, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235436539": {"repository_manifest": {"name": "Noctis Grey", "render_readme": true}, "full_name": "chaptergy/noctis-grey", "category": "theme", "description": "Dark Grey Theme for Home Assistant", "etag_repository": "W/\"55f45ffa2026091e845a2a04e340f71e76062e4211645dded9ee35e3ea1257a6\"", "last_updated": "2023-05-13T16:55:57Z", "stargazers_count": 7, "last_fetched": 1695553494.718562, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "570909059": {"repository_manifest": {"name": "Catppuccin Theme", "render_readme": true}, "full_name": "catppuccin/home-assistant", "category": "theme", "description": "\ud83c\udfe0 Soothing pastel theme for Home Assistant", "etag_repository": "W/\"b031ae9556dd314ed9c5f9d08e9717ac3a4e75afc367c9427c6383b4f737284c\"", "last_updated": "2023-04-02T19:22:57Z", "stargazers_count": 41, "topics": ["catppuccin", "catppuccin-theme"], "last_fetched": 1695553494.648145, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "174809046": {"repository_manifest": {"name": "Avanza Stock", "render_readme": true}, "full_name": "custom-components/sensor.avanza_stock", "authors": ["@claha"], "category": "integration", "description": "Custom component to get stock data from Avanza for Home Assistant", "domain": "avanza_stock", "etag_repository": "W/\"2529efc32ae662bf309b357ebb37dc439640b6da39122472e5e464d863babe57\"", "last_updated": "2023-09-16T18:30:17Z", "stargazers_count": 38, "topics": ["funds", "stock"], "last_fetched": 1695553609.746505, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261924981": {"repository_manifest": {"name": "Swart Ninja Dark Theme"}, "full_name": "DickSwart/swart_ninja_dark_theme", "category": "theme", "description": "\ud83c\udfa8 Green, dark mode theme for Home Assistant, Enjoy.\ud83e\udd18\ud83c\udffb", "etag_repository": "W/\"43c35f59ae125effddbe8f127fd7c163166ecf44ea95562ae4e0b838485db38d\"", "last_updated": "2022-03-04T09:56:36Z", "stargazers_count": 4, "topics": ["dark-theme"], "last_fetched": 1695553494.757823, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "470262899": {"repository_manifest": {"name": "Nordic Theme", "render_readme": true}, "full_name": "coltondick/nordic-theme-main", "category": "theme", "description": "Nordic theme for home assistant.", "etag_repository": "W/\"b5ab8b2bd2f0a1193a283f074b08c44340577122207d34aaf24acfbac1970987\"", "last_updated": "2022-04-30T13:38:21Z", "stargazers_count": 7, "last_fetched": 1695553494.678512, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151550084": {"repository_manifest": {}, "full_name": "custom-components/sensor.owlintuition", "authors": ["@glpatcern"], "category": "integration", "description": "A set of sensors to integrate the OWL Intuition devices network", "domain": "owlintuition", "etag_repository": "W/\"3a00b8cd85a8eda760d49cd3b8297af40bdb8b91f73c1f31e4dd493e772020e9\"", "last_updated": "2023-06-10T07:59:27Z", "stargazers_count": 11, "last_fetched": 1695553609.873394, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "563077911": {"repository_manifest": {"name": "China Southern Power Grid Statistics", "render_readme": true, "country": "CN", "homeassistant": "2022.11"}, "full_name": "CubicPill/china_southern_power_grid_stat", "authors": ["@cubicpill"], "category": "integration", "description": "Home Assistant intergration to get statictics from China Southern Power Grid (CSG) \u5357\u65b9\u7535\u7f51HA\u96c6\u6210", "domain": "china_southern_power_grid_stat", "etag_repository": "W/\"3eeae544b9d876fdf9cbbe6458398cef4e5bc1368503326daa5e2f679ed33826\"", "last_updated": "2023-05-27T14:15:41Z", "stargazers_count": 90, "last_fetched": 1695553605.437223, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "630565367": {"repository_manifest": {"name": "Technische Alternative CoE", "render_readme": true}, "full_name": "DeerMaximum/Technische-Alternative-CoE", "authors": ["@DeerMaximum"], "category": "integration", "description": "Custom Home Assistant integration to read data from a C.M.I. via CoE", "domain": "ta_coe", "etag_repository": "W/\"fa119e22e92fc19c39d7ea1a3e51373e195f04503db99af5bdfa2bdc85b4bf7b\"", "last_updated": "2023-09-17T20:59:12Z", "stargazers_count": 1, "last_fetched": 1695553622.744274, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "504337320": {"repository_manifest": {"name": "Dremel 3D Printer", "hacs": "1.25.5", "homeassistant": "2022.6.6"}, "full_name": "godely/ha-dremel-3d-printer", "authors": ["@godely"], "category": "integration", "description": "Dremel 3D Printer integration for Home Assistant.", "domain": "dremel_3d_printer", "etag_repository": "W/\"d368014bb1a3b873e65116fedb1cc6b6aac7531663273f805340710d03ea5ff6\"", "last_updated": "2022-06-28T18:56:38Z", "stargazers_count": 6, "topics": ["3d", "3d-printer", "3d-printing", "bosch", "dremel", "dremel-idea-builder", "dremel-ideabuilder"], "last_fetched": 1695553650.055713, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "145777833": {"repository_manifest": {}, "full_name": "custom-components/sensor.personalcapital", "authors": ["@iantrich"], "category": "integration", "description": "\ud83d\udcb5 Personal Capital Integration for Bank Account Monitoring", "domain": "personalcapital", "etag_repository": "W/\"dd302b104a64aafff9cada9656d0e484798e547573e90e57c7ea8d4097fa5e3e\"", "last_updated": "2023-04-14T05:56:48Z", "stargazers_count": 12, "last_fetched": 1695553610.635358, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235984421": {"repository_manifest": {"name": "Blackened Theme"}, "full_name": "home-assistant-community-themes/blackened", "category": "theme", "description": "Blackened theme for Home Assistant", "etag_repository": "W/\"11013ee1d4fbd92a8792b72beee9587ece961afc16abdc152dff5e632ee28f09\"", "last_updated": "2023-03-22T11:57:48Z", "stargazers_count": 8, "last_fetched": 1695553496.604603, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261311061": {"repository_manifest": {"name": "Ecowitt Weather Station", "render_readme": true}, "full_name": "garbled1/homeassistant_ecowitt", "authors": ["@garbled1"], "category": "integration", "description": "Ecowitt Weather Station integration for homeassistant", "domain": "ecowitt", "etag_repository": "W/\"9b6d7f506b33c1c9e6144b770daf2b619f4203a619ed2cab767a769bd03c28e8\"", "last_updated": "2023-05-05T15:38:45Z", "stargazers_count": 132, "topics": ["ecowitt"], "last_fetched": 1695553645.373402, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "278596510": {"repository_manifest": {"name": "Leaf Spy", "hacs": "0.24.0", "homeassistant": "0.110.0"}, "full_name": "jesserockz/ha-leafspy", "authors": ["@jesserockz"], "category": "integration", "description": "A Home Assistant integration to receive live data sent from the LeafSpy app", "domain": "leafspy", "etag_repository": "W/\"150b9efb5210db1ceef2f92d4df36eca26aa4ba3df5052cfef2625119c1f7c85\"", "last_updated": "2023-01-18T21:04:26Z", "stargazers_count": 15, "topics": ["electric-vehicles", "ev", "leaf", "leafspy", "nissan"], "last_fetched": 1695553675.343874, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "273333188": {"repository_manifest": {"name": "Daily Sensor", "render_readme": true}, "full_name": "jeroenterheerdt/HADailySensor", "authors": ["@jeroenterheerdt"], "category": "integration", "description": "Sensor for Home Assistant that gets reset at midnight", "domain": "daily", "etag_repository": "W/\"fd415c2d5e9951e7d38ee30368940ca265c5162ebb2fabfbb14c874aa45e8194\"", "last_updated": "2023-06-19T20:44:31Z", "stargazers_count": 37, "topics": ["aggregation", "average", "max", "maximum", "mean", "median", "min", "minimum", "standard-deviation", "statistics", "stdev", "sum", "var", "variance"], "last_fetched": 1695553675.378169, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "542062483": {"repository_manifest": {"name": "HASS.Agent", "homeassistant": "2022.9", "render_readme": true}, "full_name": "LAB02-Research/HASS.Agent-Integration", "authors": ["@fillefilip8", "@LAB02-Admin"], "category": "integration", "description": "HASS.Agent's Home Assistant integration. Adds notifications and mediaplayer capabilities to HASS.Agent - a Windows based client (companion app) for Home Assistant.", "domain": "hass_agent", "etag_repository": "W/\"7ef012a285a30f7815f6d72dc3517a45e2abf686dbb7369c25494a15d1fa50de\"", "last_updated": "2023-08-08T15:26:21Z", "stargazers_count": 67, "topics": ["notifications"], "last_fetched": 1695554105.65303, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199306511": {"repository_manifest": {"name": "Kostal Piko", "render_readme": true}, "full_name": "gieljnssns/kostalpiko-sensor-homeassistant", "authors": ["@gieljnssns"], "category": "integration", "description": "A custom component to get the readings of a Kostal Piko inverter", "domain": "kostal", "etag_repository": "W/\"3e34a7dccd961df6c8976e424ca3095b9b35d2aa8e04cbec168afefae9e8c027\"", "last_updated": "2021-06-16T14:25:39Z", "stargazers_count": 11, "last_fetched": 1695553649.99217, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "336798340": {"repository_manifest": {"name": "TrueNAS", "homeassistant": "2023.9.0", "zip_release": true, "filename": "truenas.zip"}, "full_name": "tomaae/homeassistant-truenas", "authors": ["@tomaae"], "category": "integration", "description": "TrueNAS integration for Home Assistant ", "domain": "truenas", "downloads": 1455, "etag_repository": "W/\"8f4b6c2ab37de51a924e66f5d2ece9d9deb04b0109ee8a60fffb00ff1817a29d\"", "last_updated": "2023-09-19T19:10:22Z", "stargazers_count": 107, "topics": ["homeassistant-custom-component", "truenas"], "last_fetched": 1695554183.700529, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194037195": {"repository_manifest": {}, "full_name": "Ceerbeerus/beerbolaget-card", "category": "plugin", "description": "A custom card for displaying information provided by Beerbolaget (https://github.com/Ceerbeerus/beerbolaget).", "etag_repository": "W/\"5c8d18d10c02dd674503ba9332337e6f9423d884cde24d6b645cd9976c448426\"", "last_updated": "2020-08-07T06:24:51Z", "stargazers_count": 3, "last_fetched": 1695553516.254053, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "163363577": {"repository_manifest": {"name": "Bar Card", "render_readme": true, "filename": "bar-card.js"}, "full_name": "custom-cards/bar-card", "category": "plugin", "description": "Customizable Animated Bar card for Home Assistant Lovelace", "downloads": 64679, "etag_repository": "W/\"6413cebeac14339a4493ed5e3e2b0da31bb4600c2122dca4f9d0b7574e22bf3f\"", "last_updated": "2023-07-04T13:12:35Z", "stargazers_count": 304, "last_fetched": 1695553516.702864, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "339124227": {"repository_manifest": {"name": "Zonneplan ONE", "homeassistant": "2021.12.0", "render_readme": true, "country": "NL"}, "full_name": "fsaris/home-assistant-zonneplan-one", "authors": ["@fsaris"], "category": "integration", "description": "Unofficial Zonneplan ONE + connect integration for Home Assistant", "domain": "zonneplan_one", "etag_repository": "W/\"774ab61af7edb015c231778a74739f33d9b641fd1e4d8f5d2c669fc3929b9d5d\"", "last_updated": "2023-06-09T21:01:00Z", "stargazers_count": 71, "topics": ["home-assistant-component", "zonneplan", "zonneplan-connect", "zonneplan-one"], "last_fetched": 1695553645.599879, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "380367845": {"repository_manifest": {"name": "Eufy Security", "render_readme": true}, "full_name": "fuatakgun/eufy_security", "authors": ["@fuatakgun"], "category": "integration", "description": "Home Assistant integration to manage Eufy Security devices as cameras, home base stations, doorbells, motion and contact sensors.", "domain": "eufy_security", "etag_repository": "W/\"ae541aa8dce527af8b4bd8d3a1cbb314eb5dbe88d1ce119d3725cfa519a471ad\"", "last_updated": "2023-09-13T11:06:59Z", "stargazers_count": 615, "topics": ["camera", "eufy", "eufycam", "eufysecurity", "rtsp", "security"], "last_fetched": 1695553645.593927, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "139634406": {"repository_manifest": {"name": "Dark Thermostat", "render_readme": true, "filename": "thermostat-dark-card.js"}, "full_name": "ciotlosm/lovelace-thermostat-dark-card", "category": "plugin", "description": "\ud83c\udf21 Thermostat card with a round and black feel to it", "downloads": 26265, "etag_repository": "W/\"e5d1bf170c105f4557c4ac3d4ddb9fb8ad3f39d70ec6abcd8cbdb78e0fe7176c\"", "last_updated": "2023-07-09T18:52:12Z", "stargazers_count": 704, "topics": ["thermostat"], "last_fetched": 1695553516.460376, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235449701": {"repository_manifest": {"name": "Lightalarm Card", "filename": "lightalarm-card.js"}, "full_name": "chaptergy/lightalarm-card", "category": "plugin", "description": "\u23f0 Lovelace Card to Control Light Alarm Properties", "etag_repository": "W/\"f76a9454e44b8e574673fb479419feebd18bc1b2c8e66372e62f643b7921e823\"", "last_updated": "2023-07-18T20:41:09Z", "stargazers_count": 34, "last_fetched": 1695553516.368566, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309018094": {"repository_manifest": {"name": "fordpass"}, "full_name": "itchannel/fordpass-ha", "authors": ["@itchannel"], "category": "integration", "description": "Fordpass integration for Home Assistant", "domain": "fordpass", "etag_repository": "W/\"fcb417063d83897f0abad3cbeb99f5fa96ae53b06c9b9b9f0649ab9d391dd2df\"", "last_updated": "2023-09-23T22:41:24Z", "stargazers_count": 170, "topics": ["assistant", "car", "fordpass", "home"], "last_fetched": 1695553666.921153, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "363468409": {"repository_manifest": {"name": "RedPocket Mobile", "render_readme": true}, "full_name": "mbillow/ha-redpocket", "authors": ["@mbillow"], "category": "integration", "description": "RedPocket Integration for Data Usage Monitoring", "domain": "redpocket", "etag_repository": "W/\"656bcee188f69f6684c9e3b9ef67116094ca569aeed4c71ebf03b872d0e15962\"", "last_updated": "2021-06-06T19:51:29Z", "stargazers_count": 3, "topics": ["home", "mvno", "redpocket"], "last_fetched": 1695554120.924623, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265716369": {"repository_manifest": {"name": "Minerstat", "render_readme": "true"}, "full_name": "gilsonmandalogo/hacs-minerstat", "authors": ["@gilsonmandalogo"], "category": "integration", "description": "Minerstat mining hashrate.", "domain": "hacs-minerstat", "etag_repository": "W/\"151d929cc7dcdfdf5e8fd80d4e83e28c8db30da6cda14dbe3b9fff8a499d20a7\"", "last_updated": "2022-01-11T22:19:20Z", "stargazers_count": 4, "topics": ["minerstat", "mining"], "last_fetched": 1695553649.850795, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "323346718": {"repository_manifest": {"name": "AwoX MESH control", "homeassistant": "2022.09.0", "render_readme": true}, "full_name": "fsaris/home-assistant-awox", "authors": ["@fsaris"], "category": "integration", "description": "AwoX mesh light integration for Home Assistant", "domain": "awox", "etag_repository": "W/\"779a3e5bab3ddf554fdcf18e71fb35c931d1fb73cceba11eb124781ea1610a97\"", "last_updated": "2023-06-02T06:50:08Z", "stargazers_count": 75, "topics": ["awox", "bluetooth", "eglo"], "last_fetched": 1695553645.486756, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194824532": {"repository_manifest": {"name": "M\u00e9t\u00e9o France Weather Card", "country": "FR", "render_readme": true}, "full_name": "Imbuzi/meteo-france-weather-card", "category": "plugin", "description": "Weather Card with animated icons for Home Assistant Lovelace adapted to display all informations from M\u00e9t\u00e9o France integration", "etag_repository": "W/\"0482c1d6739561dd6af020eab0c6b4d8f9a687c91e5a10ef26ce4cbc26bb5e38\"", "last_updated": "2023-02-25T18:25:41Z", "stargazers_count": 26, "topics": ["animated-icons", "lovelace-card", "meteo-france", "weather"], "last_fetched": 1695553536.764434, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261873234": {"repository_manifest": {"name": "Sector Alarm", "render_readme": true, "homeassistant": "2022.5.0"}, "full_name": "gjohansson-ST/sector", "authors": ["@gjohansson-ST"], "category": "integration", "description": "Integration to Sector Alarm for Home Assistant", "domain": "sector", "downloads": 12, "etag_repository": "W/\"21b3c5534fdf681fb371f836345776561b5b94713f5f5290942ccf364ddaabde\"", "last_updated": "2023-05-17T10:21:47Z", "stargazers_count": 23, "topics": ["alarm", "alarm-control", "alarm-control-panel", "lock", "sector", "sector-alarm", "temperature-sensor"], "last_fetched": 1695553650.138431, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "221855213": {"repository_manifest": {"name": "Auto Backup", "zip_release": true, "hide_default_branch": true, "filename": "auto_backup.zip", "homeassistant": "2022.4.0"}, "full_name": "jcwillox/hass-auto-backup", "authors": ["@jcwillox"], "category": "integration", "description": "\ud83d\uddc3\ufe0f Improved Backup Service for Home Assistant that can Automatically Remove Backups and Supports Generational Backup Schemes.", "domain": "auto_backup", "downloads": 9936, "etag_repository": "W/\"0332f46a556e6b7cc9f2be80daf257dceaad2889274ffee7a9101429cbf540b5\"", "last_updated": "2023-08-05T10:10:37Z", "stargazers_count": 235, "topics": ["auto-purge", "backups", "generational-backups", "snapshots"], "last_fetched": 1695553671.747905, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328361159": {"repository_manifest": {"name": "ultimaker", "render_readme": true}, "full_name": "jellespijker/home-assistant-ultimaker", "authors": ["@jellespijker"], "category": "integration", "description": "Home-Assistant component for Ultimaker printers (UM3, S3, S5)", "domain": "ultimaker", "etag_repository": "W/\"21e7ec5cff6eb80be0e254ff597623a794d338adbfa471870fb12fbcd2e5ff90\"", "last_updated": "2022-06-07T18:51:42Z", "stargazers_count": 11, "topics": ["3d-printing", "home-assistant-component", "s3", "s5", "ultimaker", "um3"], "last_fetched": 1695553671.446256, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "281214271": {"repository_manifest": {"name": "RPi Monitor Card", "filename": "rpi-monitor-card.js"}, "full_name": "ironsheep/lovelace-rpi-monitor-card", "category": "plugin", "description": "A Raspberry Pi status display Card for Home Assistant Lovelace", "downloads": 7410, "etag_repository": "W/\"dc421021d851bd0e5d3d9f2525187a5ad463b4251d87eedc23b02dc2ed4b3c4d\"", "last_updated": "2023-07-24T14:24:45Z", "stargazers_count": 140, "topics": ["lovelace-card", "lovelace-custom-card", "raspberry-pi"], "last_fetched": 1695553537.158878, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "550121200": {"repository_manifest": {"name": "Weback vacuum", "render_readme": true}, "full_name": "Jezza34000/homeassistant_weback_component", "authors": ["@Jezza34000"], "category": "integration", "description": "Control vacuum using Weback app into HomeAssistant. Many brands using this application can be controlled as : Neatsvor, Tesvor, Abir, Orfeld, Valubot...", "domain": "weback_vacuum", "etag_repository": "W/\"98f01f870f229f1ae8e7cc85e24f12f02faeb33170fdd6716ad0d6342f76cfb1\"", "last_updated": "2023-08-10T11:05:07Z", "stargazers_count": 23, "topics": ["abir", "component", "neatsvor", "tesvor", "vacuum-cleaner", "vacuum-robot", "weback"], "last_fetched": 1695553675.34419, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "273405252": {"repository_manifest": {"name": "Lightning Detector Card", "filename": "lightning-detector-card.js"}, "full_name": "ironsheep/lovelace-lightning-detector-card", "category": "plugin", "description": "A Lightning Detection Display Card for Home Assistant Lovelace", "downloads": 2871, "etag_repository": "W/\"aaac7bddd7f5d9cf29585ec7fbefbd37f3845fecfabad93496f131eebe53bc1c\"", "last_updated": "2023-01-04T15:47:05Z", "stargazers_count": 20, "topics": ["as3935", "lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553537.033087, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237812136": {"repository_manifest": {"name": "Yandex Icons", "filename": "yandex-icons.js", "render_readme": true, "country": ["RU"], "homeassistant": "0.110.0"}, "full_name": "iswitch/ha-yandex-icons", "category": "plugin", "description": "\u0418\u043a\u043e\u043d\u043a\u0438 \u042f\u043d\u0434\u0435\u043a\u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043b\u044f Home Assistant", "etag_repository": "W/\"7564b2ca7a1790c28389d6537919e3967c96a6c408a9ee9604f4e46269a33a44\"", "last_updated": "2023-09-16T23:28:48Z", "stargazers_count": 54, "topics": ["icon-pack", "icons", "yandex"], "last_fetched": 1695553537.943318, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195671060": {"repository_manifest": {"name": "Lovelace Grocy Chores Card", "render_readme": true}, "full_name": "isabellaalstrom/lovelace-grocy-chores-card", "category": "plugin", "description": "A card to track chores and tasks in Grocy.", "etag_repository": "W/\"1aadf2c0ba030f022cba2bfac593f2ac6307aef7ca272d075265ae9cbf054c7f\"", "last_updated": "2023-05-02T19:00:54Z", "stargazers_count": 110, "last_fetched": 1695553537.92502, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164887047": {"repository_manifest": {}, "full_name": "isabellaalstrom/krisinfo-card", "category": "plugin", "description": "A Lovelace custom card for custom component Krisinformation is Home Assistant", "etag_repository": "W/\"fa0259af0ff3d9606052cf9e2ac2af67aec674440cdb08bab8ed5d69e08bccae\"", "last_updated": "2020-09-18T17:45:35Z", "stargazers_count": 7, "last_fetched": 1695553537.183085, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "501368149": {"repository_manifest": {"name": "Fuelprices DK", "country": ["DK"], "render_readme": true}, "full_name": "J-Lindvig/Fuelprices_DK", "authors": ["@J-Lindvig"], "category": "integration", "description": "Scraping of 5 types of fuel :fuelpump: from 8 different fuelcompanies in Denmark :denmark:.", "domain": "fuelprices_dk", "etag_repository": "W/\"01364bb0b6446debed34efd03becfca1c9adcd624a944b93717d5ef53a18a100\"", "last_updated": "2023-08-05T06:55:35Z", "stargazers_count": 15, "topics": ["denmark", "economy", "fuel-prices", "scraping"], "last_fetched": 1695553666.818453, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "574163721": {"repository_manifest": {"name": "Graphite Theme", "render_readme": true}, "full_name": "TilmanGriesel/graphite", "category": "theme", "description": "Calm and clean dark theme for Home Assistant", "etag_repository": "W/\"4f41105c07d7f22a13aef227fe606a5de0c024a9ec835f38b87a8319b691abd4\"", "last_updated": "2023-01-27T19:36:59Z", "stargazers_count": 21, "topics": ["calm", "clean", "dark", "dark-theme", "flat", "minimalist", "modern"], "last_fetched": 1695553506.179775, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "407627914": {"repository_manifest": {"name": "Google Dark Theme", "render_readme": true}, "full_name": "pacjo/google_dark_animated", "category": "theme", "description": "A fork of popular Home Assistant Google dark theme with animated icons", "etag_repository": "W/\"53b093de8df1fe0a48f656fb1e55247d490b79b48df305d610dab200bcf90354\"", "last_updated": "2021-11-22T17:05:56Z", "stargazers_count": 4, "topics": ["ha"], "last_fetched": 1695553504.178677, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146660369": {"repository_manifest": {"name": "Bravia TV PSK", "zip_release": true, "filename": "combined.zip", "hide_default_branch": true}, "full_name": "custom-components/media_player.braviatv_psk", "authors": ["@gerard33"], "category": "integration", "description": "Sony Bravia TV (Pre-Shared Key) component for Home Assistant", "domain": "braviatv_psk", "downloads": 4988, "etag_repository": "W/\"9c7e30f885a95028d1c1a23bf88f0203f74b29241dc5d2d92690d4097208d875\"", "last_updated": "2023-02-23T19:07:55Z", "stargazers_count": 103, "topics": ["bravia", "psk", "sony"], "last_fetched": 1695553607.695823, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201963665": {"repository_manifest": {"name": "Healthchecks.io", "zip_release": true, "hide_default_branch": true, "filename": "healthchecksio.zip"}, "full_name": "custom-components/healthchecksio", "authors": ["@ludeeus"], "category": "integration", "description": "Update and display the status of your healthchecks.io checks.", "domain": "healthchecksio", "downloads": 1438, "etag_repository": "W/\"b9cdc136e882c2ac067a298e35d5a319c53fd5fedced8e421a51ac3f572ce612\"", "last_updated": "2023-08-16T01:49:59Z", "stargazers_count": 42, "topics": ["api-client", "healthchecksio", "monitor"], "last_fetched": 1695553607.6967, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236664033": {"repository_manifest": {"name": "Swipe Glance Card", "render_readme": true, "filename": "swipe-glance-card.js"}, "full_name": "dooz127/swipe-glance-card", "category": "plugin", "description": ":point_up_2: Swipe Glance Card", "downloads": 2851, "etag_repository": "W/\"5dbf193ecd7084389d21470bec75f74688cb88e4e928b95851cb6c149ab7b5ed\"", "last_updated": "2023-01-04T14:06:20Z", "stargazers_count": 12, "topics": ["automation"], "last_fetched": 1695553526.594648, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146379582": {"repository_manifest": {"name": "Trakt", "homeassistant": "0.99.0", "render_readme": true}, "full_name": "custom-components/sensor.trakt", "authors": ["@iantrich", "@engrbm"], "category": "integration", "description": "\ud83d\udcfa Trakt Integration for Upcoming Media Card", "domain": "trakt", "etag_repository": "W/\"7c8a493df97519874012ced98aa964739e51d9bf11fcc5becdab2d38547dfc1d\"", "last_updated": "2022-06-21T14:17:46Z", "stargazers_count": 55, "last_fetched": 1695553611.425243, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "490231724": {"repository_manifest": {"name": "Elro Connects", "hacs": "1.0.0", "homeassistant": "2023.7.2"}, "full_name": "jbouwh/ha-elro-connects", "authors": ["@jbouwh"], "category": "integration", "description": "Elro Connects K1 for Home Assistant via HACS", "domain": "elro_connects", "etag_repository": "W/\"9893634b036b43d54854358c8988bfc6686c37e22dc9dc85778ac405eb0d7be7\"", "last_updated": "2023-07-22T15:35:24Z", "stargazers_count": 8, "topics": ["elro", "fire-alarm", "fire-alarm-monitoring-system", "hacs-custom", "siterwell"], "last_fetched": 1695553671.653123, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231989179": {"repository_manifest": {"name": "HASS Bardolph"}, "full_name": "JAAlperin/hass-bardolph", "authors": ["al-fontes-jr", "JAAlperin"], "category": "integration", "description": "HASS custom component to load and run Bardolph (simple scripting utility for LIFX light bulbs by Al Fontes, Jr.)", "domain": "bardolph", "etag_repository": "W/\"8a7df207645742045e2c1d6012872e7d37247b1b273295b7833ea6a901a2265e\"", "last_updated": "2021-05-08T22:23:44Z", "stargazers_count": 3, "topics": ["bardolph", "color-bulb", "lifx", "lifx-lan-protocol", "scripts", "services"], "last_fetched": 1695553666.614965, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228685436": {"repository_manifest": {"name": "Toon Boiler Status"}, "full_name": "cyberjunky/home-assistant-toon_boilerstatus", "authors": ["@cyberjunky"], "category": "integration", "description": "This component reads and displays the boiler status values from a rooted Toon thermostat.", "domain": "toon_boilerstatus", "etag_repository": "W/\"88a48d6ff8328480d0698b0953a3ed6d65be301a2b40732bfbc68b94355c0106\"", "last_updated": "2023-01-04T12:20:20Z", "stargazers_count": 9, "topics": ["cv", "opentherm", "toon"], "last_fetched": 1695553613.65288, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188323494": {"repository_manifest": {"name": "Ha Floorplan", "filename": "floorplan.js"}, "full_name": "ExperienceLovelace/ha-floorplan", "category": "plugin", "description": "Bring new life to Home Assistant. By mapping entities to a SVG-object, you're able to control devices, show states, calling services - and much more. Add custom styling on top, to visualize whatever you can think of. Your imagination just become the new limit.", "etag_repository": "W/\"873170a76691c52f4ec7c3210e3e935545fe69712c4de59d37961aca1389224a\"", "last_updated": "2023-09-23T21:53:09Z", "stargazers_count": 835, "topics": ["floorplan", "lovelace-card", "lovelace-floorplan", "panel"], "last_fetched": 1695553526.892133, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "350509867": {"repository_manifest": {"name": "Uptime Card", "render_readme": true, "filename": "uptime-card.js"}, "full_name": "dylandoamaral/uptime-card", "category": "plugin", "description": "Minimalistic uptime card for Home Assistant Lovelace UI", "downloads": 5327, "etag_repository": "W/\"8bedd9a1b7fd3ba6e016c918371152772d28799030a312a7fa79ef13108185bc\"", "last_updated": "2023-08-28T15:43:43Z", "stargazers_count": 216, "topics": ["card", "custom", "uptime", "uptime-card"], "last_fetched": 1695553526.643605, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366862031": {"repository_manifest": {"name": "Custom brand icons"}, "full_name": "elax46/custom-brand-icons", "category": "plugin", "description": "Custom brand icons for Home Assistant", "etag_repository": "W/\"60acb5911db54ac14bcad67767a302910c7cc6c9e69599d313fcc69a6f6b62cf\"", "last_updated": "2023-09-23T10:15:32Z", "stargazers_count": 330, "topics": ["custom-icons", "icons", "icons-pack", "iconset", "ikea", "philips-hue", "xiaomi"], "last_fetched": 1695553526.83717, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "271984369": {"repository_manifest": {"name": "Ferroamp Sensors", "homeassistant": "2023.7.0"}, "full_name": "henricm/ha-ferroamp", "authors": ["@henricm", "@argoyle"], "category": "integration", "description": "Ferroamp MQTT Home Assistant sensors for EnergyHub, SSO, ESM and ESO", "domain": "ferroamp", "etag_repository": "W/\"7f0b1e3e881ce51c06329b6ca43b982d790a2d3e7f1fce7f46a69b103db37eb6\"", "last_updated": "2023-09-16T19:29:42Z", "stargazers_count": 33, "topics": ["ferroamp", "homeassistant-custom-component"], "last_fetched": 1695553659.102808, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441738040": {"repository_manifest": {"name": "Soft Theme", "render_readme": true, "homeassistant": "2021.6", "country": "US"}, "full_name": "KTibow/lovelace-soft-theme", "category": "theme", "description": "\ud83c\udfa8 A new, simple soft theme for Home Assistant.", "etag_repository": "W/\"78aced2574e7868bab80fdcc14f988ef199d586574ae249009a29461241b8959\"", "last_updated": "2021-12-25T19:04:42Z", "stargazers_count": 23, "topics": ["soft-ui"], "last_fetched": 1695553502.211076, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200399989": {"repository_manifest": {"name": "Clean up snapshots service", "render_readme": true}, "full_name": "tmonck/clean_up_snapshots", "authors": ["@tmonck"], "category": "integration", "description": "Service to clean up your home assistant snapshots, so you don't manually have to.", "domain": "clean_up_snapshots_service", "downloads": 5, "etag_repository": "W/\"e761a4519a2bce20f047525d5821fed454de1be0b64ef3c66a90267cf9f56fc8\"", "last_updated": "2023-09-04T13:40:49Z", "stargazers_count": 14, "topics": ["backups"], "last_fetched": 1695554183.698636, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "392931946": {"repository_manifest": {"name": "Aria2 card", "render_readme": true, "filename": "aria2-card.js"}, "full_name": "deblockt/aria2-card", "category": "plugin", "description": "An aria2 card for home assistant", "downloads": 319, "etag_repository": "W/\"57be9e508ca0e12226b188c27da5f679c8e9891322f628179fba15954e4f6566\"", "last_updated": "2022-09-20T13:30:10Z", "stargazers_count": 3, "topics": ["aria2", "download-manager"], "last_fetched": 1695553523.74794, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534353896": {"repository_manifest": {"name": "HA LCARS", "render_readme": true, "filename": "lcars.yaml", "country": ["US", "GB"]}, "full_name": "th3jesta/ha-lcars", "category": "theme", "description": "LCARS theme for Home Assistant", "etag_repository": "W/\"e66ed43b256690104c441649fb2c581158ee5ea7825a3ea0638e7d53e4af1191\"", "last_updated": "2023-09-10T04:52:04Z", "stargazers_count": 157, "topics": ["ha-theme", "hacs-theme", "homeassistant-themes", "lcars", "lcars-interface", "lcars-style", "startrek"], "last_fetched": 1695553506.278406, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "381052530": {"repository_manifest": {"name": "FordPass China", "country": ["CN"], "render_readme": true}, "full_name": "georgezhao2010/fordpass_china", "authors": ["@georgezhao2010"], "category": "integration", "description": "\u798f\u7279\u6d3e\u7684Home Assistant\u96c6\u6210\u7ec4\u4ef6\uff0c\u901a\u8fc7Home Assistant\u8fdc\u7a0b\u76d1\u63a7\u6216\u8005\u63a7\u5236\u4f60\u7684\u798f\u7279/\u6797\u80af\u6c7d\u8f66", "domain": "fordpass_china", "etag_repository": "W/\"d1440285aa0c6b07a1bcf05bf8957d9310bda46fe8a72bb23275070528ed61eb\"", "last_updated": "2022-11-10T11:48:30Z", "stargazers_count": 24, "topics": ["china", "ford", "fordpass", "lincoln", "lincoln-way"], "last_fetched": 1695553647.834357, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "625309779": {"repository_manifest": {"name": "Nexxtmove", "render_readme": true, "country": ["BE"]}, "full_name": "geertmeersman/nexxtmove", "authors": ["@geertmeersman"], "category": "integration", "description": "Home Assistant component for the Nexxtmove - Powerdale platform", "domain": "nexxtmove", "etag_repository": "W/\"e71947337c9f1bd3c1e93a7dedcb4ebd8711f129688a61fa4e85aca4683fe3fe\"", "last_updated": "2023-09-22T09:58:57Z", "stargazers_count": 3, "topics": ["hacs-custom", "nexxtmove", "powerdale"], "last_fetched": 1695553647.68962, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264490983": {"repository_manifest": {"name": "Slack User", "render_readme": true}, "full_name": "GeorgeSG/ha-slack-user", "authors": ["@GeorgeSG"], "category": "integration", "description": "Slack User sensor for Home Assistant", "domain": "slack_user", "etag_repository": "W/\"c26fa1aa64bb3ec4f3dc72a28e918e3a189349608e826cf4c5ba1fc725d7414e\"", "last_updated": "2022-12-01T14:00:43Z", "stargazers_count": 23, "topics": ["home-assistant-component"], "last_fetched": 1695553647.73925, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "296396632": {"repository_manifest": {"name": "Rejseplanen S-Tog Card", "country": "DK"}, "full_name": "DarkFox/rejseplanen-stog-card", "category": "plugin", "description": "Lovelace card for listing departures from Rejseplanen sensors, in the style of S-Tog departure boards.", "etag_repository": "W/\"65758f669550ac87e6ceea3132c189f4d779165f0d7978012b40cb367ae7282c\"", "last_updated": "2023-01-06T14:35:56Z", "stargazers_count": 5, "topics": ["denmark", "lovelace-card", "rejseplanen", "rejseplanen-sensors"], "last_fetched": 1695553522.496729, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "483187645": {"repository_manifest": {}, "full_name": "geoffreylagaisse/Hass-Microsoft-Graph", "authors": ["@jlweston", "@geoffreylagaisse"], "category": "integration", "description": "Microsoft Graph API Presence Integration for Home Assistant", "domain": "microsoft_graph", "etag_repository": "W/\"8644ad889b2541bd1edfd2524f820b27dc6e6af44cf98381d171666bae80f7b8\"", "last_updated": "2023-04-28T15:38:44Z", "stargazers_count": 23, "topics": ["custom", "graphapi"], "last_fetched": 1695553647.736066, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245461": {"repository_manifest": {}, "full_name": "custom-cards/entity-attributes-card", "category": "plugin", "description": "Entity Attributes", "etag_repository": "W/\"7714e85d66fc4f3d6b568f88115fbfce99c843a6f02e799f28305d9dc64fafc6\"", "last_updated": "2021-06-05T21:05:54Z", "stargazers_count": 60, "last_fetched": 1695553518.104533, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196132939": {"repository_manifest": {"homeassistant": "0.106.0", "name": "Nintendo Wishlist Card", "render_readme": true}, "full_name": "custom-cards/nintendo-wishlist-card", "category": "plugin", "description": "Displays a card showing Nintendo Switch games that are on sale from your wish list.", "etag_repository": "W/\"d9295d04dc0362be2c258ae2ed7d910fea2a49e674a8dc863e578e61f9f50c4d\"", "last_updated": "2021-03-04T02:29:13Z", "stargazers_count": 11, "last_fetched": 1695553519.662298, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "156292058": {"repository_manifest": {"name": "Flex Table - Highly customizable, Data visualization", "content_in_root": true, "filename": "flex-table-card.js"}, "full_name": "custom-cards/flex-table-card", "category": "plugin", "description": "Highly Flexible Lovelace Card - arbitrary contents/columns/rows, regex matched, perfect to show appdaemon created content and anything breaking out of the entity_id + attributes concept", "etag_repository": "W/\"41ef8c002b78b0a16059f01a6c4d3e37b98125fd8e30ccbf59e4ba3965b1f72c\"", "last_updated": "2023-09-19T10:37:05Z", "stargazers_count": 155, "topics": ["data-table", "data-visualization", "flexible-table", "high-configurability", "javascript", "single-file", "table-visualization"], "last_fetched": 1695553518.491381, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "625947979": {"repository_manifest": {"name": "Youfone", "render_readme": true, "country": ["BE", "NL"]}, "full_name": "geertmeersman/youfone", "authors": ["@geertmeersman"], "category": "integration", "description": "Home Assistant component for Youfone BE & NL services", "domain": "youfone", "etag_repository": "W/\"493c9bb2a635936dba5c735180f45f01b9361767eb1e3d1a1dae5dcf450174d2\"", "last_updated": "2023-09-18T06:17:56Z", "stargazers_count": 2, "topics": ["youfone"], "last_fetched": 1695553647.881259, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245511": {"repository_manifest": {"name": "group-card", "render_readme": true}, "full_name": "custom-cards/group-card", "category": "plugin", "description": null, "etag_repository": "W/\"be02564a8082b862df3834ced6395d5d6f8eef666164a5704ef60b820f921104\"", "last_updated": "2021-06-12T14:19:18Z", "stargazers_count": 23, "last_fetched": 1695553518.612188, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151318225": {"repository_manifest": {"name": "light-entity-row", "render_readme": true}, "full_name": "custom-cards/light-entity-row", "category": "plugin", "description": "Entity row for lights with sliders for adjusting different values based on features", "etag_repository": "W/\"dfdda56dceef29ba04ecbe9ce745c40741b99024a7780c60192595961be6ab1e\"", "last_updated": "2023-01-28T20:14:04Z", "stargazers_count": 54, "last_fetched": 1695553518.826132, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180000010": {"repository_manifest": {}, "full_name": "custom-cards/cover-element", "category": "plugin", "description": null, "downloads": 3131, "etag_repository": "W/\"02d78a8cf90f9c97afe72a320c41ba2bdda3e53da870ac0907fe02e3e650dd2a\"", "last_updated": "2019-06-03T04:34:16Z", "stargazers_count": 17, "last_fetched": 1695553517.988795, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "389366750": {"repository_manifest": {"name": "Rental Control", "hacs": "1.13.2", "zip_release": true, "filename": "rental_control.zip", "homeassistant": "2022.5.0"}, "full_name": "tykeal/homeassistant-rental-control", "authors": ["@tykeal"], "category": "integration", "description": "Rental Control system for Home Assistant", "domain": "rental_control", "downloads": 149, "etag_repository": "W/\"de81338e3726c3c0891b606862f73ddb76cee4472652127bd6be62c9ae28efdd\"", "last_updated": "2023-09-18T20:35:45Z", "stargazers_count": 22, "topics": ["airbnb", "ical", "locks"], "last_fetched": 1695554190.469362, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "176018567": {"repository_manifest": {"name": "gPodder", "render_readme": true, "zip_release": true, "hide_default_branch": true, "hacs": "0.19.0", "filename": "gpodder.zip"}, "full_name": "custom-components/gpodder", "authors": ["@iantrich"], "category": "integration", "description": "\ud83c\udfa7 gPodder Integration for Podcast Feed Monitoring", "domain": "gpodder", "downloads": 458, "etag_repository": "W/\"30f49e9d5afaf130b14749ca9032b9524a71e88aaf31302d069bad0c04d5e767\"", "last_updated": "2021-06-05T21:16:30Z", "stargazers_count": 11, "last_fetched": 1695553607.108147, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188686483": {"repository_manifest": {"name": "Decluttering Card", "render_readme": true, "filename": "decluttering-card.js"}, "full_name": "custom-cards/decluttering-card", "category": "plugin", "description": "\ud83e\uddf9 Declutter your lovelace configuration with the help of this card", "downloads": 9308, "etag_repository": "W/\"9722c115771c87e82e075d47f6ea35f4e803b44317f480a5407148f05ebf1ad1\"", "last_updated": "2023-07-18T21:23:00Z", "stargazers_count": 278, "last_fetched": 1695553518.418006, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "396083412": {"repository_manifest": {"name": "Midea AC LAN", "render_readme": true, "homeassistant": 2022.5, "zip_release": true, "filename": "mieda_ac_lan.zip"}, "full_name": "georgezhao2010/midea_ac_lan", "authors": ["@georgezhao2010"], "category": "integration", "description": "Auto-configure and then control your Midea M-Smart devices (Air conditioner, Fan, Water heater, Washer, etc) via local area network.", "domain": "midea_ac_lan", "downloads": 864, "etag_repository": "W/\"a43508c8dde951346b03f1605b830dec3d80be5e3a5fe280e6526b509a85c9a6\"", "last_updated": "2023-09-22T16:48:49Z", "stargazers_count": 736, "topics": ["air-conditioner", "air-purifier", "cooker", "dehumidifier", "dishwasher", "dryer", "fan", "humidifier", "lan", "midea", "refrigerator", "washer", "water-heater"], "last_fetched": 1695553649.619264, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "625647772": {"repository_manifest": {"name": "Mobile Vikings", "render_readme": true, "country": ["BE"]}, "full_name": "geertmeersman/mobile_vikings", "authors": ["@geertmeersman"], "category": "integration", "description": "Home Assistant component for Mobile Vikings BE services", "domain": "mobile_vikings", "etag_repository": "W/\"1e827a76ab84a4ccb5f5ca70b1a43750d7c12361c938554de5ce058ceefe9a64\"", "last_updated": "2023-09-22T09:57:40Z", "stargazers_count": 7, "topics": ["hacs-custom"], "last_fetched": 1695553647.635793, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "637354954": {"repository_manifest": {"name": "Robonect", "render_readme": true}, "full_name": "geertmeersman/robonect", "authors": ["@geertmeersman"], "category": "integration", "description": "Home Assistant integration for Robonect", "domain": "robonect", "etag_repository": "W/\"f3a24c56d0241751dff8f866d30d64b13232717299cdc8cb895c4a57aa11797d\"", "last_updated": "2023-09-23T19:12:29Z", "stargazers_count": 22, "topics": ["robonect"], "last_fetched": 1695553647.798932, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "167885769": {"repository_manifest": {"name": "Arlo Camera Support", "homeassistant": "0.110.0"}, "full_name": "twrecked/hass-aarlo", "authors": ["@twrecked"], "category": "integration", "description": "Asynchronous Arlo Component for Home Assistant", "domain": "aarlo", "etag_repository": "W/\"0fdbd93badf648242fca769b8bd8b48d96555c6dcb891a131162aeb95cc34c01\"", "last_updated": "2023-08-03T00:38:31Z", "stargazers_count": 330, "topics": ["arlo", "netgear"], "last_fetched": 1695554188.451106, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223028160": {"repository_manifest": {"name": "Green Slate Theme"}, "full_name": "pbeckcom/green_slate_theme", "category": "theme", "description": "Green adaptation of this Home-Assistant theme: https://github.com/seangreen2/slate_theme", "etag_repository": "W/\"dc67aa5a882e556ca2eafd9db6a333eaa09715ccb6ac93c7885d7f041070fc25\"", "last_updated": "2019-11-20T22:22:55Z", "stargazers_count": 1, "last_fetched": 1695553504.298624, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "143762825": {"repository_manifest": {"name": "Dual gauge card", "filename": "dual-gauge-card.js", "content_in_root": true}, "full_name": "custom-cards/dual-gauge-card", "category": "plugin", "description": "Dual gauge custom card for Lovelace in Home Assistant", "etag_repository": "W/\"2fb0a2fb7206b7483d45770f4060c6c916f3529ad4039b5663b0265a1a604370\"", "last_updated": "2022-11-01T08:48:35Z", "stargazers_count": 151, "last_fetched": 1695553518.302822, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245495": {"repository_manifest": {"name": "gauge-card", "render_readme": true}, "full_name": "custom-cards/gauge-card", "category": "plugin", "description": null, "etag_repository": "W/\"6a0cf1d6b394640d9db103b9771b202d73c09d4ba84d2f5f89df7e4469c3aa25\"", "last_updated": "2022-05-01T20:12:53Z", "stargazers_count": 34, "last_fetched": 1695553518.563611, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "179491130": {"repository_manifest": {}, "full_name": "custom-cards/group-element", "category": "plugin", "description": "A group element for picture-elements with dynamic toggle capability", "downloads": 1028, "etag_repository": "W/\"1e740106490004c445c4862736a5794dfddf0e9269731cd6bd1b738e7f3f0419\"", "last_updated": "2023-02-16T13:58:24Z", "stargazers_count": 60, "last_fetched": 1695553518.492074, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328566789": {"repository_manifest": {"name": "BeoPlay", "country": "US", "render_readme": true}, "full_name": "giachello/beoplay", "authors": ["@giachello"], "category": "integration", "description": "Home Assistant component to control BeoPlay including TVs, Speakers and others. ", "domain": "beoplay", "etag_repository": "W/\"9a0c856edfbf7bec197e3ede491e6731781015c4bb9cd42841ccd1a6aabd9cee\"", "last_updated": "2023-04-16T22:52:36Z", "stargazers_count": 16, "topics": ["bang-olufsen"], "last_fetched": 1695553649.738101, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "326352749": {"repository_manifest": {"name": "MasterLink Gateway", "country": "US", "render_readme": true}, "full_name": "giachello/mlgw", "authors": ["@giachello", "@Lele-72", "@astrandb"], "category": "integration", "description": "This components integrates Bang & Olufsen Master Link Gateway and Beolink Gateway to Home Assistant, the open-source home automation platform.", "domain": "mlgw", "etag_repository": "W/\"8baf8e5614435604418bab235ec5c29dcf7443d3c273254f05550f5c3dc90e7d\"", "last_updated": "2023-08-18T15:06:31Z", "stargazers_count": 21, "topics": ["bang-olufsen", "beolink-gateway", "masterlink-gateway", "mlgw-configuration"], "last_fetched": 1695553649.801099, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "270386127": {"repository_manifest": {"name": "Comelit SimpleHome/Vedo integration for Home Assistant", "homeassistant": "2021.12.0", "render_readme": true}, "full_name": "gicamm/homeassistant-comelit", "authors": ["@gicamm"], "category": "integration", "description": "With Comelit Hub/Vedo integration, you can connect your Home Assistant instance to Comelit Simple Home and Vedo systems.", "domain": "comelit", "etag_repository": "W/\"73195344f5ad643dcd67f17d2d2ad5584541870d4e83b0745a7a91655048af37\"", "last_updated": "2023-06-09T23:42:31Z", "stargazers_count": 16, "topics": ["automation", "comelit", "comelit-hub", "comelit-vedo", "vedo"], "last_fetched": 1695553649.872221, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "402156016": {"repository_manifest": {"name": "Kamstrup 403", "homeassistant": "2023.6.0", "render_readme": true}, "full_name": "golles/ha-kamstrup_403", "authors": ["@golles"], "category": "integration", "description": "Custom component that integrates the Kamstrup 403 heating system into Home Assistant. This component does also support a few other heating systems", "domain": "kamstrup_403", "etag_repository": "W/\"12a63a045ffca69f4039b5c7f90adddfc3dda2d4c51734decd2a7ce3561ef910\"", "last_updated": "2023-09-04T18:24:54Z", "stargazers_count": 54, "topics": ["home-assistant-component", "home-assistant-integration", "kamstrup", "kamstrup403", "stadsverwarming"], "last_fetched": 1695553651.964935, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "376390299": {"repository_manifest": {"name": "KNMI", "homeassistant": "2023.9.0", "render_readme": true}, "full_name": "golles/ha-knmi", "authors": ["@golles"], "category": "integration", "description": "Custom component that integrates KNMI weather service in to Home Assistant", "domain": "knmi", "etag_repository": "W/\"d2f0362d1c62b56e78be1f4b1c374fdde57194c861c030c1417f871d7bc5f3f6\"", "last_updated": "2023-09-07T15:14:55Z", "stargazers_count": 62, "topics": ["home-assistant-component", "home-assistant-integration", "knmi", "weather", "weerlive"], "last_fetched": 1695553652.10183, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265587564": {"repository_manifest": {"name": "Kamstrup Multicall 66C", "homeassistant": "2021.1.0", "render_readme": true}, "full_name": "golles/Home-Assistant-Sensor-MC66C", "authors": ["@golles"], "category": "integration", "description": "Custom component that integrates the Kamstrup Multicall 66C heating system into Home Assistant", "domain": "mc66c", "etag_repository": "W/\"c6e6376647cb9138b8ca6252f5be5f69eca36047ab0cf4e2fec244181397157d\"", "last_updated": "2023-09-04T18:26:49Z", "stargazers_count": 13, "topics": ["home-assistant-component", "home-assistant-integration", "kamstrup", "stadsverwarming"], "last_fetched": 1695553651.956224, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "480992848": {"repository_manifest": {"name": "macOS Theme - Based on the system-wide light and dark mode UI", "render_readme": true}, "full_name": "JuanMTech/macOS-Theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- Theme based on the macOS system-wide light and dark mode interface", "etag_repository": "W/\"574eff7dd19a9923286235597dbf080c7dedc04ec8a90c9b0425b818602b67bc\"", "last_updated": "2023-01-13T19:20:50Z", "stargazers_count": 36, "topics": ["darktheme", "lighttheme"], "last_fetched": 1695553502.231706, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "532472578": {"repository_manifest": {"name": "Evonic Fires", "render_readme": true}, "full_name": "greghesp/ha-evonic", "authors": ["@greghesp"], "category": "integration", "description": "Unofficial Evonic Fire integration for Home Assistant", "domain": "evonic", "etag_repository": "W/\"1b2c124b612e20c1eb67df24a4460a3be344c3067df43c2e4bc3f897bf5cd347\"", "last_updated": "2023-09-03T07:42:19Z", "stargazers_count": 6, "topics": ["evonic", "evonicfires", "homeassistant-custom-component"], "last_fetched": 1695553652.089166, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207794683": {"repository_manifest": {"name": "GoogleGeocode-HASS", "render_readme": true}, "full_name": "gregoryduckworth/GoogleGeocode-HASS", "category": "integration", "description": "Google Location for HASS using the Google Geocode API", "domain": "google_geocode", "etag_repository": "W/\"af98bad5216fdfe8c8b8bc74768873958eff8585d32c5d23712b9419fe15e593\"", "last_updated": "2022-05-13T16:17:01Z", "stargazers_count": 13, "last_fetched": 1695553652.081103, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448031517": {"repository_manifest": {"name": "Shellies Discovery Gen2", "homeassistant": "2023.9.0b0", "zip_release": true, "filename": "shellies-discovery-gen2.zip"}, "full_name": "bieniu/ha-shellies-discovery-gen2", "category": "python_script", "description": "Script that adds MQTT discovery support for Shellies Gen2 devices", "downloads": 150, "etag_repository": "W/\"34145a76be98214d98233ea69b2c2a9dc8a5cc82402bfda2bf7357de7758a0c3\"", "last_updated": "2023-09-22T04:51:01Z", "stargazers_count": 54, "topics": ["discovery", "mqtt", "shelly"], "last_fetched": 1695553506.907903, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "141952963": {"repository_manifest": {"name": "Circle Sensor Card", "homeassistant": "2020.12.0", "content_in_root": true, "filename": "circle-sensor-card.js"}, "full_name": "custom-cards/circle-sensor-card", "category": "plugin", "description": "A custom component for displaying sensor values as cards or elements", "etag_repository": "W/\"93f70258b488532d5a47c3b17a4d647056858d6273845e80d8004c8a934d1e7a\"", "last_updated": "2022-06-02T04:10:16Z", "stargazers_count": 162, "last_fetched": 1695553517.754942, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "371474642": {"repository_manifest": {"name": "consul", "render_readme": "true"}, "full_name": "gtjadsonsantos/consul", "authors": ["@jadson179"], "category": "integration", "description": "home-assistant service for control the consul \ud83d\udd34", "domain": "consul", "etag_repository": "W/\"1c4ab038f6c520bf6c3ecb173153c05cd955a34346ec3ac451ed03cee477e066\"", "last_updated": "2021-10-09T12:30:45Z", "stargazers_count": 3, "topics": ["consul"], "last_fetched": 1695553651.957667, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309178213": {"repository_manifest": {"name": "controlid", "render_readme": "true"}, "full_name": "gtjadsonsantos/controlid", "authors": ["@jadson179"], "category": "integration", "description": "home-assistant service for control the controlid \ud83d\udeaa\ud83d\udd11", "domain": "controlid", "etag_repository": "W/\"cd2203b07eb57a9d532d0c2b5fe2aeb23565b9188dd19280e4d7fe28e2c77edb\"", "last_updated": "2021-06-24T16:29:59Z", "topics": ["controlid"], "last_fetched": 1695553652.042105, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309195773": {"repository_manifest": {"name": "vapix", "render_readme": "true"}, "full_name": "gtjadsonsantos/vapix", "authors": ["@jadson179"], "category": "integration", "description": "home-assistant service for control the vapix \ud83d\udeaa\ud83d\udd11", "domain": "vapix", "etag_repository": "W/\"d4b4b9195e8281b6afc8c688921467976ad81700a26d8ef4d602ce7169494771\"", "last_updated": "2021-06-22T11:49:49Z", "topics": ["axis", "services"], "last_fetched": 1695553652.166572, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "432434646": {"repository_manifest": {"name": "Securitas Direct Alarm", "homeassistant": "2021.9.0"}, "full_name": "guerrerotook/securitas-direct-new-api", "authors": ["@guerrerotook"], "category": "integration", "description": "This repository contains the new securitas direct API that can be integrated in Home Assistant", "domain": "securitas", "etag_repository": "W/\"671ad394009a90acfe14dee82d13d678e81ee721563d204baafde51935a09c43\"", "last_updated": "2023-09-23T15:26:34Z", "stargazers_count": 53, "last_fetched": 1695553652.290948, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "282509738": {"repository_manifest": {"name": "OVH DynHost", "render_readme": true}, "full_name": "GuilleGF/hassio-ovh", "authors": ["@GuilleGF"], "category": "integration", "description": "OVH DynHost Updater Component for https://www.home-assistant.io/", "domain": "ovh", "etag_repository": "W/\"ce3cfe71f887e3ba8605b855a704abd19e31a0b964a4beff4973c7cf520bfdbf\"", "last_updated": "2022-08-08T13:04:12Z", "stargazers_count": 18, "topics": ["ddns", "ddns-updater", "ovh", "ovh-dynhost"], "last_fetched": 1695553652.318023, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "323152128": {"repository_manifest": {"name": "Crunch-O-Meter", "render_readme": true, "zip_release": true, "filename": "crunch_o_meter.zip"}, "full_name": "GuyLewin/home-assistant-crunch-o-meter", "authors": ["@guylewin"], "category": "integration", "description": "Crunch-O-Meter API as sensors in Home Assistant. See how many people are currently at your local gym", "domain": "crunch_o_meter", "downloads": 123, "etag_repository": "W/\"b03bab1ac86a26c2e0956858032468e0005bd0ab8238decb66fe6d52d2d201ec\"", "last_updated": "2021-06-14T13:06:16Z", "stargazers_count": 1, "topics": ["crunch", "crunch-o-meter"], "last_fetched": 1695553654.080269, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "462065554": {"repository_manifest": {"name": "Life Time Fitness", "render_readme": true, "zip_release": true, "filename": "lifetime_fitness.zip"}, "full_name": "GuyLewin/home-assistant-lifetime-fitness", "authors": ["@GuyLewin"], "category": "integration", "description": "Life Time Fitness integration for Home Assistant", "domain": "lifetime_fitness", "downloads": 40, "etag_repository": "W/\"89a11209edbd5cda89b1f97b1e42b859bf689f7dc3aa6100713bc558d0ea1f72\"", "last_updated": "2023-05-13T12:48:58Z", "topics": ["lifetime"], "last_fetched": 1695553654.05978, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "263075818": {"repository_manifest": {"name": "HA-meural"}, "full_name": "GuySie/ha-meural", "authors": ["@guysie"], "category": "integration", "description": "Integration for NETGEAR Meural Canvas digital art frame in Home Assistant ", "domain": "meural", "etag_repository": "W/\"1ee7ce861e7d3d50dea7065b978b0749305daed27db2cc9fa735046bd2faa488\"", "last_updated": "2023-08-16T19:55:02Z", "stargazers_count": 54, "topics": ["meural", "netgear"], "last_fetched": 1695553654.178872, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "506356147": {"repository_manifest": {"name": "Haier hOn", "homeassistant": "2022.6.0"}, "full_name": "gvigroux/hon", "authors": ["@gvigroux", "@MiguelAngelLV"], "category": "integration", "description": "Support of all Haier, Candy, Hoover appliances integrated in the official hOn mobile app. The only one supporting Climate!", "domain": "hon", "downloads": 13, "etag_repository": "W/\"c956d70ab1c2dffb3b919962cad30714c0ca99f1f38696dfc8e3c60bf3ecfc1f\"", "last_updated": "2023-09-07T12:47:20Z", "stargazers_count": 107, "topics": ["candy", "haier", "hon", "hoover"], "last_fetched": 1695553654.280052, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "383608593": {"repository_manifest": {"name": "Toshiba AC", "render_readme": true, "homeassistant": "2023.3.0"}, "full_name": "h4de5/home-assistant-toshiba_ac", "authors": ["@h4de5"], "category": "integration", "description": "Toshiba AC integration into home-assistant.io", "domain": "toshiba_ac", "downloads": 90, "etag_repository": "W/\"41ad1a32f47522132c175888646f08af8ba893d1f9f95083cae91acc19808277\"", "last_updated": "2023-08-06T07:06:09Z", "stargazers_count": 89, "topics": ["climate", "toshiba"], "last_fetched": 1695553654.45204, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269205129": {"repository_manifest": {"name": "VIMAR By-Me Hub", "render_readme": true, "homeassistant": "2021.12.0"}, "full_name": "h4de5/home-assistant-vimar", "authors": ["@h4de5", "@robigan", "@davideciarmiello"], "category": "integration", "description": "VIMAR by-me integration into home-assistant.io", "domain": "vimar", "downloads": 7, "etag_repository": "W/\"8287b8f71bec9e3159dc6ec7d9f3fa813a30ef4f9bfb10d1e424662224a0b284\"", "last_updated": "2023-08-15T23:08:26Z", "stargazers_count": 40, "topics": ["vimar", "vimar-platform"], "last_fetched": 1695553654.287618, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231824299": {"repository_manifest": {"name": "Warmup under-floor heating integration"}, "full_name": "ha-warmup/warmup", "authors": ["@ha-warmup"], "category": "integration", "description": "Home Assistant integration for Warmup heating thermostats as a HACS integration or a custom component", "domain": "warmup", "etag_repository": "W/\"180024e4c263d088cb8bfb85aa4bc85185278b593108ed2b7d1fa975256d0a61\"", "last_updated": "2023-06-23T09:52:51Z", "stargazers_count": 20, "topics": ["climate", "climate-control", "heating", "heating-control", "thermostat", "warmup"], "last_fetched": 1695553654.270082, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "397776105": {"repository_manifest": {"name": "Hildebrand Glow (DCC)", "render_readme": true, "country": ["GB"], "homeassistant": "2022.12.0"}, "full_name": "HandyHat/ha-hildebrandglow-dcc", "authors": ["@HandyHat"], "category": "integration", "description": "Home Assistant integration for UK SMETS (Smart) meters pulling data from the DCC via the Hildebrand Glow API ", "domain": "hildebrandglow_dcc", "etag_repository": "W/\"33bc0f1aacf6e1ab3c63689b8b74f885f3c6b279c281a53c063d06402b06ee06\"", "last_updated": "2023-09-12T05:18:16Z", "stargazers_count": 197, "topics": ["electricity", "electricity-consumption", "energy", "energy-consumption", "gas", "glow", "hildebrand", "smart-meter", "smart-meters", "smartmeter", "smets", "smets2", "uk"], "last_fetched": 1695553654.376129, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "535287543": {"repository_manifest": {"name": "evnex", "render_readme": true}, "full_name": "hardbyte/ha-evnex", "authors": ["@hardbyte"], "category": "integration", "description": "A cloud-polling Home Assistant component to integrate with an Evnex Charger", "domain": "evnex", "etag_repository": "W/\"4e0619002375ef7d05c1320eb68e181039d22644c567dd365c895731238ee327\"", "last_updated": "2023-05-22T01:46:39Z", "stargazers_count": 3, "topics": ["charger", "energy-consumption", "homeassistant-custom-component"], "last_fetched": 1695553654.463404, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259867685": {"repository_manifest": {"name": "Swedish Public Transport Sensor (HASL)", "country": "SE", "homeassistant": "2021.12.0"}, "full_name": "hasl-sensor/integration", "authors": ["@DSorlov"], "category": "integration", "description": "Swedish Public Transport Sensor (HASL). Formerly named HomeAssistant SL Sensor", "domain": "hasl3", "etag_repository": "W/\"1711d7159da48eb6b94629d6515d0d8a08ef86dbff58f7350ab987bd3cee3feb\"", "last_updated": "2023-06-12T10:01:42Z", "stargazers_count": 26, "topics": ["ha-sensor-sl", "hasl", "hasl3", "haslv3", "sl-sensor", "stockholms-lokaltrafik"], "last_fetched": 1695553654.566896, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "410867791": {"repository_manifest": {"name": "Microsoft Edge TTS", "render_readme": true}, "full_name": "hasscc/hass-edge-tts", "authors": ["@al-one", "@rany2"], "category": "integration", "description": "\ud83d\udde3\ufe0f Microsoft Edge TTS for Home Assistant, no need for app_key", "domain": "edge_tts", "etag_repository": "W/\"efde8e04cdfbe42d5b7c7b84a82058f44606e7d67655c588350c8a470ddfbee7\"", "last_updated": "2023-08-14T11:34:37Z", "stargazers_count": 248, "topics": ["tts"], "last_fetched": 1695553656.121978, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "400117627": {"repository_manifest": {"name": "Petkit", "render_readme": true}, "full_name": "hasscc/petkit", "authors": ["@al-one"], "category": "integration", "description": "\ud83d\udc31 Petkit feeder components for HomeAssistant", "domain": "petkit", "downloads": 34, "etag_repository": "W/\"69e3a1d1d36aa99e937803462b74a3847ef9aa31ac7d3aee25ffb4279a77e444\"", "last_updated": "2023-08-30T02:59:01Z", "stargazers_count": 109, "topics": ["feeder", "petkit"], "last_fetched": 1695553656.230509, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "342427139": {"repository_manifest": {"name": "openHASP", "hacs": "1.7.1", "homeassistant": "2022.4.0"}, "full_name": "HASwitchPlate/openHASP-custom-component", "authors": ["@dgomes"], "category": "integration", "description": "Home Assistant custom component for openHASP", "domain": "openhasp", "etag_repository": "W/\"9358859b2b1ed2ba894b4f2271bef59d4701ce67cc13fa9adac6930b0643c1b7\"", "last_updated": "2023-08-08T20:39:07Z", "stargazers_count": 38, "topics": ["openhasp"], "last_fetched": 1695553656.431586, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292197182": {"repository_manifest": {"name": "Yeelight bluetooth", "render_readme": true, "homeassistant": "2022.10.0"}, "full_name": "hcoohb/hass-yeelightbt", "authors": ["@hcoohb"], "category": "integration", "description": "Home assistant custom component for Yeelight bluetooth", "domain": "yeelight_bt", "etag_repository": "W/\"b675037c7a97443055f2dab50fd6c423092b653b263c70c58dd83b1c42c61d32\"", "last_updated": "2023-03-01T00:18:07Z", "stargazers_count": 45, "topics": ["bluetooth", "bluetooth-low-energy", "yeelight-lamp"], "last_fetched": 1695553656.58133, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "398739214": {"repository_manifest": {"render_readme": true, "homeassistant": "2021.8.1"}, "full_name": "HCookie/Webhook-Service-home-assistant", "category": "integration", "description": "Add a Webhook service to HomeAssistant, originally designed for use with Discord Webhooks", "domain": "webhook_service", "downloads": 22, "etag_repository": "W/\"85c6a3ee438c592119c988e31cda25a3285452ac297e841783ad47caed5675e2\"", "last_updated": "2023-03-23T09:33:59Z", "stargazers_count": 8, "topics": ["webhooks"], "last_fetched": 1695553656.379021, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "243122556": {"repository_manifest": {"name": "tide", "country": "NOR", "homeassistant": "0.96.0", "render_readme": true}, "full_name": "Hellowlol/ha-tide", "authors": ["@hellowlol"], "category": "integration", "description": "Tide a sensor for HASS.", "domain": "tide", "etag_repository": "W/\"aebda22b0bc108f6be794b73eb90126a8a9cc1682831229c54ea7e435a3f638a\"", "last_updated": "2021-06-06T20:30:32Z", "stargazers_count": 4, "topics": ["norway", "tide"], "last_fetched": 1695553656.41176, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "266595512": {"repository_manifest": {"name": "Casambi", "render_readme": true}, "full_name": "hellqvio86/home_assistant_casambi", "authors": ["@hellqvio86"], "category": "integration", "description": "Home assistant Integration for Casambi Cloud lights", "domain": "casambi", "etag_repository": "W/\"18d674943b66cd325932ca3144d8c73c17f3904fec6c5498961bbb53b21c877b\"", "last_updated": "2023-04-21T04:19:47Z", "stargazers_count": 21, "topics": ["casambi"], "last_fetched": 1695553656.486602, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286408741": {"repository_manifest": {"name": "Posten Card", "render_readme": true, "filename": "posten-card.js", "country": "NO"}, "full_name": "ezand/lovelace-posten-card", "category": "plugin", "description": "A Lovelace card to display Norwegian mail delivery days", "downloads": 1939, "etag_repository": "W/\"d1687a2a9bc0c69dcedd4e5d0812a55a1da6e3e2a8dcfad22a136be3dd3dbed0\"", "last_updated": "2023-01-04T16:22:44Z", "stargazers_count": 14, "topics": ["lovelace-card", "mail-delivery"], "last_fetched": 1695553526.698664, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "142545838": {"repository_manifest": {"name": "Canvas Gauge Card", "render_readme": true, "filename": "canvas-gauge-card.js"}, "full_name": "custom-cards/canvas-gauge-card", "category": "plugin", "description": "The card makes it possible to use gauges from https://canvas-gauges.com/", "downloads": 7311, "etag_repository": "W/\"a46ad7460cd3bb99ff17f5461889bbf111f85ef2ba37909613ae54de018668da\"", "last_updated": "2023-08-05T23:57:04Z", "stargazers_count": 141, "last_fetched": 1695553516.698818, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146194325": {"repository_manifest": {"name": "button-card", "render_readme": true, "filename": "button-card.js", "homeassistant": "2023.7.0"}, "full_name": "custom-cards/button-card", "category": "plugin", "description": "\u2747\ufe0f Lovelace button-card for home assistant", "downloads": 51496, "etag_repository": "W/\"c48021c1bcd0a4a574dbba8d36d5d2f1628e1ac214cd9e0b1cef0d01bb8b7064\"", "last_updated": "2023-09-11T06:42:43Z", "stargazers_count": 1504, "last_fetched": 1695553516.902084, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245418": {"repository_manifest": {"name": "bignumber-card", "render_readme": true}, "full_name": "custom-cards/bignumber-card", "category": "plugin", "description": null, "etag_repository": "W/\"0b40fbccdb1ece1aef31d664776b328e906ba0cb0606ef07fff11064475df3cf\"", "last_updated": "2022-01-31T15:47:59Z", "stargazers_count": 103, "last_fetched": 1695553516.633803, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "143850865": {"repository_manifest": {}, "full_name": "custom-cards/beer-card", "category": "plugin", "description": "This card give you a list of your wishlist items.", "etag_repository": "W/\"c2b03290f98156b1e5f8824a704020aaf2082a459dccbf059655a953fbbe957e\"", "last_updated": "2021-01-13T09:25:20Z", "stargazers_count": 3, "last_fetched": 1695553516.370278, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245267534": {"repository_manifest": {"name": "Virtual Components"}, "full_name": "twrecked/hass-virtual", "authors": ["@twrecked"], "category": "integration", "description": "Virtual Components for Home Assistant", "domain": "virtual", "etag_repository": "W/\"9b64ad35c07874abb07965283418d1578d9ecc0e9c3810d5a801b679be4cea74\"", "last_updated": "2023-06-14T17:16:05Z", "stargazers_count": 109, "topics": ["virtual"], "last_fetched": 1695554190.300584, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "131915802": {"repository_manifest": {"name": "Places", "render_readme": true, "homeassistant": "2023.1.0b0", "zip_release": true, "filename": "places.zip", "persistent_directory": "json_sensors"}, "full_name": "custom-components/places", "authors": ["@Snuffy2"], "category": "integration", "description": "Component to integrate with OpenStreetMap Reverse Geocode (places)", "domain": "places", "downloads": 733, "etag_repository": "W/\"7ce069f292723bc54daa8a9a160db65ef7d685e61c22e6c6579460f42f49c6fa\"", "last_updated": "2023-09-17T00:11:11Z", "stargazers_count": 85, "topics": ["device-tracker", "geolocation", "openstreetmap"], "last_fetched": 1695553608.838665, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164022050": {"repository_manifest": {}, "full_name": "custom-cards/check-button-card", "category": "plugin", "description": "Check Button Card is a button that tracks when it is last pressed, for the Home Assistant Lovelace front-end using MQTT auto discovery.", "downloads": 5594, "etag_repository": "W/\"0be912a1c831060d9945074552f17273a71d4da1a79c661361a85746f112ce48\"", "last_updated": "2021-12-22T18:23:08Z", "stargazers_count": 100, "last_fetched": 1695553516.545402, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "498794033": {"repository_manifest": {"name": "Slider Button Card", "render_readme": true, "filename": "slider-button-card.js"}, "full_name": "custom-cards/slider-button-card", "category": "plugin", "description": "A button card with integrated slider", "downloads": 9812, "etag_repository": "W/\"510a77ea0754a907302430d4d8426043aabf9843c5a0af92450477acbad7f3cd\"", "last_updated": "2023-08-16T07:36:47Z", "stargazers_count": 75, "topics": ["button-card", "card", "lovelace-custom-card", "slider"], "last_fetched": 1695553520.537679, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "272140589": {"repository_manifest": {"name": "Monitor Docker"}, "full_name": "ualex73/monitor_docker", "authors": ["@ualex73"], "category": "integration", "description": "Monitor Docker containers from Home Assistant", "domain": "monitor_docker", "etag_repository": "W/\"dcd5fa2e0500f5f1f1fe80eeb32126fb1ea3c756ecc153dff21d2c35bcfb5eac\"", "last_updated": "2023-08-11T16:13:59Z", "stargazers_count": 217, "topics": ["docker"], "last_fetched": 1695554190.439179, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "479056577": {"repository_manifest": {"name": "Green and Dark Theme: Simple, clean, and green", "render_readme": true, "homeassistant": "2022.3"}, "full_name": "Matt-PMCT/Green-and-Dark-HA-Theme", "category": "theme", "description": "A dark theme with green accents for Home Assistant based off green_dark_mode by JuanMTech, with mods by dmyoung9", "etag_repository": "W/\"42790e982044555e827120a0d79dc19aee9c6ccd5930f09608d1be13619264af\"", "last_updated": "2022-04-07T16:57:33Z", "stargazers_count": 2, "topics": ["dark-theme", "green"], "last_fetched": 1695553502.372905, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "413812496": {"repository_manifest": {"name": "Plotly Graph Card", "render_readme": true, "filename": "plotly-graph-card.js"}, "full_name": "dbuezas/lovelace-plotly-graph-card", "category": "plugin", "description": "Highly customisable Lovelace card to plot interactive graphs. Brings scrolling, zooming, and much more!", "downloads": 10849, "etag_repository": "W/\"951c54356c4ff761de801cc4bc59aaebb2c020a8cdf45da1494138bb79f238ab\"", "last_updated": "2023-07-31T19:44:38Z", "stargazers_count": 180, "topics": ["graphs", "history", "lovelace-custom-card", "navigate", "plotly", "plotlyjs", "plots", "scroll", "zoom"], "last_fetched": 1695553523.586601, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "76125161": {"repository_manifest": {"name": "iCal Sensor", "homeassistant": "2022.5.0"}, "full_name": "tybritten/ical-sensor-homeassistant", "authors": ["@Olen", "@TyBritten"], "category": "integration", "description": "an iCal Sensor for Home Assistant", "domain": "ical", "etag_repository": "W/\"5af29993c01039ba4667360f4d15b450429f8b47c2c6e3ba3681650b48ca705c\"", "last_updated": "2023-08-30T18:17:55Z", "stargazers_count": 85, "topics": ["ical"], "last_fetched": 1695554190.356349, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "312649007": {"repository_manifest": {"name": "Reminder"}, "full_name": "eyalcha/ha-reminder", "category": "python_script", "description": "A python script for Home Assistant that counts down the days to reminder", "etag_repository": "W/\"524c3a5edcc64422fd988b88c299c375dc24099d536061ecfec98054f25a5a95\"", "last_updated": "2020-12-20T21:07:41Z", "stargazers_count": 13, "topics": ["python-scripts"], "last_fetched": 1695553506.778634, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "499270202": {"repository_manifest": {"name": "Hourly Weather Card", "render_readme": true, "filename": "hourly-weather.js"}, "full_name": "decompil3d/lovelace-hourly-weather", "category": "plugin", "description": "Hourly weather card for Home Assistant. Visualize upcoming weather conditions as a colored horizontal bar.", "downloads": 5607, "etag_repository": "W/\"b41394b1b51258040982baba4a7fd9d7b07268ca46a65cad327250a02bbb237d\"", "last_updated": "2023-09-21T16:51:32Z", "stargazers_count": 133, "topics": ["card", "hourly", "weather"], "last_fetched": 1695553524.619188, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231145540": {"repository_manifest": {"name": "NextBus Card", "render_readme": true, "filename": "nextbus-card.js"}, "full_name": "dcramer/lovelace-nextbus-card", "category": "plugin", "description": "A card giving richer public transit display using NextBus sensors.", "downloads": 378, "etag_repository": "W/\"989bc4d09c96db46de7e9a500d97a4c569e9907783930ce4542573bc68bf9d14\"", "last_updated": "2023-01-04T13:48:39Z", "stargazers_count": 7, "topics": ["lovelace-custom-card", "nextbus", "public-transit"], "last_fetched": 1695553523.462227, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "274738925": {"repository_manifest": {"name": "Purifier Card", "render_readme": true, "filename": "purifier-card.js"}, "full_name": "denysdovhan/purifier-card", "category": "plugin", "description": "Air Purifier card for Home Assistant Lovelace UI", "downloads": 4468, "etag_repository": "W/\"0b8c4ff9b43e8ed42fe379d995c1decc882b7e0224b5e5bdcf6a9651217df101\"", "last_updated": "2023-09-07T10:32:44Z", "stargazers_count": 213, "topics": ["air-purifier", "purifier"], "last_fetched": 1695553524.749902, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "450192057": {"repository_manifest": {"name": "SkyKettle", "homeassistant": "2022.8.1", "render_readme": true, "country": ["RU"]}, "full_name": "ClusterM/skykettle-ha", "authors": ["@clusterm"], "category": "integration", "description": "Redmond SkyKettle integration for Home Assistant", "domain": "skykettle", "etag_repository": "W/\"3a698a14385848a1c10c25dbc98a8519f87a28ce1b69dfb7a94e5c4a078238d3\"", "last_updated": "2023-06-12T12:46:00Z", "stargazers_count": 64, "topics": ["kettle", "redmond", "skykettle"], "last_fetched": 1695553604.216268, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195497310": {"repository_manifest": {"name": "Custom Animated Weather Card", "content_in_root": true, "filename": "bom-weather-card.js", "country": ["IT", "FR", "DE", "NL", "PL", "HE", "RU", "DA", "UA", "EN"]}, "full_name": "DavidFW1960/bom-weather-card", "category": "plugin", "description": "Custom Animated Weather Card for any weather provider", "etag_repository": "W/\"96de86634852c85234b3e0b624c89996ce58e0461f5640c2afaa5c2e178b0c57\"", "last_updated": "2023-03-16T00:34:49Z", "stargazers_count": 148, "topics": ["bom", "weather-forecast"], "last_fetched": 1695553522.790793, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151580533": {"repository_manifest": {}, "full_name": "custom-components/sensor.unifigateway", "authors": ["@jchasey"], "category": "integration", "description": "High level health status of UniFi Security Gateway devices via UniFi Controller", "domain": "unifigateway", "etag_repository": "W/\"11e7185c3eaebedf1d575bb0012bdbcb1ea5b60c42dfd43fcca8adf11dac2d94\"", "last_updated": "2021-04-19T12:12:56Z", "stargazers_count": 118, "last_fetched": 1695553611.426303, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187247927": {"repository_manifest": {}, "full_name": "custom-cards/plan-coordinates", "category": "plugin", "description": null, "etag_repository": "W/\"65e055074859c77381931602f3f1b259695e9f8ce36a1be99f59f51e00664220\"", "last_updated": "2021-06-05T21:07:14Z", "stargazers_count": 28, "last_fetched": 1695553519.80349, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "272337216": {"repository_manifest": {"name": "Pandora Car Alarm System", "country": ["RU", "BY"], "render_readme": true}, "full_name": "turbulator/pandora-cas", "authors": ["@turbulator"], "category": "integration", "description": "Home Assistant custom component for Pandora Car Alarm System", "domain": "pandora_cas", "etag_repository": "W/\"5604a19466f508bfcfdc165cded03dc05ad17283662247ab6bc1d2d8d53ea75e\"", "last_updated": "2023-03-06T05:08:02Z", "stargazers_count": 39, "topics": ["pandora"], "last_fetched": 1695554188.064861, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "581307720": {"repository_manifest": {"name": "QuestDB State Storage (QSS)", "homeassistant": "2023.6.0", "hide_default_branch": true, "render_readme": true, "zip_release": true, "filename": "qss.zip"}, "full_name": "CM000n/qss", "authors": ["@CM000n"], "category": "integration", "description": "QuestDB State Storage (QSS) Custom Component for Home Assistant to store entity states inside a QuestDB.", "domain": "qss", "downloads": 63, "etag_repository": "W/\"d23e7aec3fac3e395e779b9a311419da42b48d5e7f8c3af685586562da424418\"", "last_updated": "2023-07-05T08:43:28Z", "stargazers_count": 5, "topics": ["analytics", "database", "grafana", "qss", "questdb", "state-storage", "storage", "timeseries"], "last_fetched": 1695553604.620012, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "615891516": {"repository_manifest": {"name": "Sense Custom Reporting (Kasa Plug Emulation)", "homeassistant": "2022.2.0", "render_readme": true, "country": ["US"]}, "full_name": "dahlb/ha_sense", "authors": ["@dahlb"], "category": "integration", "description": "Report custom devices to sense energy monitoring for ha consumption devices", "domain": "ha_sense", "etag_repository": "W/\"e2ce5463d60b6d64fd3f4a3f3ba84e06111ca885908d731a9e08ef231f11f10d\"", "last_updated": "2023-09-18T19:20:36Z", "stargazers_count": 2, "topics": ["python3"], "last_fetched": 1695553618.274125, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "273007955": {"repository_manifest": {"name": "Power Usage Card with Regular Expressions", "content_in_root": true, "filename": "power-usage-card-regex.js", "render_readme": true}, "full_name": "DBa2016/power-usage-card-regex", "category": "plugin", "description": "Lovelace pie chart card that displays current energy usage", "etag_repository": "W/\"cf8cc5c86840c0c720de5a4f951c50d6cf781fefd2970d9b009810c0624b42d3\"", "last_updated": "2022-07-26T02:31:34Z", "stargazers_count": 7, "topics": ["lovelace-custom-card", "power-usage"], "last_fetched": 1695553522.497433, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269011342": {"repository_manifest": {"name": "Shutter Card", "filename": "hass-shutter-card.js", "render_readme": true, "homeassistant": "2021.11.0"}, "full_name": "Deejayfool/hass-shutter-card", "category": "plugin", "description": "Shutter card for Home Assistant Lovelace UI", "downloads": 12378, "etag_repository": "W/\"0601147dc3012c4e39b7feeaf421e660226de9927909a59ec9885b56218d8f50\"", "last_updated": "2023-05-25T03:34:25Z", "stargazers_count": 220, "last_fetched": 1695553524.43438, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "486045869": {"repository_manifest": {"name": "Metrology - Metro + Fluent + Windows Themes - by mmak.es", "render_readme": true}, "full_name": "Madelena/Metrology-for-Hass", "category": "theme", "description": "\ud83c\udfa8 Give your Home Assistant a modern and clean facelift. \ud83d\udfe5\ud83d\udfe7\ud83d\udfe9\ud83d\udfe6\ud83d\udfea 24 Variations with 2 Styles + 6 Colors (Magenta Red / Orange / Green / Blue / Purple) + \ud83c\udf1e Light and \ud83c\udf1a Dark modes included. Based on Metro and Fluent UI Design Systems from Microsoft Windows.", "etag_repository": "W/\"7fe5aad23ba32a4ffc8c8264453e7224fb1650faaf277317df61643e5d51f40b\"", "last_updated": "2023-04-04T23:04:20Z", "stargazers_count": 433, "topics": ["home-assistant-config", "lovelace-theme"], "last_fetched": 1695553502.39982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "240459262": {"repository_manifest": {"name": "Abfall API (Jumomind)", "country": "DE", "homeassistant": "0.104.3", "render_readme": true}, "full_name": "tuxuser/abfallapi_jumomind_ha", "authors": ["@tuxuser"], "category": "integration", "description": "Abfall API (Jumomind) custom component for home assistant - Get an alert when garbage collection is due", "domain": "abfallapi_jumomind", "etag_repository": "W/\"03cfd6e9d0f8ae41cc1adb4315e089391eb0a3cb6f113f3df532f66d9eef811d\"", "last_updated": "2021-12-22T09:57:43Z", "stargazers_count": 4, "topics": ["abfall", "collection", "deutschland", "garbage", "germany", "jumomind", "muell", "waste"], "last_fetched": 1695554188.115236, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194381263": {"repository_manifest": {"name": "Thermostat Update"}, "full_name": "bieniu/ha-thermostat-update", "category": "python_script", "description": "This script updates Z-Wave thermostat entity state and current temperature from external sensor", "etag_repository": "W/\"01669dc0882fb3e00c9f1411eefcd25527d75688bc38369669762cab745dece7\"", "last_updated": "2020-04-28T06:54:52Z", "stargazers_count": 13, "topics": ["thermostat", "z-wave"], "last_fetched": 1695553506.502744, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443140011": {"repository_manifest": {"name": "Ambient Weather Station - Local", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "tlskinneriv/awnet_local", "authors": ["@tlskinneriv"], "category": "integration", "description": "Enables local support for Ambient Weather personal weather stations.", "domain": "awnet_local", "etag_repository": "W/\"d05a95fc28d0fefed8a3944fa8dd1b2e499ea76b60850445bd5aa927d056c6a6\"", "last_updated": "2023-09-10T03:25:05Z", "stargazers_count": 18, "topics": ["ambient-weather", "ambient-weather-api"], "last_fetched": 1695554183.711528, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237628853": {"repository_manifest": {"name": "Abfall API (RegioIT)", "country": "DE", "homeassistant": "0.104.3", "render_readme": true}, "full_name": "tuxuser/abfallapi_regioit_ha", "authors": ["@tuxuser"], "category": "integration", "description": "Abfall API (RegioIT) custom component for home assistant - Get an alert when garbage collection is due", "domain": "abfallapi_regioit", "etag_repository": "W/\"ff3716bb657449c838adffdb4afd1e31cd15c89a35a419b7cf209466484341a2\"", "last_updated": "2022-12-23T23:34:37Z", "stargazers_count": 11, "topics": ["collection", "component", "garbage", "muell", "muellabfuhr", "regioit", "waste"], "last_fetched": 1695554188.085925, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261291295": {"repository_manifest": {"name": "Vacuum Card", "render_readme": true, "filename": "vacuum-card.js"}, "full_name": "denysdovhan/vacuum-card", "category": "plugin", "description": "Vacuum cleaner card for Home Assistant Lovelace UI", "downloads": 13161, "etag_repository": "W/\"c9504b06f54bf487d98ff0d0b823f929ebcd165520685c62544d4771b73f5f2c\"", "last_updated": "2023-09-14T18:14:12Z", "stargazers_count": 741, "topics": ["robot-vacuum", "vacuum"], "last_fetched": 1695553524.749679, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220313935": {"repository_manifest": {"name": "hass-AMS", "country": ["NO", "SE"], "render_readme": true}, "full_name": "turbokongen/hass-AMS", "authors": ["@turbokongen"], "category": "integration", "description": "Custom component reading AMS through MBus adapter into HomeAssistant", "domain": "ams", "etag_repository": "W/\"565dd1f574d8ed5d40653407a29777a25c932224311f65e8bd9d7e20e9e8ba80\"", "last_updated": "2023-03-26T17:56:50Z", "stargazers_count": 37, "topics": ["mbus-adapter", "meter", "sensors"], "last_fetched": 1695554188.266553, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146335411": {"repository_manifest": {"name": "RMV Card", "content_in_root": true, "filename": "rmv-card.js"}, "full_name": "custom-cards/rmv-card", "category": "plugin", "description": "Custom card for the RMV component.", "etag_repository": "W/\"5377307c7f3caa5f79c61629d98d2b54132d1247c234fe838a65151575101f08\"", "last_updated": "2023-07-06T11:12:17Z", "stargazers_count": 18, "last_fetched": 1695553520.21019, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403381222": {"repository_manifest": {"name": "Noctis-Solarized"}, "full_name": "williamahartman/noctis-solarized", "category": "theme", "description": "Noctis theme made Solarized", "etag_repository": "W/\"4d32a10390a2cae49a58c24ff8995f68def7646063acc7c0e42cf39e4a61fbea\"", "last_updated": "2022-03-06T20:37:36Z", "stargazers_count": 4, "topics": ["home-assistant-theme"], "last_fetched": 1695553506.16037, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "284294048": {"repository_manifest": {"name": "iOS Light Mode", "render_readme": true}, "full_name": "JuanMTech/ios_light_mode_theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the iOS light mode interface.", "etag_repository": "W/\"4bc7b61985610af8875db4603eb5c40a18189bcf6a4aa174e937791b881bec7f\"", "last_updated": "2023-01-12T22:54:45Z", "stargazers_count": 16, "last_fetched": 1695553502.150583, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "185304888": {"repository_manifest": {}, "full_name": "custom-cards/text-action-element", "category": "plugin", "description": null, "downloads": 444, "etag_repository": "W/\"8bd2d2b872cb3eb435b80cd58ef862dd86fed1b272b0228b47e4d8c27b268507\"", "last_updated": "2023-02-16T13:53:44Z", "stargazers_count": 8, "last_fetched": 1695553520.561225, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}} \ No newline at end of file