From b873ba0ef02b53c6f6827c99f76d1c96de765e9b Mon Sep 17 00:00:00 2001 From: root Date: Mon, 30 Jan 2023 16:34:17 -0800 Subject: [PATCH] Bump HACS to 1.30.1 --- custom_components/hacs/__init__.py | 12 +- custom_components/hacs/base.py | 258 ++++++++++++++---- custom_components/hacs/const.py | 6 +- custom_components/hacs/enums.py | 32 ++- custom_components/hacs/frontend.py | 29 +- custom_components/hacs/manifest.json | 4 +- custom_components/hacs/repositories/base.py | 105 +++++-- .../hacs/repositories/integration.py | 2 +- custom_components/hacs/repositories/plugin.py | 4 + custom_components/hacs/repositories/theme.py | 2 + custom_components/hacs/sensor.py | 1 + custom_components/hacs/system_health.py | 6 + custom_components/hacs/update.py | 11 + custom_components/hacs/utils/data.py | 124 +++++++-- .../hacs/utils/default.repositories | 2 +- 15 files changed, 456 insertions(+), 142 deletions(-) diff --git a/custom_components/hacs/__init__.py b/custom_components/hacs/__init__.py index ea831bb..35bbf00 100644 --- a/custom_components/hacs/__init__.py +++ b/custom_components/hacs/__init__.py @@ -25,6 +25,7 @@ import voluptuous as vol from .base import HacsBase from .const import DOMAIN, MINIMUM_HA_VERSION, STARTUP +from .data_client import HacsDataClient from .enums import ConfigurationType, HacsDisabledReason, HacsStage, LovelaceMode from .frontend import async_register_frontend from .utils.configuration_schema import hacs_config_combined @@ -87,6 +88,10 @@ async def async_initialize_integration( hacs.hass = hass hacs.queue = QueueManager(hass=hass) hacs.data = HacsData(hacs=hacs) + hacs.data_client = HacsDataClient( + session=clientsession, + client_name=f"HACS/{integration.version}", + ) hacs.system.running = True hacs.session = clientsession @@ -153,8 +158,9 @@ async def async_initialize_integration( hacs.disable_hacs(HacsDisabledReason.RESTORE) return False - can_update = await hacs.async_can_update() - hacs.log.debug("Can update %s repositories", can_update) + if not hacs.configuration.experimental: + can_update = await hacs.async_can_update() + hacs.log.debug("Can update %s repositories", can_update) hacs.set_active_categories() @@ -168,7 +174,7 @@ async def async_initialize_integration( hacs.log.info("Update entities are only supported when using UI configuration") else: - hass.config_entries.async_setup_platforms( + await hass.config_entries.async_forward_entry_setups( config_entry, [Platform.SENSOR, Platform.UPDATE] if hacs.configuration.experimental diff --git a/custom_components/hacs/base.py b/custom_components/hacs/base.py index 5179dbd..80def76 100644 --- a/custom_components/hacs/base.py +++ b/custom_components/hacs/base.py @@ -28,11 +28,17 @@ from homeassistant.config_entries import ConfigEntry, ConfigEntryState from homeassistant.const import EVENT_HOMEASSISTANT_FINAL_WRITE, Platform from homeassistant.core import HomeAssistant, callback from homeassistant.helpers.dispatcher import async_dispatcher_send -from homeassistant.helpers.issue_registry import async_create_issue, IssueSeverity +from homeassistant.helpers.issue_registry import IssueSeverity, async_create_issue from homeassistant.loader import Integration from homeassistant.util import dt -from .const import DOMAIN, TV +from custom_components.hacs.repositories.base import ( + HACS_MANIFEST_KEYS_TO_EXPORT, + REPOSITORY_KEYS_TO_EXPORT, +) + +from .const import DOMAIN, TV, URL_BASE +from .data_client import HacsDataClient from .enums import ( ConfigurationType, HacsCategory, @@ -47,6 +53,7 @@ from .exceptions import ( HacsException, HacsExecutionStillInProgress, HacsExpectedException, + HacsNotModifiedException, HacsRepositoryArchivedException, HacsRepositoryExistException, HomeAssistantCoreRepositoryException, @@ -164,6 +171,9 @@ class HacsStatus: startup: bool = True new: bool = False + active_frontend_endpoint_plugin: bool = False + active_frontend_endpoint_theme: bool = False + inital_fetch_done: bool = False @dataclass @@ -174,6 +184,7 @@ class HacsSystem: running: bool = False stage = HacsStage.SETUP action: bool = False + generator: bool = False @property def disabled(self) -> bool: @@ -263,7 +274,7 @@ class HacsRepositories: self._default_repositories.add(repo_id) - def set_repository_id(self, repository, repo_id): + def set_repository_id(self, repository: HacsRepository, repo_id: str): """Update a repository id.""" existing_repo_id = str(repository.data.id) if existing_repo_id == repo_id: @@ -348,6 +359,7 @@ class HacsBase: configuration = HacsConfiguration() core = HacsCore() data: HacsData | None = None + data_client: HacsDataClient | None = None frontend_version: str | None = None github: GitHub | None = None githubapi: GitHubAPI | None = None @@ -544,8 +556,6 @@ class HacsBase: if check: try: await repository.async_registration(ref) - if self.status.new: - repository.data.new = False if repository.validate.errors: self.common.skip.append(repository.data.full_name) if not self.status.startup: @@ -559,7 +569,11 @@ class HacsBase: repository.logger.info("%s Validation completed", repository.string) else: repository.logger.info("%s Registration completed", repository.string) - except (HacsRepositoryExistException, HacsRepositoryArchivedException): + except (HacsRepositoryExistException, HacsRepositoryArchivedException) as exception: + if self.system.generator: + repository.logger.error( + "%s Registration Failed - %s", repository.string, exception + ) return except AIOGitHubAPIException as exception: self.common.skip.append(repository.data.full_name) @@ -567,6 +581,9 @@ class HacsBase: f"Validation for {repository_full_name} failed with {exception}." ) from exception + if self.status.new: + repository.data.new = False + if repository_id is not None: repository.data.id = repository_id @@ -586,34 +603,7 @@ class HacsBase: async def startup_tasks(self, _=None) -> None: """Tasks that are started after setup.""" self.set_stage(HacsStage.STARTUP) - - try: - repository = self.repositories.get_by_full_name(HacsGitHubRepo.INTEGRATION) - if repository is None: - await self.async_register_repository( - repository_full_name=HacsGitHubRepo.INTEGRATION, - category=HacsCategory.INTEGRATION, - default=True, - ) - repository = self.repositories.get_by_full_name(HacsGitHubRepo.INTEGRATION) - if repository is None: - raise HacsException("Unknown error") - - repository.data.installed = True - repository.data.installed_version = self.integration.version.string - repository.data.new = False - repository.data.releases = True - - self.repository = repository.repository_object - self.repositories.mark_default(repository) - except HacsException as exception: - if "403" in str(exception): - self.log.critical( - "GitHub API is ratelimited, or the token is wrong.", - ) - else: - self.log.critical("Could not load HACS! - %s", exception) - self.disable_hacs(HacsDisabledReason.LOAD_HACS) + await self.async_load_hacs_from_github() if critical := await async_load_from_store(self.hass, "critical"): for repo in critical: @@ -624,16 +614,38 @@ class HacsBase: ) break + if not self.configuration.experimental: + self.recuring_tasks.append( + self.hass.helpers.event.async_track_time_interval( + self.async_update_downloaded_repositories, timedelta(hours=48) + ) + ) + self.recuring_tasks.append( + self.hass.helpers.event.async_track_time_interval( + self.async_update_all_repositories, + timedelta(hours=96), + ) + ) + else: + self.recuring_tasks.append( + self.hass.helpers.event.async_track_time_interval( + self.async_load_hacs_from_github, + timedelta(hours=48), + ) + ) + self.recuring_tasks.append( self.hass.helpers.event.async_track_time_interval( - self.async_get_all_category_repositories, timedelta(hours=3) + self.async_update_downloaded_custom_repositories, timedelta(hours=48) ) ) + self.recuring_tasks.append( self.hass.helpers.event.async_track_time_interval( - self.async_update_all_repositories, timedelta(hours=25) + self.async_get_all_category_repositories, timedelta(hours=6) ) ) + self.recuring_tasks.append( self.hass.helpers.event.async_track_time_interval( self.async_check_rate_limit, timedelta(minutes=5) @@ -644,14 +656,10 @@ class HacsBase: self.async_prosess_queue, timedelta(minutes=10) ) ) + self.recuring_tasks.append( self.hass.helpers.event.async_track_time_interval( - self.async_update_downloaded_repositories, timedelta(hours=2) - ) - ) - self.recuring_tasks.append( - self.hass.helpers.event.async_track_time_interval( - self.async_handle_critical_repositories, timedelta(hours=2) + self.async_handle_critical_repositories, timedelta(hours=6) ) ) @@ -659,6 +667,8 @@ class HacsBase: EVENT_HOMEASSISTANT_FINAL_WRITE, self.data.async_force_write ) + self.log.debug("There are %s scheduled recurring tasks", len(self.recuring_tasks)) + self.status.startup = False self.async_dispatch(HacsDispatchEvent.STATUS, {}) @@ -756,6 +766,42 @@ class HacsBase: if self.configuration.netdaemon: self.enable_hacs_category(HacsCategory.NETDAEMON) + async def async_load_hacs_from_github(self, _=None) -> None: + """Load HACS from GitHub.""" + if self.configuration.experimental and self.status.inital_fetch_done: + return + + try: + repository = self.repositories.get_by_full_name(HacsGitHubRepo.INTEGRATION) + if repository is None: + await self.async_register_repository( + repository_full_name=HacsGitHubRepo.INTEGRATION, + category=HacsCategory.INTEGRATION, + default=True, + ) + repository = self.repositories.get_by_full_name(HacsGitHubRepo.INTEGRATION) + elif self.configuration.experimental and not self.status.startup: + self.log.error("Scheduling update of hacs/integration") + self.queue.add(repository.common_update()) + if repository is None: + raise HacsException("Unknown error") + + repository.data.installed = True + repository.data.installed_version = self.integration.version.string + repository.data.new = False + repository.data.releases = True + + self.repository = repository.repository_object + self.repositories.mark_default(repository) + except HacsException as exception: + if "403" in str(exception): + self.log.critical( + "GitHub API is ratelimited, or the token is wrong.", + ) + else: + self.log.critical("Could not load HACS! - %s", exception) + self.disable_hacs(HacsDisabledReason.LOAD_HACS) + async def async_get_all_category_repositories(self, _=None) -> None: """Get all category repositories.""" if self.system.disabled: @@ -763,11 +809,62 @@ class HacsBase: self.log.info("Loading known repositories") await asyncio.gather( *[ - self.async_get_category_repositories(HacsCategory(category)) + self.async_get_category_repositories_experimental(category) + if self.configuration.experimental + else self.async_get_category_repositories(HacsCategory(category)) for category in self.common.categories or [] ] ) + async def async_get_category_repositories_experimental(self, category: str) -> None: + """Update all category repositories.""" + self.log.debug("Fetching updated content for %s", category) + try: + category_data = await self.data_client.get_data(category) + except HacsNotModifiedException: + self.log.debug("No updates for %s", category) + return + except HacsException as exception: + self.log.error("Could not update %s - %s", category, exception) + return + + await self.data.register_unknown_repositories(category_data, category) + + for repo_id, repo_data in category_data.items(): + repo = repo_data["full_name"] + if self.common.renamed_repositories.get(repo): + repo = self.common.renamed_repositories[repo] + if self.repositories.is_removed(repo): + continue + if repo in self.common.archived_repositories: + continue + if repository := self.repositories.get_by_full_name(repo): + self.repositories.set_repository_id(repository, repo_id) + self.repositories.mark_default(repository) + if repository.data.last_fetched is None or ( + repository.data.last_fetched.timestamp() < repo_data["last_fetched"] + ): + repository.data.update_data({**dict(REPOSITORY_KEYS_TO_EXPORT), **repo_data}) + if (manifest := repo_data.get("manifest")) is not None: + repository.repository_manifest.update_data( + {**dict(HACS_MANIFEST_KEYS_TO_EXPORT), **manifest} + ) + + if category == "integration": + self.status.inital_fetch_done = True + + if self.stage == HacsStage.STARTUP: + for repository in self.repositories.list_all: + if ( + repository.data.category == category + and not repository.data.installed + and not self.repositories.is_default(repository.data.id) + ): + repository.logger.debug( + "%s Unregister stale custom repository", repository.string + ) + self.repositories.unregister(repository) + async def async_get_category_repositories(self, category: HacsCategory) -> None: """Get repositories from category.""" if self.system.disabled: @@ -843,7 +940,7 @@ class HacsBase: return can_update = await self.async_can_update() self.log.debug( - "Can update %s repositories, " "items in queue %s", + "Can update %s repositories, items in queue %s", can_update, self.queue.pending_tasks, ) @@ -865,9 +962,12 @@ class HacsBase: self.log.info("Loading removed repositories") try: - removed_repositories = await self.async_github_get_hacs_default_file( - HacsCategory.REMOVED - ) + if self.configuration.experimental: + removed_repositories = await self.data_client.get_data("removed") + else: + removed_repositories = await self.async_github_get_hacs_default_file( + HacsCategory.REMOVED + ) except HacsException: return @@ -913,7 +1013,7 @@ class HacsBase: async def async_update_downloaded_repositories(self, _=None) -> None: """Execute the task.""" - if self.system.disabled: + if self.system.disabled or self.configuration.experimental: return self.log.info("Starting recurring background task for downloaded repositories") @@ -923,6 +1023,21 @@ class HacsBase: self.log.debug("Recurring background task for downloaded repositories done") + async def async_update_downloaded_custom_repositories(self, _=None) -> None: + """Execute the task.""" + if self.system.disabled or not self.configuration.experimental: + return + self.log.info("Starting recurring background task for downloaded custom repositories") + + for repository in self.repositories.list_downloaded: + if ( + repository.data.category in self.common.categories + and not self.repositories.is_default(repository.data.id) + ): + self.queue.add(repository.update_repository(ignore_issues=True)) + + self.log.debug("Recurring background task for downloaded custom repositories done") + async def async_handle_critical_repositories(self, _=None) -> None: """Handle critical repositories.""" critical_queue = QueueManager(hass=self.hass) @@ -931,8 +1046,11 @@ class HacsBase: was_installed = False try: - critical = await self.async_github_get_hacs_default_file("critical") - except GitHubNotModifiedException: + if self.configuration.experimental: + critical = await self.data_client.get_data("critical") + else: + critical = await self.async_github_get_hacs_default_file("critical") + except (GitHubNotModifiedException, HacsNotModifiedException): return except HacsException: pass @@ -984,3 +1102,43 @@ class HacsBase: if was_installed: self.log.critical("Restarting Home Assistant") self.hass.async_create_task(self.hass.async_stop(100)) + + @callback + def async_setup_frontend_endpoint_plugin(self) -> None: + """Setup the http endpoints for plugins if its not already handled.""" + if self.status.active_frontend_endpoint_plugin or not os.path.exists( + self.hass.config.path("www/community") + ): + return + + self.log.info("Setting up plugin endpoint") + use_cache = self.core.lovelace_mode == "storage" + self.log.info( + " %s mode, cache for /hacsfiles/: %s", + self.core.lovelace_mode, + use_cache, + ) + + self.hass.http.register_static_path( + URL_BASE, + self.hass.config.path("www/community"), + cache_headers=use_cache, + ) + + self.status.active_frontend_endpoint_plugin = True + + @callback + def async_setup_frontend_endpoint_themes(self) -> None: + """Setup the http endpoints for themes if its not already handled.""" + if ( + self.configuration.experimental + or self.status.active_frontend_endpoint_theme + or not os.path.exists(self.hass.config.path("themes")) + ): + return + + self.log.info("Setting up themes endpoint") + # Register themes + self.hass.http.register_static_path(f"{URL_BASE}/themes", self.hass.config.path("themes")) + + self.status.active_frontend_endpoint_theme = True diff --git a/custom_components/hacs/const.py b/custom_components/hacs/const.py index da19d3f..8af28b8 100644 --- a/custom_components/hacs/const.py +++ b/custom_components/hacs/const.py @@ -6,7 +6,9 @@ from aiogithubapi.common.const import ACCEPT_HEADERS NAME_SHORT = "HACS" DOMAIN = "hacs" CLIENT_ID = "395a8e669c5de9f7c6e8" -MINIMUM_HA_VERSION = "2022.10.0" +MINIMUM_HA_VERSION = "2022.11.0" + +URL_BASE = "/hacsfiles" TV = TypeVar("TV") @@ -15,6 +17,8 @@ PACKAGE_NAME = "custom_components.hacs" DEFAULT_CONCURRENT_TASKS = 15 DEFAULT_CONCURRENT_BACKOFF_TIME = 1 +HACS_REPOSITORY_ID = "172733314" + HACS_ACTION_GITHUB_API_HEADERS = { "User-Agent": "HACS/action", "Accept": ACCEPT_HEADERS["preview"], diff --git a/custom_components/hacs/enums.py b/custom_components/hacs/enums.py index 04431ef..bbe2482 100644 --- a/custom_components/hacs/enums.py +++ b/custom_components/hacs/enums.py @@ -1,16 +1,30 @@ """Helper constants.""" # pylint: disable=missing-class-docstring -from enum import Enum +import sys + +if sys.version_info.minor >= 11: + # Needs Python 3.11 + from enum import StrEnum # # pylint: disable=no-name-in-module +else: + try: + # https://github.com/home-assistant/core/blob/dev/homeassistant/backports/enum.py + # Considered internal to Home Assistant, can be removed whenever. + from homeassistant.backports.enum import StrEnum + except ImportError: + from enum import Enum + + class StrEnum(str, Enum): + pass -class HacsGitHubRepo(str, Enum): +class HacsGitHubRepo(StrEnum): """HacsGitHubRepo.""" DEFAULT = "hacs/default" INTEGRATION = "hacs/integration" -class HacsCategory(str, Enum): +class HacsCategory(StrEnum): APPDAEMON = "appdaemon" INTEGRATION = "integration" LOVELACE = "lovelace" @@ -24,7 +38,7 @@ class HacsCategory(str, Enum): return str(self.value) -class HacsDispatchEvent(str, Enum): +class HacsDispatchEvent(StrEnum): """HacsDispatchEvent.""" CONFIG = "hacs_dispatch_config" @@ -37,19 +51,19 @@ class HacsDispatchEvent(str, Enum): STATUS = "hacs_dispatch_status" -class RepositoryFile(str, Enum): +class RepositoryFile(StrEnum): """Repository file names.""" HACS_JSON = "hacs.json" MAINIFEST_JSON = "manifest.json" -class ConfigurationType(str, Enum): +class ConfigurationType(StrEnum): YAML = "yaml" CONFIG_ENTRY = "config_entry" -class LovelaceMode(str, Enum): +class LovelaceMode(StrEnum): """Lovelace Modes.""" STORAGE = "storage" @@ -58,7 +72,7 @@ class LovelaceMode(str, Enum): YAML = "yaml" -class HacsStage(str, Enum): +class HacsStage(StrEnum): SETUP = "setup" STARTUP = "startup" WAITING = "waiting" @@ -66,7 +80,7 @@ class HacsStage(str, Enum): BACKGROUND = "background" -class HacsDisabledReason(str, Enum): +class HacsDisabledReason(StrEnum): RATE_LIMIT = "rate_limit" REMOVED = "removed" INVALID_TOKEN = "invalid_token" diff --git a/custom_components/hacs/frontend.py b/custom_components/hacs/frontend.py index 3d20d6b..4adb32b 100644 --- a/custom_components/hacs/frontend.py +++ b/custom_components/hacs/frontend.py @@ -7,15 +7,13 @@ from aiohttp import web from homeassistant.components.http import HomeAssistantView from homeassistant.core import HomeAssistant, callback -from .const import DOMAIN -from .hacs_frontend import locate_dir, VERSION as FE_VERSION +from .const import DOMAIN, URL_BASE +from .hacs_frontend import VERSION as FE_VERSION, locate_dir from .hacs_frontend_experimental import ( - locate_dir as experimental_locate_dir, VERSION as EXPERIMENTAL_FE_VERSION, + locate_dir as experimental_locate_dir, ) -URL_BASE = "/hacsfiles" - if TYPE_CHECKING: from .base import HacsBase @@ -24,8 +22,8 @@ if TYPE_CHECKING: def async_register_frontend(hass: HomeAssistant, hacs: HacsBase) -> None: """Register the frontend.""" - # Register themes - hass.http.register_static_path(f"{URL_BASE}/themes", hass.config.path("themes")) + # Setup themes endpoint if needed + hacs.async_setup_frontend_endpoint_themes() # Register frontend if hacs.configuration.frontend_repo_url: @@ -50,20 +48,6 @@ def async_register_frontend(hass: HomeAssistant, hacs: HacsBase) -> None: hass.data["frontend_extra_module_url"] = set() hass.data["frontend_extra_module_url"].add(f"{URL_BASE}/iconset.js") - # Register www/community for all other files - use_cache = hacs.core.lovelace_mode == "storage" - hacs.log.info( - " %s mode, cache for /hacsfiles/: %s", - hacs.core.lovelace_mode, - use_cache, - ) - - hass.http.register_static_path( - URL_BASE, - hass.config.path("www/community"), - cache_headers=use_cache, - ) - hacs.frontend_version = ( FE_VERSION if not hacs.configuration.experimental else EXPERIMENTAL_FE_VERSION ) @@ -86,6 +70,9 @@ def async_register_frontend(hass: HomeAssistant, hacs: HacsBase) -> None: require_admin=True, ) + # Setup plugin endpoint if needed + hacs.async_setup_frontend_endpoint_plugin() + class HacsFrontendDev(HomeAssistantView): """Dev View Class for HACS.""" diff --git a/custom_components/hacs/manifest.json b/custom_components/hacs/manifest.json index e26d14c..dea58ad 100644 --- a/custom_components/hacs/manifest.json +++ b/custom_components/hacs/manifest.json @@ -17,7 +17,7 @@ "issue_tracker": "https://github.com/hacs/integration/issues", "name": "HACS", "requirements": [ - "aiogithubapi>=22.2.4" + "aiogithubapi>=22.10.1" ], - "version": "1.28.3" + "version": "1.30.1" } \ No newline at end of file diff --git a/custom_components/hacs/repositories/base.py b/custom_components/hacs/repositories/base.py index 209d496..6042236 100644 --- a/custom_components/hacs/repositories/base.py +++ b/custom_components/hacs/repositories/base.py @@ -50,16 +50,27 @@ if TYPE_CHECKING: TOPIC_FILTER = ( + "add-on", + "addon", + "app", + "appdaemon-apps", + "appdaemon", "custom-card", + "custom-cards", "custom-component", "custom-components", "customcomponents", "hacktoberfest", "hacs-default", "hacs-integration", + "hacs-repository", "hacs", "hass", "hassio", + "home-assistant-custom", + "home-assistant-frontend", + "home-assistant-hacs", + "home-assistant-sensor", "home-assistant", "home-automation", "homeassistant-components", @@ -68,16 +79,45 @@ TOPIC_FILTER = ( "homeassistant", "homeautomation", "integration", + "lovelace-ui", "lovelace", + "media-player", + "mediaplayer", + "netdaemon", + "plugin", + "python_script", + "python-script", "python", "sensor", + "smart-home", + "smarthome", "theme", "themes", - "custom-cards", - "home-assistant-frontend", - "home-assistant-hacs", - "home-assistant-custom", - "lovelace-ui", +) + + +REPOSITORY_KEYS_TO_EXPORT = ( + # Keys can not be removed from this list until v3 + # If keys are added, the action need to be re-run with force + ("description", ""), + ("downloads", 0), + ("domain", None), + ("etag_repository", None), + ("full_name", ""), + ("last_commit", None), + ("last_updated", 0), + ("last_version", None), + ("manifest_name", None), + ("open_issues", 0), + ("stargazers_count", 0), + ("topics", []), +) + +HACS_MANIFEST_KEYS_TO_EXPORT = ( + # Keys can not be removed from this list until v3 + # If keys are added, the action need to be re-run with force + ("country", []), + ("name", None), ) @@ -120,7 +160,6 @@ class RepositoryData: new: bool = True open_issues: int = 0 published_tags: list[str] = [] - pushed_at: str = "" releases: bool = False selected_tag: str = None show_beta: bool = False @@ -147,32 +186,24 @@ class RepositoryData: def update_data(self, data: dict, action: bool = False) -> None: """Update data of the repository.""" - for key in data: + for key, value in data.items(): if key not in self.__dict__: continue - if key == "pushed_at": - if data[key] == "": - continue - if "Z" in data[key]: - setattr( - self, - key, - datetime.strptime(data[key], "%Y-%m-%dT%H:%M:%SZ"), - ) - else: - setattr(self, key, datetime.strptime(data[key], "%Y-%m-%dT%H:%M:%S")) + + if key == "last_fetched" and isinstance(value, float): + setattr(self, key, datetime.fromtimestamp(value)) elif key == "id": - setattr(self, key, str(data[key])) + setattr(self, key, str(value)) elif key == "country": - if isinstance(data[key], str): - setattr(self, key, [data[key]]) + if isinstance(value, str): + setattr(self, key, [value]) else: - setattr(self, key, data[key]) + setattr(self, key, value) elif key == "topics" and not action: - setattr(self, key, [topic for topic in data[key] if topic not in TOPIC_FILTER]) + setattr(self, key, [topic for topic in value if topic not in TOPIC_FILTER]) else: - setattr(self, key, data[key]) + setattr(self, key, value) @attr.s(auto_attribs=True) @@ -215,6 +246,20 @@ class HacsManifest: setattr(manifest_data, key, value) return manifest_data + def update_data(self, data: dict) -> None: + """Update the manifest data.""" + for key, value in data.items(): + if key not in self.__dict__: + continue + + if key == "country": + if isinstance(value, str): + setattr(self, key, [value]) + else: + setattr(self, key, value) + else: + setattr(self, key, value) + class RepositoryReleases: """RepositoyReleases.""" @@ -449,6 +494,10 @@ class HacsRepository: self.logger.debug("%s Did not update, content was not modified", self.string) return + if self.repository_object: + self.data.last_updated = self.repository_object.attributes.get("pushed_at", 0) + self.data.last_fetched = datetime.utcnow() + # Set topics self.data.topics = self.data.topics @@ -497,7 +546,7 @@ class HacsRepository: self.additional_info = await self.async_get_info_file_contents() # Set last fetch attribute - self.data.last_fetched = datetime.now() + self.data.last_fetched = datetime.utcnow() return True @@ -1011,7 +1060,11 @@ class HacsRepository: self.hacs.common.renamed_repositories[ self.data.full_name ] = repository_object.full_name - raise HacsRepositoryExistException + if not self.hacs.system.generator: + raise HacsRepositoryExistException + self.logger.error( + "%s Repository has been renamed - %s", self.string, repository_object.full_name + ) self.data.update_data( repository_object.attributes, action=self.hacs.system.action, diff --git a/custom_components/hacs/repositories/integration.py b/custom_components/hacs/repositories/integration.py index ad8dcb6..70b8b54 100644 --- a/custom_components/hacs/repositories/integration.py +++ b/custom_components/hacs/repositories/integration.py @@ -3,7 +3,7 @@ from __future__ import annotations from typing import TYPE_CHECKING, Any -from homeassistant.helpers.issue_registry import async_create_issue, IssueSeverity +from homeassistant.helpers.issue_registry import IssueSeverity, async_create_issue from homeassistant.loader import async_get_custom_components from ..const import DOMAIN diff --git a/custom_components/hacs/repositories/plugin.py b/custom_components/hacs/repositories/plugin.py index 759aa4e..63d95e4 100644 --- a/custom_components/hacs/repositories/plugin.py +++ b/custom_components/hacs/repositories/plugin.py @@ -53,6 +53,10 @@ class HacsPluginRepository(HacsRepository): self.logger.error("%s %s", self.string, error) return self.validate.success + async def async_post_installation(self): + """Run post installation steps.""" + self.hacs.async_setup_frontend_endpoint_plugin() + @concurrent(concurrenttasks=10, backoff_time=5) async def update_repository(self, ignore_issues=False, force=False): """Update.""" diff --git a/custom_components/hacs/repositories/theme.py b/custom_components/hacs/repositories/theme.py index 0831694..54d417f 100644 --- a/custom_components/hacs/repositories/theme.py +++ b/custom_components/hacs/repositories/theme.py @@ -37,6 +37,8 @@ class HacsThemeRepository(HacsRepository): except BaseException: # lgtm [py/catch-base-exception] pylint: disable=broad-except pass + self.hacs.async_setup_frontend_endpoint_themes() + async def validate_repository(self): """Validate.""" # Run common validation steps. diff --git a/custom_components/hacs/sensor.py b/custom_components/hacs/sensor.py index 7fbca6e..0724782 100644 --- a/custom_components/hacs/sensor.py +++ b/custom_components/hacs/sensor.py @@ -1,5 +1,6 @@ """Sensor platform for HACS.""" from __future__ import annotations + from typing import TYPE_CHECKING from homeassistant.components.sensor import SensorEntity diff --git a/custom_components/hacs/system_health.py b/custom_components/hacs/system_health.py index af97046..008016d 100644 --- a/custom_components/hacs/system_health.py +++ b/custom_components/hacs/system_health.py @@ -7,6 +7,7 @@ from .base import HacsBase from .const import DOMAIN GITHUB_STATUS = "https://www.githubstatus.com/" +CLOUDFLARE_STATUS = "https://www.cloudflarestatus.com/" @callback @@ -39,4 +40,9 @@ async def system_health_info(hass): if hacs.system.disabled: data["Disabled"] = hacs.system.disabled_reason + if hacs.configuration.experimental: + data["HACS Data"] = system_health.async_check_can_reach_url( + hass, "https://data-v2.hacs.xyz/data.json", CLOUDFLARE_STATUS + ) + return data diff --git a/custom_components/hacs/update.py b/custom_components/hacs/update.py index d7b8a2c..31da0ce 100644 --- a/custom_components/hacs/update.py +++ b/custom_components/hacs/update.py @@ -90,6 +90,17 @@ class HacsRepositoryUpdateEntity(HacsRepositoryEntity, UpdateEntity): if self.repository.pending_restart or not self.repository.can_download: return None + if self.latest_version not in self.repository.data.published_tags: + releases = await self.repository.get_releases( + prerelease=self.repository.data.show_beta, + returnlimit=self.hacs.configuration.release_limit, + ) + if releases: + self.repository.data.releases = True + self.repository.releases.objects = releases + self.repository.data.published_tags = [x.tag_name for x in releases] + self.repository.data.last_version = next(iter(self.repository.data.published_tags)) + release_notes = "" if len(self.repository.releases.objects) > 0: release = self.repository.releases.objects[0] diff --git a/custom_components/hacs/utils/data.py b/custom_components/hacs/utils/data.py index 445333d..067b71d 100644 --- a/custom_components/hacs/utils/data.py +++ b/custom_components/hacs/utils/data.py @@ -1,38 +1,45 @@ """Data handler for HACS.""" +from __future__ import annotations + import asyncio from datetime import datetime +from typing import Any from homeassistant.core import callback from homeassistant.exceptions import HomeAssistantError from homeassistant.util import json as json_util from ..base import HacsBase -from ..enums import HacsDisabledReason, HacsDispatchEvent, HacsGitHubRepo +from ..const import HACS_REPOSITORY_ID +from ..enums import HacsDisabledReason, HacsDispatchEvent from ..repositories.base import TOPIC_FILTER, HacsManifest, HacsRepository from .logger import LOGGER from .path import is_safe from .store import async_load_from_store, async_save_to_store -DEFAULT_BASE_REPOSITORY_DATA = ( +EXPORTED_BASE_DATA = ( + ("new", False), + ("full_name", ""), +) + +EXPORTED_REPOSITORY_DATA = EXPORTED_BASE_DATA + ( ("authors", []), ("category", ""), ("description", ""), ("domain", None), ("downloads", 0), ("etag_repository", None), - ("full_name", ""), - ("last_updated", 0), ("hide", False), + ("last_updated", 0), ("new", False), ("stargazers_count", 0), ("topics", []), ) -DEFAULT_EXTENDED_REPOSITORY_DATA = ( +EXPORTED_DOWNLOADED_REPOSITORY_DATA = EXPORTED_REPOSITORY_DATA + ( ("archived", False), ("config_flow", False), ("default_branch", None), - ("description", ""), ("first_install", False), ("installed_commit", None), ("installed", False), @@ -41,12 +48,9 @@ DEFAULT_EXTENDED_REPOSITORY_DATA = ( ("manifest_name", None), ("open_issues", 0), ("published_tags", []), - ("pushed_at", ""), ("releases", False), ("selected_tag", None), ("show_beta", False), - ("stargazers_count", 0), - ("topics", []), ) @@ -80,6 +84,8 @@ class HacsData: "ignored_repositories": self.hacs.common.ignored_repositories, }, ) + if self.hacs.configuration.experimental: + await self._async_store_experimental_content_and_repos() await self._async_store_content_and_repos() async def _async_store_content_and_repos(self, _=None): # bb: ignore @@ -94,40 +100,94 @@ class HacsData: for event in (HacsDispatchEvent.REPOSITORY, HacsDispatchEvent.CONFIG): self.hacs.async_dispatch(event, {}) + async def _async_store_experimental_content_and_repos(self, _=None): # bb: ignore + """Store the main repos file and each repo that is out of date.""" + # Repositories + self.content = {} + for repository in self.hacs.repositories.list_all: + if repository.data.category in self.hacs.common.categories: + self.async_store_experimental_repository_data(repository) + + await async_save_to_store(self.hacs.hass, "data", {"repositories": self.content}) + @callback def async_store_repository_data(self, repository: HacsRepository) -> dict: """Store the repository data.""" data = {"repository_manifest": repository.repository_manifest.manifest} - for key, default_value in DEFAULT_BASE_REPOSITORY_DATA: - if (value := repository.data.__getattribute__(key)) != default_value: + for key, default in ( + EXPORTED_DOWNLOADED_REPOSITORY_DATA + if repository.data.installed + else EXPORTED_REPOSITORY_DATA + ): + if (value := getattr(repository.data, key, default)) != default: data[key] = value - if repository.data.installed: - for key, default_value in DEFAULT_EXTENDED_REPOSITORY_DATA: - if (value := repository.data.__getattribute__(key)) != default_value: - data[key] = value + if repository.data.installed_version: data["version_installed"] = repository.data.installed_version - if repository.data.last_fetched: data["last_fetched"] = repository.data.last_fetched.timestamp() self.content[str(repository.data.id)] = data + @callback + def async_store_experimental_repository_data(self, repository: HacsRepository) -> None: + """Store the experimental repository data for non downloaded repositories.""" + data = {} + self.content.setdefault(repository.data.category, []) + + if repository.data.installed: + data["repository_manifest"] = repository.repository_manifest.manifest + for key, default in EXPORTED_DOWNLOADED_REPOSITORY_DATA: + if (value := getattr(repository.data, key, default)) != default: + data[key] = value + + if repository.data.installed_version: + data["version_installed"] = repository.data.installed_version + if repository.data.last_fetched: + data["last_fetched"] = repository.data.last_fetched.timestamp() + else: + for key, default in EXPORTED_BASE_DATA: + if (value := getattr(repository.data, key, default)) != default: + data[key] = value + + self.content[repository.data.category].append({"id": str(repository.data.id), **data}) + async def restore(self): """Restore saved data.""" self.hacs.status.new = False + repositories = {} + hacs = {} + try: hacs = await async_load_from_store(self.hacs.hass, "hacs") or {} except HomeAssistantError: - hacs = {} + pass try: - repositories = await async_load_from_store(self.hacs.hass, "repositories") or {} + data = ( + await async_load_from_store( + self.hacs.hass, + "data" if self.hacs.configuration.experimental else "repositories", + ) + or {} + ) + if data and self.hacs.configuration.experimental: + for category, entries in data.get("repositories", {}).items(): + for repository in entries: + repositories[repository["id"]] = {"category": category, **repository} + else: + repositories = ( + data or await async_load_from_store(self.hacs.hass, "repositories") or {} + ) except HomeAssistantError as exception: self.hacs.log.error( "Could not read %s, restore the file from a backup - %s", - self.hacs.hass.config.path(".storage/hacs.repositories"), + self.hacs.hass.config.path( + ".storage/hacs.data" + if self.hacs.configuration.experimental + else ".storage/hacs.repositories" + ), exception, ) self.hacs.disable_hacs(HacsDisabledReason.RESTORE) @@ -136,6 +196,8 @@ class HacsData: if not hacs and not repositories: # Assume new install self.hacs.status.new = True + if self.hacs.configuration.experimental: + return True self.logger.info(" Loading base repository information") repositories = await self.hacs.hass.async_add_executor_job( json_util.load_json, @@ -186,28 +248,34 @@ class HacsData: return False return True - async def register_unknown_repositories(self, repositories): + async def register_unknown_repositories(self, repositories, category: str | None = None): """Registry any unknown repositories.""" register_tasks = [ self.hacs.async_register_repository( repository_full_name=repo_data["full_name"], - category=repo_data["category"], + category=repo_data.get("category", category), check=False, repository_id=entry, ) for entry, repo_data in repositories.items() - if entry != "0" and not self.hacs.repositories.is_registered(repository_id=entry) + if entry != "0" + and not self.hacs.repositories.is_registered(repository_id=entry) + and repo_data.get("category", category) is not None ] if register_tasks: await asyncio.gather(*register_tasks) @callback - def async_restore_repository(self, entry, repository_data): + def async_restore_repository(self, entry: str, repository_data: dict[str, Any]): """Restore repository.""" - full_name = repository_data["full_name"] - if not (repository := self.hacs.repositories.get_by_full_name(full_name)): - self.logger.error(" Did not find %s (%s)", full_name, entry) + repository: HacsRepository | None = None + if full_name := repository_data.get("full_name"): + repository = self.hacs.repositories.get_by_full_name(full_name) + if not repository: + repository = self.hacs.repositories.get_by_id(entry) + if not repository: return + # Restore repository attributes self.hacs.repositories.set_repository_id(repository, entry) repository.data.authors = repository_data.get("authors", []) @@ -238,7 +306,7 @@ class HacsData: repository.data.last_fetched = datetime.fromtimestamp(last_fetched) repository.repository_manifest = HacsManifest.from_dict( - repository_data.get("repository_manifest", {}) + repository_data.get("manifest") or repository_data.get("repository_manifest") or {} ) if repository.localpath is not None and is_safe(self.hacs, repository.localpath): @@ -248,6 +316,6 @@ class HacsData: if repository.data.installed: repository.data.first_install = False - if full_name == HacsGitHubRepo.INTEGRATION: + if entry == HACS_REPOSITORY_ID: repository.data.installed_version = self.hacs.version repository.data.installed = True diff --git a/custom_components/hacs/utils/default.repositories b/custom_components/hacs/utils/default.repositories index 312cb58..6de2a22 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.10.0", "hacs": "0.19.0", "filename": "hacs.zip"}, "authors": ["@ludeeus"], "category": "integration", "description": "HACS gives you a powerful UI to handle downloads of all your custom needs.", "domain": "hacs", "downloads": 29479, "etag_repository": "W/\"74061fbc1ee7d30b872aeef4de37c54ac7c4d66f81b7038781a4e18139ceb033\"", "full_name": "hacs/integration", "last_updated": "2022-10-22T14:51:16Z", "stargazers_count": 2986, "topics": ["community", "package-manager"], "config_flow": true, "default_branch": "main", "installed": false, "last_commit": "fc8485a", "last_version": "1.28.2", "manifest_name": "HACS", "open_issues": 4, "published_tags": ["1.28.2", "1.28.1", "1.28.0", "1.27.2", "1.27.1"], "pushed_at": "2022-10-22T14:51:16", "releases": true, "version_installed": null, "last_fetched": 1666451596.402722, "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"}, "authors": ["@albertogeniola"], "category": "integration", "description": "Custom component that leverages the Meross IoT library to integrate with Homeassistant", "domain": "meross_cloud", "etag_repository": "W/\"73bc81e4c2a8137576ac5e453cdc8298070f896a882916c675dad49750199fe6\"", "full_name": "albertogeniola/meross-homeassistant", "last_updated": "2022-07-27T15:02:18Z", "stargazers_count": 453, "topics": ["meross", "meross-homeassistant"], "last_fetched": 1665938700.930509, "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"}, "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/\"55118990ee3fa9adb427edf96103b12b5f1a1303bc078c191c8b5b01422efa7e\"", "full_name": "5high/konke", "last_updated": "2022-02-08T07:44:52Z", "stargazers_count": 17, "last_fetched": 1657788811.802879, "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"}, "category": "integration", "description": "HomeAssistant custom component to control your SONOS Alarm", "domain": "sonos_alarm", "etag_repository": "W/\"4481cfb94fea57a700057ada7be94d438182828c96a14577e572b753c5a1d612\"", "full_name": "AaronDavidSchneider/SonosAlarm", "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": {}, "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/\"10615c3f04fbb78682b25d5599d0895f2a375d6744cd57923d97f8c3aa0e50d3\"", "full_name": "akasma74/Hass-Custom-Alarm", "last_updated": "2022-04-29T16:36:33Z", "stargazers_count": 79, "last_fetched": 1656859035.199773, "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}, "authors": ["@algirdasc"], "category": "integration", "description": "Floureon (Broadlink based) thermostat integration for Home Assistant", "domain": "floureon", "etag_repository": "W/\"212fab219679e624b4317cb23ffad00fdff76302941a0f0172bc50a394982e35\"", "full_name": "algirdasc/hass-floureon", "last_updated": "2021-12-26T20:32:45Z", "stargazers_count": 22, "topics": ["broadlink", "floureon", "thermostat"], "last_fetched": 1657788817.884012, "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}, "authors": ["@alryaz"], "category": "integration", "description": "Hekr integration using python-hekr", "domain": "hekr", "etag_repository": "W/\"2986d359c28cdd1263f56b2fb227e661eddf3cbb19cf1c21bdfce42a077b4c30\"", "full_name": "alryaz/hass-hekr-component", "last_updated": "2022-04-07T13:32:52Z", "stargazers_count": 32, "topics": ["consumption", "hekr", "wisen-application"], "last_fetched": 1661584941.226334, "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"}, "authors": ["@amaximus"], "category": "integration", "description": "FKF Budapest Garbage Collection custom component for Home Assistant", "domain": "fkf_garbage_collection", "downloads": 3, "etag_repository": "W/\"61e68ac00214f12110ceece479dcf003dbe94ab56adbfaea1a8cd0109f42a663\"", "full_name": "amaximus/fkf-garbage-collection", "last_updated": "2022-06-03T06:25:28Z", "stargazers_count": 15, "topics": ["budapest"], "last_fetched": 1656859051.678255, "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"}, "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\"", "full_name": "5high/phicomm-dc1-homeassistant", "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"]}, "authors": ["@alryaz", "@turbo-lab"], "category": "integration", "description": "Home Assistant custom component for Pandora Car Alarm System", "domain": "pandora_cas", "etag_repository": "W/\"d167b37f3a64e788250e0bb9ac635dbbd752e68387f9224306882702b39657b0\"", "full_name": "alryaz/hass-pandora-cas", "last_updated": "2022-01-19T10:25:34Z", "stargazers_count": 16, "topics": ["car-system", "pandora-alarm", "vehicle-tracking"], "last_fetched": 1662801624.873442, "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"}, "authors": ["@AkA57"], "category": "integration", "description": "Livebox TV UHD custom component for Home Assistant", "domain": "liveboxtvuhd", "etag_repository": "W/\"432d1b0129ad4f7d51fc5bb49fc1cef65280b831b55906d4889debdb3cf63f81\"", "full_name": "AkA57/liveboxtvuhd", "last_updated": "2022-01-27T21:17:31Z", "stargazers_count": 13, "topics": ["livebox"], "last_fetched": 1665325383.025223, "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"}, "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\"", "full_name": "AdamNaj/linksys_velop", "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": {}, "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/\"f799dccc11ff2f8d609ae01b21a448d7d8dea9525f729aca499dced25fac02df\"", "full_name": "andersonshatch/midea-ac-py", "last_updated": "2021-03-07T12:12:17Z", "stargazers_count": 74, "topics": ["midea"], "last_fetched": 1665938715.641148, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "160728801": {"repository_manifest": {}, "authors": ["@asantaga"], "category": "integration", "description": "Home Assistant Sensor for the LightwaveRF energy monitor", "domain": "lightwaverf_energy", "etag_repository": "W/\"2af6276bcf036ddcea41b9436c916c401a964072cc0130da2f5fc2975b21d29c\"", "full_name": "asantaga/lightwaverf_HA_EnergySensor", "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.06", "render_readme": true}, "authors": ["@asantaga", "@msp1974"], "category": "integration", "description": "Platform and related climate/sensors to support the Drayton Wiser Home Heating System", "domain": "wiser", "downloads": 4, "etag_repository": "W/\"9e3b831b24a871975f3b969db65e86996f1bb42cbd3015597feb1c4f3451edd1\"", "full_name": "asantaga/wiserHomeAssistantPlatform", "last_updated": "2022-10-22T10:00:10Z", "stargazers_count": 140, "topics": ["drayton", "heating", "wiser"], "last_fetched": 1666451188.470116, "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"}, "authors": ["@anonym-tsk"], "category": "integration", "description": "Xiaomi IR Climate Component", "domain": "xiaomi_remote", "etag_repository": "W/\"561a01d7ecc090a4f1a13dda0d6d60729ccee6134883f444f134090f7530b987\"", "full_name": "Anonym-tsk/homeassistant-climate-xiaomi-remote", "last_updated": "2022-10-11T15:33:07Z", "stargazers_count": 29, "topics": ["climate", "xiaomi"], "last_fetched": 1665938717.425963, "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"}, "authors": ["@And3rsL"], "category": "integration", "description": "Visonic/Bentel/Tyco Alarm System integrtation for Home Assistant", "domain": "visonicalarm", "etag_repository": "W/\"b0445d5c409aede2bb971fdda8f8c008300919420e39a959a5101798de057eff\"", "full_name": "And3rsL/VisonicAlarm-for-Hassio", "last_updated": "2022-04-29T12:20:46Z", "stargazers_count": 16, "topics": ["alarm", "alarm-control-panel", "bentel", "tycomonitor", "visonic"], "last_fetched": 1665325400.575552, "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"}, "authors": ["@arjenvrh"], "category": "integration", "description": "Adds an audi connect integration to home assistant", "domain": "audiconnect", "etag_repository": "W/\"7286167c344652ea0e8c81f35bff9099e8a3e997b8a5b727dbf7321e9ce674f8\"", "full_name": "arjenvrh/audi_connect_ha", "last_updated": "2022-10-06T19:37:13Z", "stargazers_count": 116, "topics": ["audi", "audi-connect", "sensors"], "last_fetched": 1665325407.764328, "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}, "authors": ["@asev"], "category": "integration", "description": "Uponor Smatrix Pulse heating/cooling system integration for Home Assistant.", "domain": "uponor", "etag_repository": "W/\"1523fc5063fb7ab92ff917c0ead00631afbae5978b4200d5fac2a50c8f8c59f1\"", "full_name": "asev/homeassistant-uponor", "last_updated": "2022-02-09T12:50:09Z", "stargazers_count": 22, "topics": ["heating-control", "smatrix", "uponor", "uponor-smatrix-pulse"], "last_fetched": 1665325413.070103, "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}, "authors": ["@ayavilevich"], "category": "integration", "description": "A D-Link AP/router device tracker for Home Assistant", "domain": "dlink_presence", "etag_repository": "W/\"e3e5d1c5f1c7863e87bbe7e461c715aa9896e030b7f3dde5aa0dc0258cb16d59\"", "full_name": "ayavilevich/homeassistant-dlink-presence", "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"}, "authors": ["@bacco007"], "category": "integration", "description": "OpenNEM Sensor for Home Assistant", "domain": "opennem", "etag_repository": "W/\"05c7767329fb805023825e82ef265123bab939e62a7fe668e7a2c411303b5a0c\"", "full_name": "bacco007/sensor.opennem", "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}, "authors": ["@azogue"], "category": "integration", "description": "HomeAssistant custom sensor to track specific events", "domain": "eventsensor", "etag_repository": "W/\"45d5e79f7e4beb49596976182ab44abbee008ad7b97d2f0a6d80a4153b50b8fd\"", "full_name": "azogue/eventsensor", "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"}, "authors": ["@SebuZet"], "category": "integration", "description": "Home Assistant Climate Device for controlling (not only) Samsung AC", "domain": "climate_ip", "etag_repository": "W/\"0d44166d52b8001125eb947ea971c558fb10bc97b5d52ac5a1cbfb70b48e32a8\"", "full_name": "atxbyea/samsungrac", "last_updated": "2022-07-23T23:22:45Z", "stargazers_count": 32, "topics": ["airconditioning", "hacktoberfest2021", "samsung"], "last_fetched": 1665325413.086789, "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}, "authors": ["@atymic"], "category": "integration", "description": "Project Three Zero Home Assistant Integration", "domain": "project_zero_three", "etag_repository": "W/\"ea0b6abd62bf036fc3fda1402260d9ea66488e12ddab5963a4feb975f7b3145d\"", "full_name": "atymic/project_three_zero_ha", "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"}, "authors": ["@bacco007"], "category": "integration", "description": "Home Assistant Sensor for WaterNSW Real Time Data", "domain": "waternsw", "etag_repository": "W/\"b73752a3794ed2d25b146274a1e95809d2d8a58848c85326c87b9fd61812a537\"", "full_name": "bacco007/sensor.waternsw", "last_updated": "2022-06-10T08:04:57Z", "stargazers_count": 5, "last_fetched": 1661584967.447957, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "137655647": {"repository_manifest": {}, "authors": ["@bertbert72"], "category": "integration", "description": "HomeAssistant component for control of Virgin Media Tivo boxes", "domain": "virgintivo", "etag_repository": "W/\"92d3fae6da8ae9b805d8a216303d90e749485f577fe8e5b869263a60d292bcaf\"", "full_name": "bertbert72/HomeAssistant_VirginTivo", "last_updated": "2022-10-09T12:31:35Z", "stargazers_count": 22, "last_fetched": 1665325420.274884, "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}, "authors": ["@BSantalucia"], "category": "integration", "description": "Home assistant custom component to provide monetary account balance sensors for Bunq", "domain": "bunq", "etag_repository": "W/\"a022e41ed4b11d1f3ff40a8f34b15bd1ed4a034493b9937ea62e8fb5ae8bb669\"", "full_name": "ben8p/home-assistant-bunq-balance-sensors", "last_updated": "2022-01-04T14:46:01Z", "stargazers_count": 2, "topics": ["bunq", "bunq-api", "home-assistant-sensor"], "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": {}, "authors": ["@basschipper"], "category": "integration", "description": "Generic Hygrostat for Home Assistant", "domain": "generic_hygrostat", "etag_repository": "W/\"a0e50f60e53f8b67540f570a75d40b938f543a9f27dd31141eb824aaad305f5d\"", "full_name": "basschipper/homeassistant-generic-hygrostat", "last_updated": "2022-01-09T14:17:22Z", "stargazers_count": 58, "last_fetched": 1665938734.38644, "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"}, "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/\"db358394766d74f8079f34c3a7aa04fb413bfedca4f2c1d2776200367f33a4a7\"", "full_name": "barban-dev/homeassistant-midea-dehumidifier", "last_updated": "2022-01-31T20:14:41Z", "stargazers_count": 44, "topics": ["dehumidifier", "eva-ii-pro-wifi", "internet-of-things", "inventor", "iot", "midea"], "last_fetched": 1665325418.181563, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192086849": {"repository_manifest": {}, "authors": ["bouwew"], "category": "integration", "description": "GoodWe SEMS MQTT-componenent for Home Assistant", "domain": "sems2mqtt", "etag_repository": "W/\"62a0ae0ad13d89b503ab6754696155c162aa653c9e9c8d8b7ec373427acb179f\"", "full_name": "bouwew/sems2mqtt", "last_updated": "2022-03-03T07:57:14Z", "stargazers_count": 7, "last_fetched": 1657362649.546824, "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}, "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\"", "full_name": "boralyl/kodi-recently-added", "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"}, "authors": ["@binsentsu"], "category": "integration", "description": "Home assistant Component for reading data locally from Solaredge inverter through modbus TCP", "domain": "solaredge_modbus", "etag_repository": "W/\"53fc7cdc06eadc38a090f0e33400d25cfcf26a2097cb3c69396eb1de9501274c\"", "full_name": "binsentsu/home-assistant-solaredge-modbus", "last_updated": "2022-10-20T09:50:43Z", "stargazers_count": 104, "topics": ["modbus", "modbus-tcp", "solaredge", "solaredge-inverter"], "last_fetched": 1666451199.907639, "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}, "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\"", "full_name": "boralyl/steam-wishlist", "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"}, "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/\"32d0f13fbc81f1430b697f64d9ea065a1776e5cab80ec9ebe4fa2da8dfa6f4d5\"", "full_name": "bigbadblunt/homeassistant-lightwave2", "last_updated": "2022-09-02T18:06:26Z", "stargazers_count": 34, "topics": ["lightwave", "lightwaverf"], "last_fetched": 1666451199.515208, "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}, "authors": ["@bouni"], "category": "integration", "description": "Luxtronik integration for Home Assistant", "domain": "luxtronik", "etag_repository": "W/\"32deaf6a8edacbd0b5731934cad01a31c83bef593f1947b088ddacccefe2d25f\"", "full_name": "Bouni/luxtronik", "last_updated": "2022-06-10T05:17:21Z", "stargazers_count": 43, "topics": ["luxtronik", "luxtronik2"], "last_fetched": 1665325430.812599, "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}, "authors": ["@bramkragten"], "category": "integration", "description": "Add support for Mind Mobility vehicles in Home Assistant", "domain": "mind", "etag_repository": "W/\"a5c0237439d05a5353bfa99e20ce7509165ae9743d05a544ece9229ede619faa\"", "full_name": "bramkragten/mind", "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}, "authors": ["Bouni"], "category": "integration", "description": "DRK Blutspende component for Home Assistant ", "domain": "drkblutspende", "etag_repository": "W/\"acb23cb2e48a20f9ac686e5411c126b5ce6746a00c7f56cfca9709e2082013a3\"", "full_name": "Bouni/drkblutspende", "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": {}, "category": "integration", "description": "Screenly media player custom component for Home Assistant.", "domain": "screenly", "etag_repository": "W/\"b028cbcd074a688327e8c9e6d0897dd8840a6238cb51c903ef309879293707ec\"", "full_name": "burnnat/media_player.screenly", "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"]}, "authors": ["@floriskruisselbrink", "@Cadsters", "@aritmeester"], "category": "integration", "description": "\ud83d\uddd1\ufe0f Integration for bin/waste collection by acv-groep", "domain": "acv", "etag_repository": "W/\"301b223198d2dc87356def05fdc06bd27e7d932b0a277479e4f80ca4751c78e4\"", "full_name": "Cadsters/acv-hass-component", "last_updated": "2022-05-30T13:17:35Z", "stargazers_count": 4, "topics": ["acv-groep", "python3", "trash", "waste"], "last_fetched": 1664982190.248588, "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": "2021.9.0"}, "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/\"4d05901bb686a5303b0e6eaceb60a2a43af3609e3f97bbb3077aca32446c734d\"", "full_name": "briis/meteobridge", "last_updated": "2022-01-10T13:36:59Z", "stargazers_count": 5, "topics": ["meteobridge"], "last_fetched": 1641895531.02994, "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"}, "authors": ["@bremor"], "category": "integration", "description": "Reverse engineered implementation of the Bonaire MyClimate app.", "domain": "bonaire_myclimate", "etag_repository": "W/\"a027c8d5f6ebfcd241de6ad604b127ed3a9fd22cad2c20f33bd26dfb45e5332b\"", "full_name": "bremor/bonaire_myclimate", "last_updated": "2021-12-17T11:02:09Z", "stargazers_count": 12, "topics": ["bonaire", "bonaire-myclimate", "climate", "myclimate"], "last_fetched": 1656859080.746004, "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"}, "category": "integration", "description": "Home Assistant integration to push fitness data to remote services.", "domain": "fitness_push", "etag_repository": "W/\"62361253781aeddcf0352876ad36c5b120f856841ee5e5582e63304ee9c06ea2\"", "full_name": "burnnat/ha-fitness-push", "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.5.0"}, "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": 11742, "etag_repository": "W/\"e445c7bffb449a995bece3dd21ce431d1dc552cb845682e0a355a9db2790613b\"", "full_name": "bruxy70/Garbage-Collection", "last_updated": "2022-10-18T08:35:50Z", "stargazers_count": 323, "topics": ["garbage-collection", "schedule", "waste", "waste-management"], "last_fetched": 1666451215.442697, "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}, "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\"", "full_name": "cagnulein/switchbot_press", "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"}, "authors": ["@bruxy70"], "category": "integration", "description": "\ud83d\ude8d Home Assistant custom sensor for finding Czech Public Transportation Connections", "domain": "cz_pub_tran", "downloads": 261, "etag_repository": "W/\"4f29e45e6dc1407631cf5fab09951d565f767e76a1f1727d07cbcaf573845270\"", "full_name": "bruxy70/CZ-Public-Transport", "last_updated": "2022-06-01T20:40:21Z", "stargazers_count": 10, "topics": ["chaps", "crws", "departure-times", "idos", "public-transportation"], "last_fetched": 1656859085.964817, "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": "2022.7.0"}, "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/\"99e5987759c1bcacf166f740a51df1d513a0d660ff91f20691264d0bf910567e\"", "full_name": "briis/weatherbit", "last_updated": "2022-07-03T05:58:01Z", "stargazers_count": 33, "topics": ["meteorological-data", "weather-forecast", "weatherbit"], "last_fetched": 1657788861.019293, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "210269734": {"repository_manifest": {"name": "HDHomeRun"}, "category": "integration", "description": "HDHomeRun integration for Home Assistant.", "domain": "hdhomerun", "etag_repository": "W/\"e41ec5355213a6063702d2222aedf8659813dbddc198e69a1007a19f156782fe\"", "full_name": "burnnat/ha-hdhomerun", "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"]}, "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/\"286c00e8b8599c069ec931d021fd2790b1540af99671fe5be67d739820e03dea\"", "full_name": "caiosweet/Home-Assistant-custom-components-DPC-Alert", "last_updated": "2022-06-20T14:53:10Z", "stargazers_count": 33, "topics": ["dpc", "protezionecivile"], "last_fetched": 1665325443.482777, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "191563578": {"repository_manifest": {}, "authors": ["@Ceerbeerus"], "category": "integration", "description": "Gives you information about the latest beer available at Systembolaget in Sweden, also known as \"Tillf\u00e4lligt sortiment\".", "domain": "beerbolaget", "etag_repository": "W/\"7e8e74d7b1cbc7c85ab8d57c96ef4b2f02e24b44db913a9975c3d32041af65a3\"", "full_name": "Ceerbeerus/beerbolaget", "last_updated": "2020-05-20T15:25:17Z", "stargazers_count": 4, "last_fetched": 1653229628.477883, "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"}, "authors": ["@claytonjn"], "category": "integration", "description": "Circadian Lighting custom component for Home Assistant", "domain": "circadian_lighting", "etag_repository": "W/\"12a547b0ed3971870822b5c69531a8dbe2896d07a1c803255e644b3f34cb3ffc\"", "full_name": "claytonjn/hass-circadian_lighting", "last_updated": "2022-09-17T00:26:39Z", "stargazers_count": 537, "topics": ["circadian", "circadian-rhythms", "lighting", "sleep", "wellness"], "last_fetched": 1666451227.756737, "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"}, "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/\"373504e4281df3230004f39e074891c41cc08c7e05a061c371d59c37b7526332\"", "full_name": "claudegel/sinope-gt125", "last_updated": "2022-04-09T02:44:10Z", "stargazers_count": 12, "topics": ["sinope"], "last_fetched": 1661585000.045352, "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"}, "authors": ["@claudegel"], "category": "integration", "description": "Neviweb Custom Component for Home Assistant to manage devices connected via GT125", "domain": "neviweb", "etag_repository": "W/\"ec2ce855e9c84e16e45c96e1ebf08b34a1cb0d200c96cf0878dba8075bb19889\"", "full_name": "claudegel/sinope-1", "last_updated": "2022-04-07T13:06:32Z", "stargazers_count": 19, "topics": ["neviweb", "sinope"], "last_fetched": 1653229630.731887, "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}, "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\"", "full_name": "custom-components/brewdog", "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": "2021.12.0b0"}, "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": 24463, "etag_repository": "W/\"73277e25be33b9de4d5d1e0c64715f258f4b57e6941ef7a21eae576151ef761f\"", "full_name": "custom-components/alexa_media_player", "last_updated": "2022-10-18T15:41:12Z", "stargazers_count": 951, "topics": ["alexa"], "last_fetched": 1666451231.054662, "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"}, "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/\"b93dfec4a65db9c447a146586166a2c8f51d30d76f8b5748c72c009f4ab13ea2\"", "full_name": "claudegel/sinope-130", "last_updated": "2022-10-22T02:40:53Z", "stargazers_count": 25, "topics": ["neviweb", "sinope"], "last_fetched": 1666451226.938912, "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"}, "authors": ["@gerard33"], "category": "integration", "description": "E-Thermostaat (ICY) component for Home Assistant", "domain": "e_thermostaat", "downloads": 31, "etag_repository": "W/\"df7a9e3a9adbc197cbdc28c3f3a76824d3cf9514e6f2aa1f8782184c46456a79\"", "full_name": "custom-components/climate.e_thermostaat", "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": {}, "category": "integration", "description": "Programmable thermostat that let you have a smart thermostat on budget.", "domain": "programmable_thermostat", "etag_repository": "W/\"841d124030b3f50cf51077765697d7691bb3f2ab5df9f508bdc3963a360155c5\"", "full_name": "custom-components/climate.programmable_thermostat", "last_updated": "2021-06-20T12:34:18Z", "stargazers_count": 92, "last_fetched": 1665325457.836763, "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"}, "category": "integration", "description": "The fedex platform allows one to track deliveries by FedEx", "domain": "fedex", "etag_repository": "W/\"6de65545cb6885425b88bedd017d47bca69a106336c6e1f37ab4a15220d29374\"", "full_name": "custom-components/fedex", "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}, "authors": ["@iantrich"], "category": "integration", "description": "\ud83d\udcf0 RSS Feed Integration", "domain": "feedparser", "etag_repository": "W/\"f9c14b71d6f658c4a2373ec369b169b259743230b87738e86d3361d7aa3736b7\"", "full_name": "custom-components/feedparser", "last_updated": "2022-01-31T14:09:21Z", "stargazers_count": 87, "last_fetched": 1665938771.763366, "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"}, "authors": ["@ludeeus"], "category": "integration", "description": "Update and display the status of your healthchecks.io checks.", "domain": "healthchecksio", "downloads": 791, "etag_repository": "W/\"641c18a91f5427476b33cbde89a9f19c237566446c6796eac50727ba46c38dfb\"", "full_name": "custom-components/healthchecksio", "last_updated": "2022-07-29T04:17:16Z", "stargazers_count": 36, "topics": ["api-client", "healthchecksio", "monitor"], "last_fetched": 1665325459.785322, "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}, "authors": ["@tenly2000", "@iantrich"], "category": "integration", "description": "Component to integrate with OpenStreetMap Reverse Geocode (places)", "domain": "places", "etag_repository": "W/\"b1ab3423a091c0ccc2c0c1d1277a39f221ff08a01af3b46083bfc2dd318556c8\"", "full_name": "custom-components/places", "last_updated": "2022-10-14T01:58:09Z", "stargazers_count": 68, "topics": ["device-tracker", "geolocation", "openstreetmap"], "last_fetched": 1665938773.543669, "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}, "authors": ["@hellowlol"], "category": "integration", "description": "nordpool sensor for ha.", "domain": "nordpool", "etag_repository": "W/\"9b99f2d13cc2549c8ee59b4b0f134ca3590ca169495011b0aa0c8538c98a6f31\"", "full_name": "custom-components/nordpool", "last_updated": "2022-10-14T20:29:35Z", "stargazers_count": 196, "topics": ["nordpool"], "last_fetched": 1666451237.355808, "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"}, "authors": ["@iantrich"], "category": "integration", "description": "\ud83c\udfa7 gPodder Integration for Podcast Feed Monitoring", "domain": "gpodder", "downloads": 261, "etag_repository": "W/\"796bb09fce04c7df2dc3504b6834fdb6366335c81a90d25eb629f953cf6b08e7\"", "full_name": "custom-components/gpodder", "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": {}, "authors": ["@SebRut"], "category": "integration", "description": null, "domain": "qbo", "etag_repository": "W/\"25326cafd527a5b1a4c182637275b3f8f1ef1175f346aa104401ed963888eb1e\"", "full_name": "custom-components/qbo", "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"}, "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\"", "full_name": "custom-components/linksys_ap", "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": {}, "authors": ["@MartyTremblay"], "category": "integration", "description": "hassio support for Airthings Wave BLE environmental radon sensor.", "domain": "airthings_wave", "etag_repository": "W/\"9b7333b79ace3691fe1fa6ecacb22ad7edfabefd7d1ccfaaaa802e3fcd9b7142\"", "full_name": "custom-components/sensor.airthings_wave", "last_updated": "2022-08-05T04:27:37Z", "stargazers_count": 96, "topics": ["airthings-wave", "bluetooth-low-energy", "btle", "environmental", "home-assistant-sensor", "radon"], "last_fetched": 1665325465.971966, "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"}, "authors": ["@craigbarratt"], "category": "integration", "description": "Pyscript adds rich Python scripting to HASS", "domain": "pyscript", "downloads": 8183, "etag_repository": "W/\"0d38460f4d0f152153d29b5699423bff23e39f1af4642246c56c80f66fb66281\"", "full_name": "custom-components/pyscript", "last_updated": "2022-08-15T18:00:36Z", "stargazers_count": 535, "topics": ["jupyter"], "last_fetched": 1666451238.183189, "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"}, "authors": ["@SebRut", "@isabellaalstrom"], "category": "integration", "description": "Custom Grocy integration for Home Assistant", "domain": "grocy", "downloads": 1639, "etag_repository": "W/\"41b243def7efe4406eb0b1c603485db8f2c26aec4800a11687ff497563917dc1\"", "full_name": "custom-components/grocy", "last_updated": "2022-09-24T11:02:29Z", "stargazers_count": 83, "topics": ["grocy"], "last_fetched": 1665938772.305456, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "173564471": {"repository_manifest": {}, "category": "integration", "description": "Improved file sensor component that let you read the whole last line content.", "domain": "file_restore", "etag_repository": "W/\"9716d3ccee28a0d4aed787ba848dba9d08c948455785ff4e73beed79505c0d36\"", "full_name": "custom-components/sensor.file_restore", "last_updated": "2021-03-20T08:09:50Z", "stargazers_count": 10, "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}, "authors": ["@claha"], "category": "integration", "description": "Custom component to get stock data from Avanza for Home Assistant", "domain": "avanza_stock", "etag_repository": "W/\"e0e4154ac99b0bb40a1c4e5511396f55da8365c2c49900eafe6e117b24dab8ff\"", "full_name": "custom-components/sensor.avanza_stock", "last_updated": "2022-07-06T17:32:44Z", "stargazers_count": 32, "topics": ["funds", "stock"], "last_fetched": 1661585014.21238, "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}, "authors": ["@hellowlol"], "category": "integration", "description": "Simple sensor for avfallsor", "domain": "avfallsor", "etag_repository": "W/\"495eacc6aaa2681a801440ca84b6a009b563ce9ef253e310a3bfdf695283884f\"", "full_name": "custom-components/sensor.avfallsor", "last_updated": "2022-02-06T14:29:45Z", "stargazers_count": 6, "last_fetched": 1644420412.064174, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "145777833": {"repository_manifest": {}, "authors": ["@iantrich"], "category": "integration", "description": "\ud83d\udcb5 Personal Capital Integration for Bank Account Monitoring", "domain": "personalcapital", "etag_repository": "W/\"a14bc3cc7cf0584e0c9cacc9451f2a3891a952dee19a6d3cc2a447995ec87d11\"", "full_name": "custom-components/sensor.personalcapital", "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": {}, "authors": ["@glpatcern"], "category": "integration", "description": "A set of sensors to integrate the OWL Intuition devices network", "domain": "owlintuition", "etag_repository": "W/\"2be7cc81c7f3eb033b79f7a64b7b56a4c841557d0495dc2c32ea91a75c776bde\"", "full_name": "custom-components/sensor.owlintuition", "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"}, "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\"", "full_name": "custom-components/sensor.nintendo_wishlist", "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": {}, "authors": ["@jchasey"], "category": "integration", "description": "SSH Generic Sensor", "domain": "ssh", "etag_repository": "W/\"d4e4975afb09f3592cb0dc9ed348d088406933235ec30884e73128995e5036fd\"", "full_name": "custom-components/sensor.ssh", "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": {}, "authors": ["@jchasey"], "category": "integration", "description": "High level health status of UniFi Security Gateway devices via UniFi Controller", "domain": "unifigateway", "etag_repository": "W/\"929a4166a7efe0e39807bec37f52217be29e183dfe783260460db2d8cf3b0e04\"", "full_name": "custom-components/sensor.unifigateway", "last_updated": "2021-04-19T12:12:56Z", "stargazers_count": 114, "last_fetched": 1665325471.312823, "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"}, "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\"", "full_name": "custom-components/sensor.stadtreinigung_hamburg", "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": {}, "authors": ["@iantrich", "@swetoast"], "category": "integration", "description": "\ud83c\udf7b Untappd Integration", "domain": "untappd", "etag_repository": "W/\"3218b78cd7b5be5de60f9ccef722b07cbcb0a68b9fceb634c35943701ebaeeb9\"", "full_name": "custom-components/sensor.untappd", "last_updated": "2022-01-01T08:31:44Z", "stargazers_count": 34, "topics": ["automations", "badges", "beer", "untappd", "untappd-api"], "last_fetched": 1645380002.457484, "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}, "authors": ["@iantrich", "@engrbm"], "category": "integration", "description": "\ud83d\udcfa Trakt Integration for Upcoming Media Card", "domain": "trakt", "etag_repository": "W/\"0e32e45bf4a45a4e40f3ea2ec8dc25aea138c9fa06f915632350c356e90c9aec\"", "full_name": "custom-components/sensor.trakt", "last_updated": "2022-06-21T14:17:46Z", "stargazers_count": 52, "last_fetched": 1665938782.633387, "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"]}, "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\"", "full_name": "custom-components/srp_energy", "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"}, "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\"", "full_name": "custom-components/youtube", "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"]}, "category": "integration", "description": "The sytadin sensor platform allows you to monitor traffic details from Sytadin", "domain": "sytadin", "etag_repository": "W/\"e350d94702ce10fe4acc0359969c2d99d719a4fe057775f6993380fd4ddd51ea\"", "full_name": "custom-components/sytadin", "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"}, "category": "integration", "description": "The ups platform allows one to track deliveries by the UPS", "domain": "ups", "etag_repository": "W/\"136c99e7ca204711ed5b028ebf5bc2d14d87fa20979f5c77bde2393d0671c574\"", "full_name": "custom-components/ups", "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"}, "authors": ["@ludeeus", "@jlverhagen"], "category": "integration", "description": "A sensor that gives you weather alerts from alerts.weather.gov.", "domain": "weatheralerts", "etag_repository": "W/\"d1e08f16f072846e9c47c4c35c1bd5f9a878e751c60a14ca86d9330d7877175a\"", "full_name": "custom-components/weatheralerts", "last_updated": "2022-06-25T01:40:30Z", "stargazers_count": 87, "topics": ["weatheralerts"], "last_fetched": 1666451248.739615, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180651910": {"repository_manifest": {}, "authors": ["hellowlol"], "category": "integration", "description": "zaptec charger custom component for home assistant", "domain": "zaptec", "etag_repository": "W/\"ac0de5545b30a36f47fd957eaf10d796c54d716ad2f49769c3be7afa3c8918fe\"", "full_name": "custom-components/zaptec", "last_updated": "2022-06-23T13:11:01Z", "stargazers_count": 12, "topics": ["api", "zaptec"], "last_fetched": 1666451249.374365, "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"}, "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/\"01d748b61405d54215d91b14e27d513fc3f718ad283a16697e7f654ed716589e\"", "full_name": "cyberjunky/home-assistant-arpscan_tracker", "last_updated": "2021-02-21T17:03:43Z", "stargazers_count": 16, "last_fetched": 1653229662.979436, "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"}, "authors": ["@cyberjunky"], "category": "integration", "description": ":fire_engine: This component tracks P2000 emergency events in The Netherlands.", "domain": "p2000", "etag_repository": "W/\"3cdc1a47f9e1772b12e04a08ef20b348a159cf7df27ee43daedeb11b75f682e3\"", "full_name": "cyberjunky/home-assistant-p2000", "last_updated": "2022-01-03T08:22:55Z", "stargazers_count": 43, "topics": ["emergency", "p2000"], "last_fetched": 1665325477.425885, "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"]}, "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\"", "full_name": "cyberjunky/home-assistant-plugwise", "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"}, "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\"", "full_name": "cyberjunky/home-assistant-hvcgroep", "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"]}, "authors": ["@cyberjunky"], "category": "integration", "description": "This component provides a climate device for rooted Toon thermostats.", "domain": "toon_climate", "etag_repository": "W/\"b897017d137103331ef9bbeebad38f30b8ad6de36488e14d115735031b5c8ebe\"", "full_name": "cyberjunky/home-assistant-toon_climate", "last_updated": "2022-02-03T10:49:03Z", "stargazers_count": 23, "last_fetched": 1646496840.183337, "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"}, "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/\"172ebaa8346b330a9cf3aa3458c7cb207aa659f70650fef274da34cc21db4b0e\"", "full_name": "cyberjunky/home-assistant-toon_boilerstatus", "last_updated": "2022-07-27T15:46:09Z", "stargazers_count": 9, "topics": ["cv", "opentherm", "toon"], "last_fetched": 1666451253.312707, "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"}, "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/\"fc2cfa73d7f0867280d432206a5d0979ee8eee2e295255c825ecc2a4fd0ab935\"", "full_name": "cyberjunky/home-assistant-toon_smartmeter", "last_updated": "2022-10-22T11:42:39Z", "stargazers_count": 14, "last_fetched": 1666451254.039969, "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"}, "authors": ["@cyberjunky"], "category": "integration", "description": "This components reads statistics from a The Things Network Gateway.", "domain": "ttn_gateway", "etag_repository": "W/\"1e83dda384aa58268644570a08c298cbc19d5282008c105d483a6028ab793547\"", "full_name": "cyberjunky/home-assistant-ttn_gateway", "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}, "authors": ["@cyr-ius"], "category": "integration", "description": "Livebox Component for Home assistant", "domain": "livebox", "etag_repository": "W/\"228abba9946556753c038f7bcddcbc73bb977d29c11900fa75ffb37e9aa3e62a\"", "full_name": "Cyr-ius/hass-livebox-component", "last_updated": "2022-08-07T11:25:37Z", "stargazers_count": 26, "topics": ["livebox", "orange"], "last_fetched": 1661585029.10486, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "297379398": {"repository_manifest": {"name": "Tractive"}, "authors": ["@danielhiversen"], "category": "integration", "description": "Custom component for Tractive", "domain": "tractive", "etag_repository": "W/\"8e5e970663b849393dc5405814a21e679dbafc8fb0acafbc0301adb73e55fc74\"", "full_name": "Danielhiversen/home_assistant_tractive", "last_updated": "2021-12-20T09:30:02Z", "stargazers_count": 34, "topics": ["tractive"], "last_fetched": 1665325485.932388, "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"}, "authors": ["@danielhiversen"], "category": "integration", "description": "Integration for Adax heaters", "domain": "adax", "etag_repository": "W/\"7c991f26142e74c4b36830b5013c4c70825c7903c5f963e5fb735f4f70d3c104\"", "full_name": "Danielhiversen/home_assistant_adax", "last_updated": "2021-04-28T05:30:29Z", "stargazers_count": 25, "topics": ["adax", "adax-heaters"], "last_fetched": 1666451259.543723, "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"}, "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/\"9dbe754f10e7556ade9a6aaa1a67ac9a94fb54d55a01925feadd75f1ffa74919\"", "full_name": "danobot/entity-controller", "last_updated": "2022-10-05T00:10:04Z", "stargazers_count": 199, "topics": ["finite-state-machine", "internet-of-things", "iot", "lighting-controller", "motion-light", "motion-sensor", "smart-home"], "last_fetched": 1665938798.046304, "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"}, "authors": ["@daenny"], "category": "integration", "description": "Home Assistant Climate Group", "domain": "climate_group", "etag_repository": "W/\"4db3d6d059e01f034e78a83cc0586824a3f27e6c94f248eae7cd3b5a5fa0a9aa\"", "full_name": "daenny/climate_group", "last_updated": "2022-08-16T14:36:57Z", "stargazers_count": 79, "last_fetched": 1665938794.019758, "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}, "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/\"f2c340b7778889f555d177c0f6f56817b3d426ce4a1f6de7ab6a1783fd2569b8\"", "full_name": "dave-code-ruiz/uhomeuponor", "last_updated": "2022-10-11T13:41:55Z", "stargazers_count": 11, "topics": ["gateway", "rest-api", "setpoint", "smatrix", "smatrixwaveplus", "thermostat", "uponor"], "last_fetched": 1665938800.197003, "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}, "authors": ["@darksir23"], "category": "integration", "description": "HomeAssistant Sensor for Mylar (Compatible with Upcoming Meda Card)", "domain": "mylar", "etag_repository": "W/\"e5632177f97a47539d4a2480308448f80de0e588d4b42b3e893062c48f552314\"", "full_name": "WillowMist/sensor.mylar", "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}, "160218749": {"repository_manifest": {"name": "Home Connect", "homeassistant": "0.102", "render_readme": true}, "authors": ["@DavidMStraub"], "category": "integration", "description": "Custom component for Home Assistant to connect appliances supporting the Home Connect standard", "domain": "home_connect_beta", "etag_repository": "W/\"98bd5cf917f56364fb81c429120af18c41d378e6a8a20793de3ae6fde8af7d36\"", "full_name": "DavidMStraub/homeassistant-homeconnect", "last_updated": "2022-02-17T07:29:31Z", "stargazers_count": 120, "topics": ["homeconnect"], "last_fetched": 1662801719.976838, "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}, "authors": ["deblockt"], "category": "integration", "description": "proscenic 790T intergration for home assistant", "domain": "proscenic", "downloads": 3, "etag_repository": "W/\"bfb3583228295d6ce70fd8a6142f24ffcc28285b129e2ae96d3bd295c7ca1030\"", "full_name": "deblockt/hass-proscenic-790T-vacuum", "last_updated": "2022-04-19T06:00:21Z", "stargazers_count": 13, "topics": ["790t", "proscenic", "vacuum", "vacuum-cleaner"], "last_fetched": 1653229677.613616, "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}, "authors": ["@definitio"], "category": "integration", "description": "Home Assistant integration for RHVoice - a local text-to-speech engine.", "domain": "rhvoice", "etag_repository": "W/\"bfbf449acca64588b0455a9edf8a6900dd2f53149ea8cd35d3c5b43c674ae381\"", "full_name": "definitio/ha-rhvoice", "last_updated": "2022-07-10T12:06:36Z", "stargazers_count": 30, "topics": ["rhvoice", "smarthome", "tts"], "last_fetched": 1665325494.085883, "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}, "authors": ["@definitio"], "category": "integration", "description": "A Home Assistant integration to turn your vacuum into an audio player.", "domain": "sox", "etag_repository": "W/\"75bcc16823914f2fd1d7bd1d32267638f7bc4f3b227d95cf7cab963f2b0b9bcd\"", "full_name": "definitio/ha-sox", "last_updated": "2022-10-08T16:49:31Z", "stargazers_count": 14, "topics": ["audio-player", "roborock", "robot-vacuum", "smarthome", "vacuum", "xiaomi"], "last_fetched": 1666451269.380412, "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}, "authors": ["@dgomes"], "category": "integration", "description": "Home Assistant Custom Component for ERSE", "domain": "erse", "etag_repository": "W/\"b2b3b756559f959e5622966a2480eff36ff9f9210d01373618ea8d0d8c67b91a\"", "full_name": "dgomes/ha_erse", "last_updated": "2022-05-09T14:30:17Z", "stargazers_count": 26, "topics": ["home-assistant-component", "utility-meters"], "last_fetched": 1665325495.603003, "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"}, "authors": ["Djbulsink", "SeraphimSerapis"], "category": "integration", "description": "Panasonic Comfort Cloud HA component", "domain": "panasonic_ac", "etag_repository": "W/\"9cf621fddba6859555697cd280de77d274c3178120ed5175321f21b9a50e8a5d\"", "full_name": "djbulsink/panasonic_ac", "last_updated": "2022-07-28T06:55:03Z", "stargazers_count": 30, "last_fetched": 1665325497.367815, "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"}, "authors": ["@dlarrick"], "category": "integration", "description": "Home Assistant module interfacing with Mitsubishi mini-split units", "domain": "kumo", "etag_repository": "W/\"3d84d71ea1e41fa45f0315000a20f4d03226e3b64e80bbe74c9f4ecd728178f7\"", "full_name": "dlarrick/hass-kumo", "last_updated": "2022-09-24T11:14:39Z", "stargazers_count": 54, "topics": ["climate", "kumo", "kumocloud", "mini-split", "mitsubishi"], "last_fetched": 1665938811.707184, "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"}, "authors": ["@djtimca"], "category": "integration", "description": "Home Assistant integration for SpaceX Next Launch and Starman data.", "domain": "spacex", "etag_repository": "W/\"71afd8ebe148f79ecf601bfb496515b2f52514ab208a909a844fbd8f1174cc83\"", "full_name": "djtimca/HASpaceX", "last_updated": "2022-09-09T14:10:17Z", "stargazers_count": 30, "topics": ["home-assistant-component", "home-assistant-sensor", "spacex", "spacex-launches"], "last_fetched": 1665325500.238365, "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"}, "authors": ["doudz"], "category": "integration", "description": "myjdownloader integration for home assistant", "domain": "myjdownloader", "etag_repository": "W/\"c712956ad2a94593cf0cc3d6b38f8fd11a903c434cbb5dc84e2bcc969435eb51\"", "full_name": "doudz/homeassistant-myjdownloader", "last_updated": "2022-09-26T19:35:39Z", "stargazers_count": 22, "last_fetched": 1665938816.095369, "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}, "category": "integration", "description": "Adds support for Yandex Smart Home (Alice voice assistant) into Home Assistant", "domain": "yandex_smart_home", "etag_repository": "W/\"a55906d6a52f764e5c77bcf65ccf84a8c149d4f713613fd0a069fc67b95602e9\"", "full_name": "dext0r/yandex_smart_home", "last_updated": "2022-07-01T20:27:27Z", "stargazers_count": 526, "topics": ["alice", "home-assistant-component", "voice-assistant", "yandex"], "last_fetched": 1656859150.74812, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200073618": {"repository_manifest": {}, "authors": ["@dlashua"], "category": "integration", "description": "Add template binary_sensors from the UI.", "domain": "templatebinarysensor", "etag_repository": "W/\"bff79847f43ac62020e1807780ff05b9120ff6f5e53a481a673668b229c792a7\"", "full_name": "dlashua/templatebinarysensor", "last_updated": "2021-11-11T12:35:12Z", "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"}, "authors": ["@dynasticorpheus"], "category": "integration", "description": "Gigaset Smart Home integration for Home Assistant", "domain": "gigasetelements", "etag_repository": "W/\"b6b21dae796b5587fab9f55e0cf31733595e57d2adfca6d771d6a3f99f3a2edb\"", "full_name": "dynasticorpheus/gigasetelements-ha", "last_updated": "2022-05-13T19:20:01Z", "stargazers_count": 14, "topics": ["community", "gigaset", "gigasetelements", "python3", "smarthome"], "last_fetched": 1661585060.572149, "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": "2021.12.0"}, "authors": ["@eifinger"], "category": "integration", "description": "Homeassistant integration for FoldingAtHomeControl", "domain": "foldingathomecontrol", "etag_repository": "W/\"8fcfa52685111da25a92728007bb84786565ae45d0e04a7ad332c690860edc5e\"", "full_name": "eifinger/hass-foldingathomecontrol", "last_updated": "2022-01-10T17:17:08Z", "stargazers_count": 14, "topics": ["asyncio", "folding-at-home", "foldingathome", "python3"], "last_fetched": 1641895576.742688, "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"}, "authors": ["@eifinger"], "category": "integration", "description": "Custom Component for Homeassistant Providing Travel Time Information using openrouteservice.org", "domain": "open_route_service", "etag_repository": "W/\"fabae90f933623a81b4af9f2edf36891cad1a9d949da3b17aac438a499c7a5bf\"", "full_name": "eifinger/open_route_service", "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"}, "authors": ["@elad-bar"], "category": "integration", "description": "Dahua VTO Integration", "domain": "dahuavto", "etag_repository": "W/\"9fd1e7caa0eced00e8e9c2e4a7567465465b701706fc1f65624c0c526f507aaf\"", "full_name": "elad-bar/ha-dahuavto", "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"}, "authors": ["@elad-bar"], "category": "integration", "description": "Integration with Blue Iris Video Security Software", "domain": "blueiris", "etag_repository": "W/\"e739b1cc90c8226631f38afbb9ea25d5155064b9b1d3319af588832971d604d5\"", "full_name": "elad-bar/ha-blueiris", "last_updated": "2022-06-13T13:12:59Z", "stargazers_count": 121, "last_fetched": 1662801746.173666, "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"}, "authors": ["@elad-bar"], "category": "integration", "description": "HP Printer Integration", "domain": "hpprinter", "etag_repository": "W/\"db1540428f67afb4c1836abe7fee948cca15b975120942aa47a1c6b895c68d24\"", "full_name": "elad-bar/ha-hpprinter", "last_updated": "2022-05-27T09:02:10Z", "stargazers_count": 63, "topics": ["hp", "hp-printer"], "last_fetched": 1665325520.043273, "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": "2021.12.0"}, "authors": ["@elad-bar"], "category": "integration", "description": "Integration with EdgeOS (Ubiquiti)", "domain": "edgeos", "etag_repository": "W/\"0d0ce009a41bd65d1d6b9eef7979f49a95e7c3f449d6b7102d9dbb1e04ab9417\"", "full_name": "elad-bar/ha-edgeos", "last_updated": "2022-10-16T07:11:54Z", "stargazers_count": 98, "topics": ["edgeos"], "last_fetched": 1665938828.557827, "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"}, "authors": ["@eseglem"], "category": "integration", "description": "Home Assistant WattBox Component", "domain": "wattbox", "etag_repository": "W/\"9c5e404e4f7304b33cb5e13bc1b3d103391b5ab4753a206d7b9712961e332512\"", "full_name": "eseglem/hass-wattbox", "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"}, "authors": ["@ericpignet"], "category": "integration", "description": "LG Hombot/Roboking Component for Home Assistant.", "domain": "lg_hombot", "etag_repository": "W/\"48495ebbca70ce903a2475782a040225118e6e225c89b14e205ab059db0954e5\"", "full_name": "ericpignet/home-assistant-lg_hombot", "last_updated": "2021-06-21T01:02:21Z", "stargazers_count": 5, "topics": ["hombot", "home-assistant-component", "roboking"], "last_fetched": 1661585072.199139, "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}, "category": "integration", "description": "Support for interface with an ElkoEP Lara devices", "domain": "elkoep_lara", "etag_repository": "W/\"54500ef736fc18bbed9c87e01922208f09e663038315b485e5b48a9a59fa3f40\"", "full_name": "exKAjFASH/media_player.elkoep_lara", "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"}, "authors": ["@eyalcha"], "category": "integration", "description": "Home Assistant sensor to read water meter", "domain": "read_your_meter", "etag_repository": "W/\"ae300d68f372200e73c1e206163a37e2772ea14ae22a98ad14d99f0d28d6f494\"", "full_name": "eyalcha/read_your_meter", "last_updated": "2022-07-25T19:36:44Z", "stargazers_count": 30, "last_fetched": 1665938837.72526, "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"}, "authors": ["@eyalcha"], "category": "integration", "description": "Thermal camera for Home Assistant", "domain": "thermal", "etag_repository": "W/\"df08b9fc18841f3ccd89f8f9278338d1d800af0b976f35768003c8ef355276a8\"", "full_name": "eyalcha/thermal", "last_updated": "2021-06-24T00:05:39Z", "stargazers_count": 25, "topics": ["camera"], "last_fetched": 1653229710.49098, "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"]}, "authors": ["@fineemb"], "category": "integration", "description": "\u7528\u4e8eHASS\u7684\u5f69\u4e91\u5929\u6c14\u7ec4\u4ef6", "domain": "colorfulclouds", "etag_repository": "W/\"8e14f8569058abc1693bd4d5abd4cc987fdccb14e16915105b2a39361c1ac72b\"", "full_name": "fineemb/Colorfulclouds-weather", "last_updated": "2022-06-06T22:33:46Z", "stargazers_count": 67, "topics": ["weather"], "last_fetched": 1665325529.53325, "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"]}, "authors": ["@fineemb"], "category": "integration", "description": "\u667a\u7c73\u667a\u80fd\u7535\u6696\u5668", "domain": "miheater", "etag_repository": "W/\"998f5463681275738a579d0f61d821b9bdac7d247e1996437392487b3b1a6c4a\"", "full_name": "fineemb/Smartmi-smart-heater", "last_updated": "2022-01-24T19:11:33Z", "stargazers_count": 17, "last_fetched": 1646496883.594532, "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"]}, "authors": ["@fineemb"], "category": "integration", "description": "HASS\u7684\u5c0f\u7c73\u4e91\u670d\u52a1\u96c6\u6210", "domain": "xiaomi_cloud", "etag_repository": "W/\"86d7f0e3a9fae73c8a121a539ec98dc37e1a0f11dc466d1a4de651d2e4403658\"", "full_name": "fineemb/xiaomi-cloud", "last_updated": "2022-05-16T04:02:11Z", "stargazers_count": 36, "topics": ["cloud", "xiaomi"], "last_fetched": 1665938840.028465, "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"}, "authors": ["@fineemb"], "category": "integration", "description": "\u5c0f\u7c73\u517b\u751f\u58f6", "domain": "health_pot", "etag_repository": "W/\"d4c4dcf7c0fe2e2c7f460e23a2eb06f20c1f30303158c375f81d048e126c485d\"", "full_name": "fineemb/Xiaomi-Smart-Multipurpose-Kettle", "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"}, "authors": ["@FL550"], "category": "integration", "description": "Deutscher Wetterdienst integration for Home-Assistant", "domain": "dwd_weather", "etag_repository": "W/\"14489c90c33e12c32447437c1677454ca5ef6824ac80d8d045f8f843d9f6b929\"", "full_name": "FL550/dwd_weather", "last_updated": "2022-09-04T07:31:23Z", "stargazers_count": 82, "topics": ["deutscher-wetterdienst", "dwd", "dwd-weather", "weather", "weather-entity", "weather-forecast"], "last_fetched": 1666451308.395492, "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}, "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/\"82c5240a409121945eebc9640a7fbaa603dfa47cedbe186e325392f09f166822\"", "full_name": "freakshock88/hass-populartimes", "last_updated": "2022-05-13T14:26:43Z", "stargazers_count": 23, "topics": ["google-maps", "google-places-api"], "last_fetched": 1662801762.925794, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "226707533": {"repository_manifest": {"name": "ltss"}, "authors": ["@freol35241"], "category": "integration", "description": "Long time state storage (LTSS) custom component for Home Assistant using Timescale DB", "domain": "ltss", "etag_repository": "W/\"1d177986d8eeed36400a0f9d7be08c9c3fe8a796c952e147aadacf03585724ad\"", "full_name": "freol35241/ltss", "last_updated": "2022-04-02T19:15:30Z", "stargazers_count": 45, "topics": ["database", "ltss", "state-storage", "storage", "timescaledb"], "last_fetched": 1665944463.411986, "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"}, "authors": ["@fineemb"], "category": "integration", "description": "\u63a5\u5165Hass\u7684\u51c9\u9738\u7ec4\u4ef6", "domain": "yeelink", "etag_repository": "W/\"169142bd6f57f510ea02d62f7a36e5ce83e4b5e6bc8156f33881f813ad972b50\"", "full_name": "fineemb/Yeelink-ven-fan", "last_updated": "2020-01-31T15:57:47Z", "stargazers_count": 5, "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"}, "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/\"010115d35cabdd7d0e01ae4053b05c754886eac771aa2a2022f20a2019a2ffe7\"", "full_name": "gadgetchnnel/entities_calendar", "last_updated": "2022-05-28T10:24:17Z", "stargazers_count": 13, "topics": ["calendar", "entities-calendar"], "last_fetched": 1657362750.977495, "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"}, "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/\"fca0ed488c861d289d9f24ed19f1781ebe177000fcba9a1aaf592d46925aba59\"", "full_name": "fondberg/spotcast", "last_updated": "2022-10-14T18:49:51Z", "stargazers_count": 442, "last_fetched": 1666451309.599457, "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"}, "authors": ["@finity69x2"], "category": "integration", "description": "An updated version of the nws_alerts custom integration for Home Assistant", "domain": "nws_alerts", "etag_repository": "W/\"7889f7e6d4b548016e82de1554bc434ac776cf4c68ba70a691d6b6c6684359fc\"", "full_name": "finity69x2/nws_alerts", "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}, "authors": ["@garbled1"], "category": "integration", "description": "Ecowitt Weather Station integration for homeassistant", "domain": "ecowitt", "etag_repository": "W/\"120ddf69ff8b08525fdc527cc3ab99ef6f25106fefe9175e93f528d5f06ea42e\"", "full_name": "garbled1/homeassistant_ecowitt", "last_updated": "2022-07-25T19:55:17Z", "stargazers_count": 112, "topics": ["ecowitt"], "last_fetched": 1666451315.884871, "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}, "authors": ["@garbled1"], "category": "integration", "description": "Balboa spa integration for home-assistant", "domain": "balboa", "etag_repository": "W/\"6ce0fa04c4600ebadf6c043cd8add90a08e869b8a7fc497141d05c0bcefff866\"", "full_name": "garbled1/balboa_homeassistan", "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"}, "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": 3502, "etag_repository": "W/\"0ccd187af0d81fd6121940c6777dc810eafe09a9b3efe31fdec95609264eddff\"", "full_name": "gcobb321/icloud3", "last_updated": "2022-05-05T18:25:55Z", "stargazers_count": 292, "topics": ["device-tracker", "ha-ios", "icloud", "icloud-account", "tracking", "zone", "zones"], "last_fetched": 1666451318.47309, "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"}, "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/\"9e691f4bfecff00c890864c541a6960abbd48e5d1c85f03c36932e7bb0d9fbed\"", "full_name": "gcorgnet/sensor.emby_upcoming_media", "last_updated": "2022-06-23T21:18:24Z", "stargazers_count": 14, "last_fetched": 1662801770.927049, "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}, "authors": ["@GeorgeSG"], "category": "integration", "description": "Slack User sensor for Home Assistant", "domain": "slack_user", "etag_repository": "W/\"19cefb19bc2db7597264917702493d77a7a511dfad542eec8d65aad1c28f2921\"", "full_name": "GeorgeSG/ha-slack-user", "last_updated": "2022-06-02T05:21:09Z", "stargazers_count": 17, "topics": ["home-assistant-component"], "last_fetched": 1665325545.04729, "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}, "authors": ["@gieljnssns"], "category": "integration", "description": "Buienalarm custom_component for Home-Assistant", "domain": "buienalarm", "etag_repository": "W/\"e1bd01546417b1499d03a3c6aa1fde3d4ce1b9a70915f78469683b2c159ff3f8\"", "full_name": "gieljnssns/buienalarm-sensor-homeassistant", "last_updated": "2021-12-04T09:48:55Z", "stargazers_count": 24, "last_fetched": 1661585094.719965, "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}, "authors": ["@gieljnssns"], "category": "integration", "description": "A custom component to get the readings of a Kostal Piko inverter", "domain": "kostal", "etag_repository": "W/\"646bdd2c6d18892d9f36c5a6123a47e4c045fc9ff0b91d2f518966ea7a869b43\"", "full_name": "gieljnssns/kostalpiko-sensor-homeassistant", "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"}, "authors": ["@gjohansson-ST"], "category": "integration", "description": "Integration to Sector Alarm for Home Assistant", "domain": "sector", "downloads": 1, "etag_repository": "W/\"43de8dab2cbb5984b17013a0a3236c4d58acdacd0bdc136d8e29e8286b759cdf\"", "full_name": "gjohansson-ST/sector", "last_updated": "2022-10-04T17:27:52Z", "stargazers_count": 21, "topics": ["alarm", "alarm-control", "alarm-control-panel", "lock", "sector", "sector-alarm", "temperature-sensor"], "last_fetched": 1665325548.534118, "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"}, "authors": ["@gilsonmandalogo"], "category": "integration", "description": "Minerstat mining hashrate.", "domain": "hacs-minerstat", "etag_repository": "W/\"7db8bb88221d89a6db301bd6109ef6401f5150898293c8c68e460752c9424ab3\"", "full_name": "gilsonmandalogo/hacs-minerstat", "last_updated": "2022-01-11T22:19:20Z", "stargazers_count": 3, "topics": ["minerstat", "mining"], "last_fetched": 1656859191.874783, "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}, "category": "integration", "description": "Google Location for HASS using the Google Geocode API", "domain": "google_geocode", "etag_repository": "W/\"bd7a7dc587d145c6bdf28c1aa3d7e148ea44f43525e0f9c5c396733f4e8ab88f\"", "full_name": "gregoryduckworth/GoogleGeocode-HASS", "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"}, "authors": ["@hcoohb"], "category": "integration", "description": "Home assistant custom component for Yeelight bluetooth", "domain": "yeelight_bt", "etag_repository": "W/\"116f60a2fa5e9e2fbe19643e2fe111fe31cfed5238241fb656352b47306de455\"", "full_name": "hcoohb/hass-yeelightbt", "last_updated": "2022-10-09T14:08:31Z", "stargazers_count": 35, "topics": ["bluetooth", "bluetooth-low-energy", "yeelight-lamp"], "last_fetched": 1665938867.950813, "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"}, "authors": ["@guysie"], "category": "integration", "description": "Integration for NETGEAR Meural Canvas digital art frame in Home Assistant ", "domain": "meural", "etag_repository": "W/\"b345e0c4662ea75b11a8baec9052a9a1bf61fc77d1b4767a518cb2c3abef455a\"", "full_name": "GuySie/ha-meural", "last_updated": "2022-07-24T09:35:43Z", "stargazers_count": 42, "topics": ["meural", "netgear"], "last_fetched": 1665325555.029931, "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"}, "authors": ["@herikw"], "category": "integration", "description": "Atag One Custom components for Home-Assistant", "domain": "atagone", "etag_repository": "W/\"cbae4902658bcd305c51397d234966f38ffb1a7ab1a9690b86764bd190054c18\"", "full_name": "herikw/home-assistant-custom-components", "last_updated": "2022-01-03T11:05:53Z", "stargazers_count": 9, "topics": ["atag", "thermostat"], "last_fetched": 1662898274.293157, "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"}, "authors": ["@heyajohnny"], "category": "integration", "description": "Provides Home Assistant sensors for all cryptocurrencies supported by CoinGecko", "domain": "cryptoinfo", "etag_repository": "W/\"b359c34656c5f32b8d7bc960504ec0427717cfaeda941960029d0539123e8db2\"", "full_name": "heyajohnny/cryptoinfo", "last_updated": "2022-09-06T14:51:42Z", "stargazers_count": 34, "last_fetched": 1662801790.323048, "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"}, "authors": ["@thrilleratplay"], "category": "integration", "description": "Govee Temperature/Humidity BLE Home Assistant Component", "domain": "govee_ble_hci", "etag_repository": "W/\"bc18d1f4c2a0d92a353f49bc0001953653bcaa5a1d4da3a7d18bfb215b13a88d\"", "full_name": "Home-Is-Where-You-Hang-Your-Hack/sensor.goveetemp_bt_hci", "last_updated": "2022-06-06T11:16:34Z", "stargazers_count": 146, "topics": ["ble", "govee", "h5051", "h5072", "h5074", "h5075", "h5101", "h5102", "h5177", "h5179", "home-assistant-component"], "last_fetched": 1665938873.149525, "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}, "authors": ["@hellowlol"], "category": "integration", "description": "Tide a sensor for HASS.", "domain": "tide", "etag_repository": "W/\"e442c19c4f63c021d0c225059894d369a25de8ed69f4a179beadf67bef56baa9\"", "full_name": "Hellowlol/ha-tide", "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": {}, "authors": ["@isabellaalstrom"], "category": "integration", "description": "A custom component for Home Assistant to get messages from krisinformation.se", "domain": "krisinformation", "etag_repository": "W/\"34a5df5f384a75a08958ced863102a45287ac6763a49fcb2d349d05797d759ce\"", "full_name": "isabellaalstrom/sensor.krisinformation", "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"}, "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/\"523e3576a3067d241a26a6883934167678ea703a588f96e78262d4b16b8e479e\"", "full_name": "heyajohnny/afvalinfo", "last_updated": "2022-08-08T11:19:26Z", "stargazers_count": 63, "last_fetched": 1665325563.697857, "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.02.0", "render_readme": "true"}, "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/\"ea1b21bb43ef6cffc5b82897bbaf778369e236adf943075ba339bed0c48499f7\"", "full_name": "iMicknl/ha-tahoma", "last_updated": "2022-08-09T14:15:21Z", "stargazers_count": 131, "topics": ["cozytouch", "hi-kumo", "nexity", "overkiz", "rexel", "somfy", "tahoma"], "last_fetched": 1665325577.017266, "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"}, "authors": ["@ITTV-Tools"], "category": "integration", "description": "Home Assistant Component for Kostal Plenticore ", "domain": "kostal_plenticore", "etag_repository": "W/\"97b9a8f05a7253d448635543bda688e9727c06f442e505dcb212f336d8b51a36\"", "full_name": "ITTV-tools/homeassistant-kostalplenticore", "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"}, "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\"", "full_name": "JAAlperin/hass-bardolph", "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"}, "authors": ["@jayblackedout"], "category": "integration", "description": "NHL Stats API Integration Into Home Assistant", "domain": "nhl_api", "etag_repository": "W/\"78e15a8865e1374c65487f57b6d958dd56d821deb41bf3e0ebaeab77a8f01b09\"", "full_name": "JayBlackedOut/hass-nhlapi", "last_updated": "2022-02-26T23:31:59Z", "stargazers_count": 45, "last_fetched": 1665938889.76086, "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"}, "authors": ["@jason0x43"], "category": "integration", "description": "A Hubitat integration for Home Assistant", "domain": "hubitat", "etag_repository": "W/\"9c150fe6664b24db07af54c203fbb6e73785e181ba3fcb1bb668b14949c78e74\"", "full_name": "jason0x43/hacs-hubitat", "last_updated": "2022-10-03T01:08:10Z", "stargazers_count": 123, "topics": ["hubitat", "maker-api"], "last_fetched": 1665938888.932999, "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"}, "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": 7673, "etag_repository": "W/\"fdffb41c74b5830a78c0dcbd1ad8f71afc923af2e1943945ce954cb6d2806c61\"", "full_name": "jcwillox/hass-auto-backup", "last_updated": "2022-10-14T12:21:38Z", "stargazers_count": 163, "topics": ["auto-purge", "backups", "generational-backups", "snapshots"], "last_fetched": 1665938890.734704, "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}, "authors": ["@jeroenterheerdt"], "category": "integration", "description": "Sensor for Home Assistant that gets reset at midnight", "domain": "daily", "etag_repository": "W/\"f952b483262263a9e21a764e7adf91b059e0ce754e65517055380687d223512a\"", "full_name": "jeroenterheerdt/HADailySensor", "last_updated": "2022-06-18T17:28:30Z", "stargazers_count": 23, "topics": ["aggregation", "average", "max", "maximum", "mean", "median", "min", "minimum", "standard-deviation", "statistics", "stdev", "sum", "var", "variance"], "last_fetched": 1665325588.572529, "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}, "authors": ["@jeroenterheerdt"], "category": "integration", "description": "Smart Irrigation custom component for Home Assistant", "domain": "smart_irrigation", "etag_repository": "W/\"bd546c7113fc102ddb4875ef73c2753bf92b8be94c620b1e4e7ce8ec725f6b00\"", "full_name": "jeroenterheerdt/HAsmartirrigation", "last_updated": "2022-06-28T08:16:49Z", "stargazers_count": 184, "topics": ["crop", "evaporation", "evapotranspiration", "flow", "grass", "irrigation", "lawn", "openweathermap", "rain", "snow", "sprinkler", "sprinklers", "water", "watering"], "last_fetched": 1665938892.385584, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190982718": {"repository_manifest": {}, "authors": ["@jihao"], "category": "integration", "description": "A hass component to integrate with colorfulclouds (\u5f69\u4e91\u5929\u6c14)", "domain": "colorfulclouds", "etag_repository": "W/\"315bdd4247ed5ecb442a95b9013ffd51d9c41f24457f82cc4134ca20b28dca51\"", "full_name": "jihao/colorfulclouds-hass", "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": {}, "category": "integration", "description": "rokid webhook component for Home Assistant (\u82e5\u742aHA\u7ec4\u4ef6)", "domain": "rokid_webhook", "etag_repository": "W/\"395a4a8d06b5578b6210ba0031f205ea6fda78766ab0125cda2126ce85161421\"", "full_name": "jihao/rokid-webhook-hass", "last_updated": "2022-02-15T08:44:30Z", "stargazers_count": 11, "last_fetched": 1665938895.087085, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "198758494": {"repository_manifest": {}, "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/\"9a65ba9b6f6545e78a6b8782483a49ef75a31add4ad6ee5faf2b72b0890df194\"", "full_name": "jihao/traccar-cn-hass", "last_updated": "2020-08-28T09:51:37Z", "stargazers_count": 21, "last_fetched": 1662801814.101308, "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"}, "authors": ["@jesserockz"], "category": "integration", "description": "A Home Assistant integration to receive live data sent from the LeafSpy app", "domain": "leafspy", "etag_repository": "W/\"5a7367f4c7982360e1220e144e0bcd1a8dd9d34533f968c65e2745e5cc4e1fb7\"", "full_name": "jesserockz/ha-leafspy", "last_updated": "2022-06-13T21:10:15Z", "stargazers_count": 11, "topics": ["electric-vehicles", "ev", "leaf", "leafspy", "nissan"], "last_fetched": 1665325589.299642, "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"}, "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/\"e06caad12d04ce9d711e48dad6ce90220b1d9ddcaea82c10d616f58741e688ce\"", "full_name": "jaruba/ha-samsungtv-tizen", "last_updated": "2022-07-16T09:37:17Z", "stargazers_count": 239, "last_fetched": 1666451353.488195, "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"}, "authors": ["@jm-73", "@eavanvalkenburg"], "category": "integration", "description": "Home Assistant Custom Component for Bosch Indego Lawn Mower", "domain": "indego", "etag_repository": "W/\"7bd1a30e08cf337fefed2c420e3d61de8ca6f09639f99ba5fd28dd3f012ec9bd\"", "full_name": "jm-73/Indego", "last_updated": "2022-08-03T05:18:18Z", "stargazers_count": 42, "topics": ["bosch-mower", "indego", "iot"], "last_fetched": 1665325594.809256, "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"}, "authors": ["@joggs"], "category": "integration", "description": "Integration for Ebeco thermostats", "domain": "ebeco", "etag_repository": "W/\"f5cb0e055a590903c816b4a8121e8715d7e4f5eeb2c069c3bb139345609183dd\"", "full_name": "joggs/home_assistant_ebeco", "last_updated": "2022-05-23T06:31:46Z", "stargazers_count": 15, "topics": ["ebeco"], "last_fetched": 1665325594.931077, "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"}, "authors": ["@johnwulp"], "category": "integration", "description": "Home Assisant sensor component for RAD Hoekschewaard Afval Kalender", "domain": "rad-afval", "etag_repository": "W/\"b58ca49af1c9bbb270c7bf65f0637ef76c8f2f9998a062a64c9c30d88292bce8\"", "full_name": "Johnwulp/rad-afval", "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": {}, "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/\"89f1f2a5644919669fb6c7ec8af47a9ecb66095330985c721949178711590096\"", "full_name": "jomwells/ambilights", "last_updated": "2021-06-23T17:10:55Z", "stargazers_count": 45, "last_fetched": 1664980954.096574, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193746664": {"repository_manifest": {}, "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\"", "full_name": "jomwells/ambilight-yeelight", "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}, "authors": ["@JonasPed"], "category": "integration", "description": "Home Assistant Custom Component showing data from eloverblik.dk", "domain": "eloverblik", "etag_repository": "W/\"10740c2515e45cf161f36c8e029ce7ef7e4e58810642b1a33d907f6584fefd8b\"", "full_name": "JonasPed/homeassistant-eloverblik", "last_updated": "2022-10-22T09:24:06Z", "stargazers_count": 103, "last_fetched": 1666451366.243954, "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"}, "authors": ["@JurajNyiri"], "category": "integration", "description": "Custom component allowing control of Atrea ventilation units", "domain": "atrea", "etag_repository": "W/\"793ba34ef14503c1e94232bacef5f3e4239f8f42f5c406609492c0f32f5a3278\"", "full_name": "JurajNyiri/HomeAssistant-Atrea", "last_updated": "2022-08-07T22:30:21Z", "stargazers_count": 14, "last_fetched": 1665938913.067935, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "175020245": {"repository_manifest": {}, "authors": ["@JurajNyiri"], "category": "integration", "description": "Sensor which gathers water outage information from Tavos (Slovakia) website", "domain": "tavos_water_outage", "etag_repository": "W/\"d8605131ae85f0af2197fafda02b34bbccf6d65165a664efd3cee2ba93ef40ad\"", "full_name": "JurajNyiri/HomeAssistant-Tavos", "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": {}, "authors": ["@JurajNyiri"], "category": "integration", "description": "Adds ability to switch alternative speed in qBittorrent through Home Assistant.", "domain": "qbittorrent_alternative_speed", "etag_repository": "W/\"b465bec5907d6be17551d6533b0567bf03c3e988df36f906bf5d94ad821faa19\"", "full_name": "JurajNyiri/HomeAssistant-qBitTorrentAlternativeSpeed", "last_updated": "2022-07-07T10:39:14Z", "stargazers_count": 8, "last_fetched": 1662801829.565425, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197058358": {"repository_manifest": {}, "authors": ["@jxlarrea"], "category": "integration", "description": "Emfit QS Sleep Tracker Component for Home Assistant", "domain": "emfitqs", "etag_repository": "W/\"1cbcdb481bdf090e33f34891480afa80b466025191ae17bbbfb220a4a9ab928a\"", "full_name": "jxlarrea/ha-emfitqs", "last_updated": "2022-03-06T21:31:42Z", "stargazers_count": 15, "topics": ["emfit", "emfitqs", "presence", "presence-detection", "sleep-tracker"], "last_fetched": 1653229779.274093, "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"}, "authors": ["@jscruz"], "category": "integration", "description": "Carbon Intensity UK Sensor for Home Assistant", "domain": "carbon_intensity_uk", "etag_repository": "W/\"6c5191d2394551bfcf65b040fe615e10b20a279db93d49a2c8b26a7d75de565c\"", "full_name": "jscruz/sensor.carbon_intensity_uk", "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.4.0"}, "authors": ["@JurajNyiri"], "category": "integration", "description": "Control for Tapo cameras as a Home Assistant component", "domain": "tapo_control", "etag_repository": "W/\"c695c24dedbc59591044052259a8e6760d4f073134517217e33cb4de6c990b07\"", "full_name": "JurajNyiri/HomeAssistant-Tapo-Control", "last_updated": "2022-10-22T08:23:49Z", "stargazers_count": 386, "topics": ["camera", "cameras", "hacktoberfest2021", "homeassistant-custom-component", "ptz", "tapo"], "last_fetched": 1666451374.242757, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "159025199": {"repository_manifest": {}, "authors": ["@kalanda"], "category": "integration", "description": "AEMET integration for Home Assistant", "domain": "aemet", "etag_repository": "W/\"fadb38683ce3ecc01589c5d2020eedd21f4968ce4e66cdde20e10b061799407b\"", "full_name": "kalanda/homeassistant-aemet-sensor", "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"]}, "authors": ["@kodi1"], "category": "integration", "description": "darksky - clouds cover and alerts", "domain": "darksky_m", "etag_repository": "W/\"979b79eb7e2ca373dbe717ddf44f354e54a1bca149b6e2598b19724d3920f522\"", "full_name": "kodi1/darksky_m", "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}, "authors": ["@kirei"], "category": "integration", "description": "Home Assistant Component for Chargeamps", "domain": "chargeamps", "etag_repository": "W/\"fc2e552370336fe3599cd060a022f1a6e45fa8f6dbd9ec1b94110367cf608760\"", "full_name": "kirei/hass-chargeamps", "last_updated": "2022-04-18T12:18:56Z", "stargazers_count": 17, "topics": ["chargeamps"], "last_fetched": 1662801836.013518, "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"]}, "authors": ["@kodi1"], "category": "integration", "description": "easyesp status sensor", "domain": "esp_wd", "etag_repository": "W/\"95c73fa6fe77000726de3d3cf48a0c7d0b6442c69e5de9ac10a64a03f16d0d16\"", "full_name": "kodi1/esp_wd", "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}, "authors": ["@jonkristian"], "category": "integration", "description": "Home Assistant component for Trondheim renholdsverk bin pickups.", "domain": "wasteplan_trv", "etag_repository": "W/\"0404a2ccf90dc9b2c883893d9a3655f3d51a97dafa2bbcda8b6164773af3d47d\"", "full_name": "jonkristian/wasteplan_trv", "last_updated": "2021-12-28T10:27:19Z", "stargazers_count": 9, "topics": ["trondheim", "trv", "waste-management"], "last_fetched": 1661585146.764741, "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"]}, "authors": ["@kodi1"], "category": "integration", "description": "meteoalarm sensor", "domain": "meteoalarm_m", "etag_repository": "W/\"f7bd890310bba52d387e4bc8d3051641eac8cef6d5d5a2c5a1d92ea179eb3b13\"", "full_name": "kodi1/meteoalarm", "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"]}, "authors": ["@kodi1"], "category": "integration", "description": "songpal - volume down workaround", "domain": "songpal_m", "etag_repository": "W/\"5697baf1ecfa09475d24f7feb213631918e92a5f8c045e53519d98e996a67987\"", "full_name": "kodi1/songpal_m", "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"]}, "authors": ["@kodi1"], "category": "integration", "description": "tvheadend recorder sensor - lovelace upcoming media card", "domain": "tvh_rec", "etag_repository": "W/\"2f0d5e0300690312d983f815bf045cc0a6e1105a403b1cb3b5adcced493195ea\"", "full_name": "kodi1/tvh_rec", "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}, "authors": ["@KoljaWindeler"], "category": "integration", "description": "custom integration for kaco solar inverter", "domain": "kaco", "etag_repository": "W/\"efdef7eeead6576e896a680cdc9b0285978d76e9da30a006de5b3cdce826841f\"", "full_name": "KoljaWindeler/kaco", "last_updated": "2022-03-01T16:24:59Z", "stargazers_count": 3, "topics": ["inverter", "solar-energy"], "last_fetched": 1656859253.588105, "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}, "authors": ["@KoljaWindeler"], "category": "integration", "description": "Integration that displays the next event of an ics link (support reoccuring events)", "domain": "ics", "etag_repository": "W/\"0d4ac71f626604e71bef9e2b16504dd9e123232322de7af4f71f7a606ada4771\"", "full_name": "KoljaWindeler/ics", "last_updated": "2022-02-10T18:31:39Z", "stargazers_count": 45, "topics": ["appointments", "filtering", "ics", "reoccuring-events"], "last_fetched": 1662801840.96317, "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}, "authors": ["@kuchel77"], "category": "integration", "description": "Disk space for a path. For use with Home Assistant", "domain": "diskspace", "etag_repository": "W/\"10d58fff3a42848a1fe93b91e731b8c13ba48fd1e678a11881e3a24ca2cda335\"", "full_name": "kuchel77/diskspace", "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"}, "authors": ["@legrego"], "category": "integration", "description": "Publish Home-Assistant events to Elasticsearch", "domain": "elasticsearch", "etag_repository": "W/\"4ec8d384532900e2e20cf62e304971dfc5af2bffe96955581dd1e25063b29e6d\"", "full_name": "legrego/homeassistant-elasticsearch", "last_updated": "2022-07-12T19:00:15Z", "stargazers_count": 102, "topics": ["elasticsearch"], "last_fetched": 1666451398.466252, "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"}, "authors": ["@laszlojakab"], "category": "integration", "description": "Dijnet integration for Home Assistant", "domain": "dijnet", "downloads": 78, "etag_repository": "W/\"3d839f3d350ab23d001525fe927b47e605caa3a19bf21fb308cd7528a9e07547\"", "full_name": "laszlojakab/homeassistant-dijnet", "last_updated": "2022-08-18T19:36:26Z", "stargazers_count": 8, "topics": ["dijnet", "home-assistant-sensor"], "last_fetched": 1661585175.304687, "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"}, "authors": ["@laszlojakab"], "category": "integration", "description": "Helios EasyControls Modbus TCP/IP integration for Home Assistant", "domain": "easycontrols", "downloads": 159, "etag_repository": "W/\"d5d4f29724f07b103e682e9b60cae155cfc7acdf878722188cc32c0111cd5065\"", "full_name": "laszlojakab/homeassistant-easycontrols", "last_updated": "2022-08-20T12:25:21Z", "stargazers_count": 11, "topics": ["easycontrols", "eazyctrl", "modbus"], "last_fetched": 1661585175.899659, "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": "2022.7.0", "render_readme": true}, "authors": ["@kukulich"], "category": "integration", "description": "Home Assistant custom component for JABLOTRON 100+ alarm system", "domain": "jablotron100", "etag_repository": "W/\"3ca7de3f90005f5eea4ef4a98b654e6e9b1c2bf537eda5898a47c1b406c2cbfd\"", "full_name": "kukulich/home-assistant-jablotron100", "last_updated": "2022-10-08T07:28:13Z", "stargazers_count": 40, "topics": ["alarm", "jablotron"], "last_fetched": 1665325625.132318, "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"}, "authors": ["@heythisisnate", "@snicker"], "category": "integration", "description": "HomeAssistant integration for Noonlight", "domain": "noonlight", "etag_repository": "W/\"1b7b4be82c34585af2d85d39ad3d5515af88128a386bd159cf9aa1b530409f0f\"", "full_name": "konnected-io/noonlight-hass", "last_updated": "2022-01-13T19:30:55Z", "stargazers_count": 21, "topics": ["alarm", "monitoring", "noonlight", "security"], "last_fetched": 1653229788.07, "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}, "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/\"e5a676edd927e825a72aee1f9cefa409e771100c691aa61f5b5f78fe8a54d093\"", "full_name": "lichtteil/local_luftdaten", "last_updated": "2022-07-27T05:38:29Z", "stargazers_count": 34, "topics": ["air-quality"], "last_fetched": 1665325634.492952, "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"}, "authors": ["@Limych"], "category": "integration", "description": "Average Sensor for Home Assistant", "domain": "average", "downloads": 88, "etag_repository": "W/\"466030dfa8d3c5e5500f11cb1699aa8b1eadd042bb7743751d0f2d33c5df903b\"", "full_name": "Limych/ha-average", "last_updated": "2022-10-14T01:06:24Z", "stargazers_count": 207, "topics": ["average", "home-assistant-component", "home-assistant-sensor"], "last_fetched": 1666451403.835676, "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"}, "authors": ["@Limych"], "category": "integration", "description": "Home Assistant custom component for Beward security Cameras and Doorbells", "domain": "beward", "etag_repository": "W/\"8a870e9797e1b258816418dc7ccb61bad9de3778a368ba250a2070008e684f8a\"", "full_name": "Limych/ha-beward", "last_updated": "2022-07-11T12:18:29Z", "stargazers_count": 18, "topics": ["beward", "camera", "doorbell", "dvr", "security", "surveillance"], "last_fetched": 1657789036.687124, "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"}, "authors": ["@limych"], "category": "integration", "description": "Car Wash Binary Sensor for Home Assistant", "domain": "car_wash", "downloads": 7, "etag_repository": "W/\"0089ee9be49cd2a3a6169a011b2eada0b769710ca5a7888afa29ebd33854fb05\"", "full_name": "Limych/ha-car_wash", "last_updated": "2022-09-01T11:09:46Z", "stargazers_count": 67, "topics": ["binary-sensor", "car", "car-wash", "wash", "weather-forecast"], "last_fetched": 1662801857.856078, "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"}, "authors": ["@limych"], "category": "integration", "description": "Gismeteo Weather Provider for Home Assistant", "domain": "gismeteo", "downloads": 22, "etag_repository": "W/\"01d372aeb81cde3e76673819342a34147eabdbfe56b7e38c96b0c23ae213277d\"", "full_name": "Limych/ha-gismeteo", "last_updated": "2022-10-07T22:07:56Z", "stargazers_count": 86, "topics": ["forecast", "gismeteo", "gismeteo-weather", "sensors", "weather-provider"], "last_fetched": 1665325635.661039, "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"}, "authors": ["@Limych"], "category": "integration", "description": "Indoor Air Quality Sensor Component for Home Assistant", "domain": "iaquk", "downloads": 13, "etag_repository": "W/\"72a49969b70c8783a68c9b3686a9caa21e521ed67b0e3446511ded8fef0cb7f5\"", "full_name": "Limych/ha-iaquk", "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": {}, "category": "integration", "description": "Our Groceries Integration for Home Assistant", "domain": "ourgroceries", "etag_repository": "W/\"fb8a2cb16140f9ee45ae64025e7fd710ed7b73e7ab868a4305213c3c7e99056b\"", "full_name": "ljmerza/ha-our-groceries", "last_updated": "2022-06-02T17:43:40Z", "stargazers_count": 27, "last_fetched": 1661585187.405185, "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"]}, "category": "integration", "description": "Play videos from the Swedish channel 4", "domain": "tv4_play", "etag_repository": "W/\"538aaf137f213b707a583a6df65e6a150385af1e221dc8b4ca352355ab21c880\"", "full_name": "lindell/home-assistant-tv4-play", "last_updated": "2021-10-15T17:14:08Z", "stargazers_count": 14, "topics": ["tv4", "tv4play"], "last_fetched": 1644420423.182922, "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"}, "authors": ["@Limych"], "category": "integration", "description": "JQ-300 Indoor Air Quality Meter Home Assistant Integration", "domain": "jq300", "downloads": 16, "etag_repository": "W/\"0671a4a537b732ae10187e4e8f5194f06edfddaae2f8f6140766812ad307ac7b\"", "full_name": "Limych/ha-jq300", "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"}, "category": "integration", "description": "Home Assistant custom component to get online and game status of Discord users", "domain": "discord_game", "etag_repository": "W/\"29eb94102e930cd2ce00e3acafcb6586f0c6725da5f051ac1865b993c75b85f2\"", "full_name": "LordBoos/discord_game", "last_updated": "2022-03-05T15:16:40Z", "stargazers_count": 36, "last_fetched": 1656859280.28276, "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"]}, "category": "integration", "description": "Play SVT Play videos and channels via home assistant", "domain": "svt_play", "etag_repository": "W/\"f8b7e56ed7cb9547ba5fcc47a2f41f012bc12d96c5095040e076c89247ff1fed\"", "full_name": "lindell/home-assistant-svt-play", "last_updated": "2022-05-14T12:21:32Z", "stargazers_count": 17, "topics": ["svt", "svtplay", "sweden", "tv", "video"], "last_fetched": 1653229808.796739, "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}, "authors": ["@ljmerza"], "category": "integration", "description": "Email Sensor for collecting tracking numbers from over 25 providers.", "domain": "email", "etag_repository": "W/\"5e166e9685c2d3d64b234be47caded780d925605a1204ca92e1bc22ccb810dad\"", "full_name": "ljmerza/ha-email-sensor", "last_updated": "2022-05-28T19:56:34Z", "stargazers_count": 62, "last_fetched": 1665325640.949877, "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"}, "authors": ["@lolouk44"], "category": "integration", "description": "CurrentCost Meter Reading Custom Component for Home Assistant ", "domain": "currentcost", "etag_repository": "W/\"6355075a035648546d3d0a036061417061b663656a4e604fe7a8d605f19ed11b\"", "full_name": "lolouk44/CurrentCost_HA_CC", "last_updated": "2021-12-14T18:54:07Z", "stargazers_count": 12, "topics": ["cc128", "current-cost", "currentcost", "envi", "envir"], "last_fetched": 1661585188.352933, "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"}, "authors": ["@lociii"], "category": "integration", "description": "CS:GO gamestate reporting to Home Assistant", "domain": "csgo_gamestate", "etag_repository": "W/\"2447519104fced2261a4b9bc0e2aad86b379b0562067e1298e2b7dada57462ef\"", "full_name": "lociii/homeassistant-csgo", "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}, "257912976": {"repository_manifest": {"name": "Mqtt template switch", "render_readme": true}, "category": "integration", "description": "mqtt template switch for homeassistant", "domain": "mqtt_template", "etag_repository": "W/\"63ac85ac8fd5d4edece75ad374ea6c3563096591d2de59e371d679a616218eaf\"", "full_name": "lukich48/hass_mqtt_template_switch", "last_updated": "2021-03-07T13:28:58Z", "stargazers_count": 3, "last_fetched": 1653229813.941469, "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"}, "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/\"89d31b86faf4fdbe21f3d368ac3d7331245f1c31996c7c3680b8c293ecd09a3b\"", "full_name": "mac-zhou/midea-ac-py", "last_updated": "2022-09-30T23:54:56Z", "stargazers_count": 415, "last_fetched": 1666451415.027586, "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"}, "authors": ["@mampfes"], "category": "integration", "description": "Home Assistant integration framework for (garbage collection) schedules", "domain": "waste_collection_schedule", "etag_repository": "W/\"0f36993a27dceddf5a4357a8b0676d301c785c65c910b2fc3ba12112a7f7439b\"", "full_name": "mampfes/hacs_waste_collection_schedule", "last_updated": "2022-10-22T10:01:32Z", "stargazers_count": 261, "topics": ["abfall", "abfallnavi", "abfallplus", "garbage", "garbage-collection", "jumomind", "muell", "muellabfuhr", "muellsammlung", "mymuell", "regioit", "waste", "waste-collection"], "last_fetched": 1666451415.616707, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195883127": {"repository_manifest": {}, "authors": ["@Martinvdm", "@vloris"], "category": "integration", "description": "Garbage collection Nissewaard for Home Assistant", "domain": "nissewaard", "etag_repository": "W/\"180f3b53d867b79be731b38ae9e95547c3f90ab9338f9af25526591e478608bc\"", "full_name": "Martinvdm/garbage-nissewaard-homeassistant", "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": {}, "authors": ["@mlowijs", "@robhofmann"], "category": "integration", "description": null, "domain": "tesla_cc", "etag_repository": "W/\"c1ea2978f62e2b1223a56230bb3578a5459da1bbfb109d0ccd207412e4f4f4fa\"", "full_name": "mlowijs/HomeAssistant-TeslaCustomComponent", "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}, "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\"", "full_name": "michaellunzer/Home-Assistant-Custom-Component-Fortnite", "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"}, "authors": ["@mletenay"], "category": "integration", "description": "Home Assistant custom component for Electric Vehicle Charge Control devices by Phoenix Contact ", "domain": "phoenix_contact", "etag_repository": "W/\"0f600786293d98d142d764e9b254bd15533385c2e3ec8dda019d76cc17da4abe\"", "full_name": "mletenay/home-assistant-ev-charge-control", "last_updated": "2021-12-21T23:06:01Z", "topics": ["charging-stations", "electric-vehicles", "evse"], "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"}, "category": "integration", "description": "A platform sensor which tells you which meals are served in your canteen.", "domain": "openmensa", "etag_repository": "W/\"8a61940cd695986ad5ae7778c789bc87929382ce7117389c7e530d45a299cf9d\"", "full_name": "Mofeywalker/openmensa-hass-component", "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"}, "authors": ["@mletenay"], "category": "integration", "description": "Experimental version of Home Assistant integration for Goodwe solar inverters", "domain": "goodwe", "etag_repository": "W/\"4225dbba0656de8444449a5678e5e3691749242a648715571596514091128083\"", "full_name": "mletenay/home-assistant-goodwe-inverter", "last_updated": "2022-08-25T20:38:44Z", "stargazers_count": 83, "topics": ["goodwe", "home-assistant-sensor", "pv-systems"], "last_fetched": 1661585209.331108, "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"}, "authors": ["@mikelawrence"], "category": "integration", "description": "Haiku with SenseME fan integration for Home Assistant", "domain": "senseme", "etag_repository": "W/\"57f44294cc8dfe8aa66fa101e67b5f939a833c1b709e6676f55d1e9fab488bc3\"", "full_name": "mikelawrence/senseme-hacs", "last_updated": "2021-12-28T02:15:41Z", "stargazers_count": 21, "topics": ["bigassfans", "fan", "haiku", "senseme"], "last_fetched": 1656859297.329868, "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": "2021.9.0"}, "authors": ["@mrk-its"], "category": "integration", "description": "Custom Component for fetching lightning data from blitzortung.org", "domain": "blitzortung", "etag_repository": "W/\"4a3464963df2ba0604e42b557cd21ea689f0ae4da2aeb5cc3832c0e9da7458f0\"", "full_name": "mrk-its/homeassistant-blitzortung", "last_updated": "2022-08-27T08:49:11Z", "stargazers_count": 88, "topics": ["blitzortung", "lightning-network"], "last_fetched": 1662801888.233279, "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"}, "authors": ["@msp1974"], "category": "integration", "description": "An integration for JLR InControl to Home Assistant", "domain": "jlrincontrol", "etag_repository": "W/\"941524a5dddb4ceddfa025d22a41feec5f66364a51653875a1f504bbd770b6ce\"", "full_name": "msp1974/homeassistant-jlrincontrol", "last_updated": "2022-09-28T17:12:52Z", "stargazers_count": 32, "topics": ["i-pace", "jaguar", "jlr", "landrover", "rrs", "vehicle", "wirelesscar"], "last_fetched": 1665325668.932788, "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"}, "authors": ["@MTrab"], "category": "integration", "description": "Landroid Cloud component for Home Assistant", "domain": "landroid_cloud", "downloads": 1748, "etag_repository": "W/\"dec361dbd28c2f48372a1e8c6da845874f109ca247e087dda2a4dfb0110ab113\"", "full_name": "MTrab/landroid_cloud", "last_updated": "2022-10-19T18:05:47Z", "stargazers_count": 110, "topics": ["homeassistant-custom-component", "kress", "landroid", "landxcape", "mower-robot", "worx"], "last_fetched": 1666451437.828835, "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"}, "authors": ["@mvdwetering"], "category": "integration", "description": "Home Assistant integration for the Philips Hue Play HDMI Sync Box", "domain": "huesyncbox", "etag_repository": "W/\"3edc363b05936ed8d7234725c0ed3a03c91e59a9d5a09722769ef6e06a8ee3db\"", "full_name": "mvdwetering/huesyncbox", "last_updated": "2022-10-16T16:47:35Z", "stargazers_count": 59, "topics": ["hue-entertainment", "huesync", "philips-hue"], "last_fetched": 1665944548.180039, "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"}, "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": 9923, "etag_repository": "W/\"d4a85cd05e5241d56b9f6b4fd660a88da33f0b2f7dd4915b990e9bf1885e6ea4\"", "full_name": "mudape/iphonedetect", "last_updated": "2022-06-15T17:47:40Z", "stargazers_count": 216, "topics": ["iphonedetect"], "last_fetched": 1665938973.877086, "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"}, "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/\"7629ff2b563f81f685815a18ce77f24dbedb66683305f3a0da785794a50c2de2\"", "full_name": "nagyrobi/home-assistant-custom-components-linkplay", "last_updated": "2022-08-14T18:28:10Z", "stargazers_count": 84, "topics": ["arylic", "cvte", "harman-kardon", "linkplay", "media-player", "speaker", "tts"], "last_fetched": 1665325677.441124, "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}, "authors": ["@nielsfaber"], "category": "integration", "description": "Custom component for HA that enables the creation of scheduler entities", "domain": "scheduler", "downloads": 300, "etag_repository": "W/\"314d9746da50a4bdd5f84e3b77a71e32858547cf67249cd7d66d814aee1818fe\"", "full_name": "nielsfaber/scheduler-component", "last_updated": "2022-06-02T06:36:20Z", "stargazers_count": 307, "topics": ["scheduler"], "last_fetched": 1666451450.420202, "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}, "category": "integration", "description": "\u2744 Use a Harmony Hub to control an IR controlled climate device", "domain": "harmony_ac", "etag_repository": "W/\"a995a966b13082ac82c679254b103063dafff56ef58ea69305507611c8ca7c52\"", "full_name": "nickneos/HA_harmony_climate_component", "last_updated": "2021-03-12T13:27:19Z", "stargazers_count": 22, "topics": ["air-conditioner", "climate", "harmony", "hvac"], "last_fetched": 1661585229.558558, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "154417419": {"repository_manifest": {}, "category": "integration", "description": "Home Assistant custom component for the newer (2016+) Philips Android TVs", "domain": "philips_android_tv", "etag_repository": "W/\"1d2115fe6f2ae781c407dc6b0cea7977006cb80bca1305a56336cebddfab69c3\"", "full_name": "nstrelow/ha_philips_android_tv", "last_updated": "2021-07-22T15:04:24Z", "stargazers_count": 105, "topics": ["philips-tv", "tv"], "last_fetched": 1666451451.047292, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "144888844": {"repository_manifest": {}, "category": "integration", "description": null, "domain": "ovapi", "etag_repository": "W/\"0e95c163e4f2e299ca44ef9f303cd4b62b22847e1b25d3e4a9990c3849858710\"", "full_name": "Paul-dH/Home-Assisant-Sensor-OvApi", "last_updated": "2022-02-13T09:05:36Z", "stargazers_count": 15, "last_fetched": 1662801910.26418, "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"}, "authors": ["@nikrolls"], "category": "integration", "description": "Home Assistant integration for Goldair WiFi heaters, dehumidifiers and fans", "domain": "goldair_climate", "etag_repository": "W/\"78f6bfdd44655d92452b5c7a786522f474e4a2cf96c076c6606108ca1ad11188\"", "full_name": "nicole-ashley/homeassistant-goldair-climate", "last_updated": "2021-05-24T23:53:41Z", "stargazers_count": 13, "topics": ["dehumidifier", "fan", "goldair", "heater", "wifi"], "last_fetched": 1648400065.832316, "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.5.0"}, "authors": ["@ollo69"], "category": "integration", "description": "HomeAssistant custom integration for SmartThinQ LG devices configurable with Lovelace User Interface.", "domain": "smartthinq_sensors", "etag_repository": "W/\"51c3fceba574e5f7ba7de8c7dbd14c9d8d7bed923896c2453cbe01400d12e071\"", "full_name": "ollo69/ha-smartthinq-sensors", "last_updated": "2022-08-21T20:32:48Z", "stargazers_count": 561, "topics": ["ac", "air-purifier", "climate", "dehumidifier", "dishwasher", "dryer", "fan", "lg", "lg-devices", "lge", "oven", "range", "refrigerator", "sensors", "smartthinq", "thinq", "washer"], "last_fetched": 1666451452.312154, "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.5.0"}, "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/\"f9a5b3c22c1d66d1a6c910425e611fe08d3ca02c11c10f30da756d2b8eaaa2bd\"", "full_name": "ollo69/ha-samsungtv-smart", "last_updated": "2022-10-08T19:47:19Z", "stargazers_count": 225, "topics": ["samsung", "samsung-smart-tv", "samsung-tv", "smartthings"], "last_fetched": 1665938988.056458, "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"}, "authors": ["@kabturek", "@peetereczek"], "category": "integration", "description": "Home Assistant (hass.io) custom component for Warsaw public transport", "domain": "ztm", "etag_repository": "W/\"bdb98d6369e66f4023ffd0246ef167088b9a5d1ea79324d72a2bac550c924eea\"", "full_name": "peetereczek/ztm", "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"}, "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/\"9fcede63a614f4c9d8d80749601350ca09f5185300713105a93e2f61df33524d\"", "full_name": "nagyrobi/home-assistant-custom-components-cover-rf-time-based", "last_updated": "2022-09-28T07:43:22Z", "stargazers_count": 55, "topics": ["433", "433mhz", "cover", "rf", "roller-shutters", "script", "service", "shutter", "trigger"], "last_fetched": 1666451443.332097, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259270792": {"repository_manifest": {}, "authors": ["@peternijssen"], "category": "integration", "description": ":convenience_store: Integrate Jumbo.com in Home Assistant", "domain": "jumbo", "etag_repository": "W/\"91ca1fecb2d400602705bfb1817fd0cdebe4723b69830365aaeaa741ee1ce322\"", "full_name": "peternijssen/home-assistant-jumbo", "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"}, "authors": ["@pilotak"], "category": "integration", "description": "Breaks out specified attribute from other entities to a sensor", "domain": "attributes", "etag_repository": "W/\"ae516dba2caf23aff140af2c045ee4f06887f8747b7a5e49a7da3e9265d0d46d\"", "full_name": "pilotak/homeassistant-attributes", "last_updated": "2021-03-13T13:11:19Z", "stargazers_count": 71, "topics": ["attributes", "breakout"], "last_fetched": 1666451463.495362, "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}, "authors": ["@camect"], "category": "integration", "description": "A HACS integration for the Camect smart home surveillance system", "domain": "camect", "etag_repository": "W/\"6c0b283ea7b213df79202645868a9a62747f6bd4a4167f356a0d5bfcd6cfd83d\"", "full_name": "pfunkmallone/HACS-camect-integration", "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.7"}, "authors": ["@pilotak"], "category": "integration", "description": "Clientraw weather parser (clientraw.txt) for HomeAssistant", "domain": "clientraw", "etag_repository": "W/\"31c25fbd8573ddb6c668a20f62a2b65454f6beef1ad7a5049b99d0c0f43bbc42\"", "full_name": "pilotak/homeassistant-clientraw", "last_updated": "2022-07-10T12:14:33Z", "stargazers_count": 11, "topics": ["clientraw", "davis", "weather"], "last_fetched": 1661585246.405027, "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"}, "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": 2118, "etag_repository": "W/\"1ad8329786d94f4b61a351ecfb0acd8bca61353d72fb4fcfd282b834e1b83fc9\"", "full_name": "PiotrMachowski/Home-Assistant-custom-components-Google-Keep", "last_updated": "2022-08-15T02:29:51Z", "stargazers_count": 52, "topics": ["notes"], "last_fetched": 1662801922.457787, "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"}, "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\"", "full_name": "PiotrMachowski/Home-Assistant-custom-components-Antistorm", "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"}, "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\"", "full_name": "PiotrMachowski/Home-Assistant-custom-components-Looko2", "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"}, "authors": ["@pinkywafer"], "category": "integration", "description": "Anniversary Countdown Sensor for Home Assistant", "domain": "anniversaries", "downloads": 4936, "etag_repository": "W/\"eb833f8487acc45edd57e9047cf7845aeadbb03b4139b3988cfb6b7282bb7253\"", "full_name": "pinkywafer/Anniversaries", "last_updated": "2022-10-07T19:31:03Z", "stargazers_count": 117, "topics": ["anniversaries"], "last_fetched": 1666451464.969853, "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"}, "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", "etag_repository": "W/\"a494d81d29798d4018cc22020d1a2d72e46aab03ba109ad9056f63ace0eb6e0a\"", "full_name": "PiotrMachowski/Home-Assistant-custom-components-Rozkladzik", "last_updated": "2022-01-24T02:34:46Z", "stargazers_count": 7, "topics": ["public-transport"], "last_fetched": 1648400067.208445, "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"}, "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\"", "full_name": "PiotrMachowski/Home-Assistant-custom-components-iMPK", "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"}, "authors": ["@pinkywafer"], "category": "integration", "description": "Calendarific holiday sensor for Home Assistant ", "domain": "calendarific", "downloads": 692, "etag_repository": "W/\"7f543b8f9b6127a2dd3010f6ec8b781a864831ffeba2ec426e2624a668c3ca4b\"", "full_name": "pinkywafer/Calendarific", "last_updated": "2022-01-07T16:04:10Z", "stargazers_count": 14, "topics": ["api-client", "calendarific", "holidays"], "last_fetched": 1656859332.634263, "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"}, "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\"", "full_name": "PiotrMachowski/Home-Assistant-custom-components-Burze.dzis.net", "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"}, "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": 1104, "etag_repository": "W/\"b37c3901e724f1a3ec5c7f78fd96a69c0308ee142bb6f6ee1f86a787624a282d\"", "full_name": "PiotrMachowski/Home-Assistant-custom-components-Tauron-AMIplus", "last_updated": "2022-10-03T07:34:11Z", "stargazers_count": 60, "topics": ["energy-monitor"], "last_fetched": 1666451469.78365, "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"}, "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": 964, "etag_repository": "W/\"670cc49ea783ee10256252226a3f61bebe63378777f8e5373d2af61a449f9bd7\"", "full_name": "PiotrMachowski/Home-Assistant-custom-components-Saver", "last_updated": "2022-08-15T02:30:14Z", "stargazers_count": 36, "topics": ["automation", "helper", "save", "script", "variable"], "last_fetched": 1661585252.621929, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "166045890": {"repository_manifest": {}, "authors": ["@pippyn"], "category": "integration", "description": "Provides Home Assistant sensors for multiple Dutch and Belgium waste collectors", "domain": "afvalbeheer", "etag_repository": "W/\"29e48206d52cbd99055f410cbce64cc150fe8cb4f6a6724c066c83763a300474\"", "full_name": "pippyn/Home-Assistant-Sensor-Afvalbeheer", "last_updated": "2022-10-22T12:46:56Z", "stargazers_count": 165, "topics": ["belgium", "dutch", "hassio-integration", "waste-collectors"], "last_fetched": 1666451471.128743, "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"}, "category": "integration", "description": "A custom component for Home Assistant which integrates my picoTTS Addon on HASS.io,", "domain": "picotts_remote", "etag_repository": "W/\"9af6d9a7a06425aed3cac1db1a5dcf2692daaa3bca530798989cc2dca88425dd\"", "full_name": "Poeschl/Remote-PicoTTS", "last_updated": "2022-06-03T14:25:15Z", "stargazers_count": 10, "topics": ["component", "picotts-addon", "remote-picotts"], "last_fetched": 1662801927.836112, "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}, "authors": ["@postlund"], "category": "integration", "description": "Experimental integration to Home Assistant supporting D-Link devices", "domain": "dlink_hnap", "etag_repository": "W/\"f85bc951e2b0832538e3f1e034d4f8ee06b61fecc88a8e104dec222e42dc679b\"", "full_name": "postlund/dlink_hnap", "last_updated": "2022-02-09T09:06:58Z", "stargazers_count": 27, "topics": ["custom-integration", "dlink"], "last_fetched": 1653229867.581391, "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"}, "authors": ["@Pouzor"], "category": "integration", "description": "Custom Component for Home Assistant, enable to remote Freebox Player", "domain": "freebox_player", "etag_repository": "W/\"77abe1e7724ace4ccd4e02e3849018e2445adc5f2d141145e366a6396383a068\"", "full_name": "Pouzor/freebox_player", "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"}, "authors": ["ptimatth"], "category": "integration", "description": "GeoRide integration for Home Assistant", "domain": "georide", "etag_repository": "W/\"85ae249516aaa02feb0b2a3bb9b771d2bce34db29485acc6633e0ed43bfdc509\"", "full_name": "ptimatth/GeorideHA", "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"}, "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": 790, "etag_repository": "W/\"cdbcfa78ab396aaaf27d6b5dbdbcdb3b45c0172ba23dd5ce6d1058a1e308567a\"", "full_name": "raman325/ha-zoom-automation", "last_updated": "2022-05-28T06:29:48Z", "stargazers_count": 54, "topics": ["automation", "ha", "webhook-event", "zoom"], "last_fetched": 1662801933.578667, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197983504": {"repository_manifest": {}, "authors": ["@rdehuyss"], "category": "integration", "description": "Support for Denkovi IOT Relay modules in HomeAssistant", "domain": "denkovi", "etag_repository": "W/\"90d830139f4f549c3b1b20e60a5ef2b25a34277c70b1e0e818881f39dcad838e\"", "full_name": "rdehuyss/homeassistant-custom_components-denkovi", "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"}, "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/\"a9fd634a0da49ffe3e3fb98477a90987ae24700509e0da1cad5107116b6bf30b\"", "full_name": "r-renato/ha-climacell-weather", "last_updated": "2022-06-01T18:02:35Z", "stargazers_count": 45, "topics": ["climacell", "weather"], "last_fetched": 1657789108.101084, "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"}, "authors": ["@py-smart-gardena"], "category": "integration", "description": "Home Assistant custom component integration for Gardena Smart System", "domain": "gardena_smart_system", "etag_repository": "W/\"ac545f482e68ffe0269b64ece66a5d4e826009f454a48896c951ba64cee12ae0\"", "full_name": "py-smart-gardena/hass-gardena-smart-system", "last_updated": "2022-07-27T21:09:33Z", "stargazers_count": 115, "topics": ["gardena", "gardena-api", "gardena-smart-system"], "last_fetched": 1665325711.870846, "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"}, "authors": ["@Martinvdm", "@vloris", "@remco770"], "category": "integration", "description": "Garbage collection BAR for Home Assistant", "domain": "bar_afvalbeheer", "etag_repository": "W/\"d90e45ade1074fa9cec84edbb2634bb498153696566dcf68d03515dda4c501e2\"", "full_name": "remco770/garbage-bar-homeassistant", "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"}, "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\"", "full_name": "rob196/home-assistant-fxmarketapi", "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}, "authors": ["@rkoebrugge", "@reharmsen", "@pdwonline", "@jongsoftdev"], "category": "integration", "description": "Custom Youless LS110 component for Home-Assistant ", "domain": "youless", "etag_repository": "W/\"a4836852f4e92850fd7c1955a7df5e348d8da34c2b94f403f4767abf166da6f3\"", "full_name": "rkoebrugge/hacs-youless-component", "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": {}, "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/\"81870bf2311f2f4d422abc6f4d65ab0bc76391a254f657d36be79997b3375dfc\"", "full_name": "RobHofmann/HomeAssistant-GreeClimateComponent", "last_updated": "2022-07-14T07:39:33Z", "stargazers_count": 170, "last_fetched": 1666451485.38546, "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"}, "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/\"78b00d2bbea48840d80a9906cf4506bf4e88420010a943160019b7a68e7875e5\"", "full_name": "robbinjanssen/home-assistant-omnik-inverter", "last_updated": "2022-09-22T08:27:31Z", "stargazers_count": 35, "topics": ["home-assistant-sensor", "python3"], "last_fetched": 1665939019.938164, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196605143": {"repository_manifest": {}, "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/\"9626b4219b9f485e48dd103bd68432340a0c139b1ec743ebb0d7387513fe0cb4\"", "full_name": "RobHofmann/HomeAssistant-PhilipsAndroid2014", "last_updated": "2021-05-09T12:39:18Z", "stargazers_count": 1, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "213551635": {"repository_manifest": {}, "authors": ["@roberodin"], "category": "integration", "description": "\ud83d\udcfa HomeAssistant - SamsungTV Custom Component", "domain": "samsungtv_custom", "etag_repository": "W/\"c57fa15dcad5e78444f837cdc5797e080183020ba906219584efedbbfbfe61da\"", "full_name": "roberodin/ha-samsungtv-custom", "last_updated": "2022-05-27T21:07:23Z", "stargazers_count": 103, "last_fetched": 1665325722.903391, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197116235": {"repository_manifest": {}, "authors": ["@robmarkcole"], "category": "integration", "description": "Home Assistant custom component for using Deepstack face recognition", "domain": "deepstack_face", "etag_repository": "W/\"b532152ab33fce39e41114342ed309a55ed7909ef63fa3c3290da246c7ab6dc2\"", "full_name": "robmarkcole/HASS-Deepstack-face", "last_updated": "2022-07-05T04:16:46Z", "stargazers_count": 192, "topics": ["computer-vision", "deep-learning"], "last_fetched": 1666451488.354294, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "165791238": {"repository_manifest": {}, "authors": ["@robmarkcole"], "category": "integration", "description": "Home Assistant custom component for using Deepstack object detection", "domain": "deepstack_object", "etag_repository": "W/\"586afe36489b1e4f9d51537b378617dc76ece4f2648f93bf4c210b53d545eaf2\"", "full_name": "robmarkcole/HASS-Deepstack-object", "last_updated": "2022-08-15T04:20:21Z", "stargazers_count": 386, "topics": ["object-detection"], "last_fetched": 1666451488.670747, "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"}, "authors": ["@robinostlund"], "category": "integration", "description": "Volkswagen Carnet Component for home assistant", "domain": "volkswagencarnet", "downloads": 3491, "etag_repository": "W/\"69b338f31dbb4ddf893bdd0bd51e8cbe4e75b987402bde985de97534e4436256\"", "full_name": "robinostlund/homeassistant-volkswagencarnet", "last_updated": "2022-09-13T04:41:14Z", "stargazers_count": 186, "topics": ["volkswagen-carnet"], "last_fetched": 1666451487.133205, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "135166048": {"repository_manifest": {}, "authors": ["@robmarkcole"], "category": "integration", "description": "Home-Assistant image classification using Machinebox.io", "domain": "classificationbox", "etag_repository": "W/\"6d776a9e89f890553cb931ce2d11c1f4072ea1ab460f676eacb975a51be37857\"", "full_name": "robmarkcole/HASS-Machinebox-Classificationbox", "last_updated": "2022-03-02T07:15:53Z", "stargazers_count": 18, "topics": ["computer-vision", "deep-neural-networks", "machinebox"], "last_fetched": 1646497047.496838, "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"}, "authors": ["@robmarkcole"], "category": "integration", "description": "Home Assistant Object detection with Amazon Rekognition", "domain": "amazon_rekognition", "etag_repository": "W/\"7d6fc538e3dcf19ab04366696e8e1c775885eb3f455789b6d9ff7e7b3bac477f\"", "full_name": "robmarkcole/HASS-amazon-rekognition", "last_updated": "2022-07-05T04:19:54Z", "stargazers_count": 78, "topics": ["rekognition"], "last_fetched": 1665939023.691402, "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}, "authors": ["@rsnodgrass"], "category": "integration", "description": "ADT Pulse sensor for Home Assistant", "domain": "adtpulse", "etag_repository": "W/\"cea5ae38357b2d44dafe885d0d2a516588c524f0ce5efba97ad5dbe20ab552d2\"", "full_name": "rsnodgrass/hass-adtpulse", "last_updated": "2022-07-18T03:58:48Z", "stargazers_count": 11, "topics": ["adt-pulse"], "last_fetched": 1661585277.992676, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "535062704": {"repository_manifest": {}, "authors": ["@rsnodgrass"], "category": "integration", "description": "Home Assistant Integrations", "domain": "groupme", "etag_repository": "W/\"bc043cc53f302ba46ff42e5cde5198020502ce0381c4bdfe6767e64416b0c0bf\"", "full_name": "rsnodgrass/hass-integrations", "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}, "authors": ["@rsnodgrass", "@snicker", "@DubhAd"], "category": "integration", "description": "Flo Water Control for Home Assistant", "domain": "flo", "etag_repository": "W/\"638207616a96f054ce03b25b9f84cd76cff42e1ac22e98fd369a3a01714e934b\"", "full_name": "rsnodgrass/hass-flo-water", "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}, "authors": ["@rsnodgrass"], "category": "integration", "description": "Pool Math for Home Assistant", "domain": "poolmath", "etag_repository": "W/\"d6c70ac5f6519abdc9851dc0f04a595ea6399ddbfa7eb011d54304e1f7349667\"", "full_name": "rsnodgrass/hass-poolmath", "last_updated": "2022-07-02T03:54:23Z", "stargazers_count": 19, "topics": ["pool", "swimming-pool"], "last_fetched": 1665325735.583686, "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}, "authors": ["@rsnodgrass"], "category": "integration", "description": "SensorPush integration for Home Assistant", "domain": "sensorpush", "etag_repository": "W/\"bd468cf6067d4791133fa9bd41f974180cd3d4488c9dea7b61d7f85ca2c122af\"", "full_name": "rsnodgrass/hass-sensorpush", "last_updated": "2022-07-28T04:56:15Z", "stargazers_count": 24, "topics": ["iot"], "last_fetched": 1661585282.095917, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "153006394": {"repository_manifest": {}, "authors": ["@yuval_mejahez"], "category": "integration", "description": null, "domain": "school_holidays", "etag_repository": "W/\"761168588dc85a18d3bad92eb0fb6163007233852875e5d3b5aebdfa1d02d465\"", "full_name": "rt400/School-Vacation", "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}, "authors": ["@rsnodgrass"], "category": "integration", "description": "Xantech Multi-Zone Matrix Audio for Home Assistant", "domain": "xantech", "etag_repository": "W/\"df9d02ee18ade2704013b380daa0c20867c5620beb32c909e04edd4be533b117\"", "full_name": "rsnodgrass/hass-xantech", "last_updated": "2022-08-17T17:25:58Z", "stargazers_count": 11, "topics": ["audiophile", "xantech"], "last_fetched": 1665325735.735992, "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}, "category": "integration", "description": "Custom Home Assistant sensor for the Marta/Breeze Card.", "domain": "marta", "etag_repository": "W/\"7e7733dbff3ae7edb0a289bcf2a929a0390275653771322f47137b3c5e636a4c\"", "full_name": "ryanmac8/Home-Assistant-Marta", "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}, "authors": ["@yuval_mejahez"], "category": "integration", "description": "ReversoTTS component for HomeAssistant", "domain": "reversotts", "etag_repository": "W/\"9f9be1cd9706d1efafaac3d698993c217002153ac2fd0b57e7da254925f72db0\"", "full_name": "rt400/ReversoTTS-HA", "last_updated": "2021-05-23T17:14:46Z", "stargazers_count": 31, "topics": ["reversotts", "tts"], "last_fetched": 1666451501.866484, "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}, "authors": ["ryannazaretian"], "category": "integration", "description": "Nexia climate integration for Trane and American Standard thermostats", "domain": "nexia", "etag_repository": "W/\"65a8beb66e249d4f0ced4bf4394bf86ca0ce70b02417a57742ea617a4e4fba01\"", "full_name": "ryannazaretian/hacs-nexia-climate-integration", "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"}, "authors": ["@safepay"], "category": "integration", "description": "Control Hunter Douglas / Luxaflex PowerView Window Shades in Home Assistant", "domain": "hd_powerview", "etag_repository": "W/\"3ff35957be953107455111fc71be11c4ed035346e27b23c39ec70d6a5e2c8e7c\"", "full_name": "safepay/cover.hd_powerview", "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": {}, "authors": ["@safepay"], "category": "integration", "description": "A WillyWeather Australian Bureau of Meteorology (BoM) integration for Home Assistant", "domain": "willyweather", "etag_repository": "W/\"6c992391bb91861a9344a701605538f4d4746062e8d233dca03c355d53869460\"", "full_name": "safepay/sensor.willyweather", "last_updated": "2022-08-12T23:15:46Z", "stargazers_count": 7, "last_fetched": 1661585292.010458, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195308808": {"repository_manifest": {}, "authors": ["@safepay"], "category": "integration", "description": "A Fronius Sensor for Home Assistant", "domain": "fronius_inverter", "etag_repository": "W/\"ca68dfd57f23c884f6f597eedd5aafc607d056a0fc17bccd4bd029c3bd6a822c\"", "full_name": "safepay/sensor.fronius", "last_updated": "2022-05-17T06:41:25Z", "stargazers_count": 66, "last_fetched": 1661585292.042691, "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}, "authors": ["@sebr"], "category": "integration", "description": "Orbit BHyve custom component for Home Assistant", "domain": "bhyve", "etag_repository": "W/\"fb591ac3dcb045509ff2e936451389aad1b726c070862ac46d540464f8435bc3\"", "full_name": "sebr/bhyve-home-assistant", "last_updated": "2022-08-30T11:08:58Z", "stargazers_count": 172, "topics": ["bhyve", "home-assistant-component", "irrigation", "orbit", "orbit-bhyve"], "last_fetched": 1666451508.288204, "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"}, "authors": ["@sermayoral"], "category": "integration", "description": "Samsung TV Encrypted Models (H & J Series) custom component for Home Assistant", "domain": "samsungtv_encrypted", "etag_repository": "W/\"06f08b8124ba3908cd7c66cb51e999e6b1fbf69179d4602d36637c5202e0d610\"", "full_name": "sermayoral/ha-samsungtv-encrypted", "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"]}, "authors": ["@shogunxam"], "category": "integration", "description": "HA Integration for Centro Funzionale Regione Toscana", "domain": "cfr", "etag_repository": "W/\"16e57ed0455bcd34b0470a33c04dbc39845434640258faf0c3df6860063631b1\"", "full_name": "shogunxam/Home-Assistant-custom-components-cfr-toscana", "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"}, "category": "integration", "description": "MoneyDashboard Net Balance sensor for HomeAssistant", "domain": "moneydashboard", "etag_repository": "W/\"a1e751f74e95447677b4ee8a4e38868a01e08829173987e3efaa6c711f497ae9\"", "full_name": "shutupflanders/sensor.moneydashboard", "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}, "authors": ["@SLG"], "category": "integration", "description": "This component retrieves the statistics from Whatpulse", "domain": "whatpulse", "etag_repository": "W/\"dca837f1834a3b20ee94902485acbcaa793a075994123c3d2dc9a726d3fadc5b\"", "full_name": "SLG/home-assistant-whatpulse", "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"}, "authors": ["sockless-coding"], "category": "integration", "description": "Garo wallbox - Home Assistant Component ", "domain": "garo_wallbox", "etag_repository": "W/\"7ecb2ef9de8f5c17e4452d7403d4fc5baa80148a4470bf8f9c2961c87314c2f3\"", "full_name": "sockless-coding/garo_wallbox", "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"}, "authors": ["@snarky-snark"], "category": "integration", "description": "A custom Home Assistant component for declaring and setting generic variable entities dynamically.", "domain": "var", "etag_repository": "W/\"e215e38b4126e77446d994aa7c73a9342e3850eb313d90b994a37c560c3adf86\"", "full_name": "snarky-snark/home-assistant-variables", "last_updated": "2022-07-28T16:45:58Z", "stargazers_count": 179, "last_fetched": 1665939050.701027, "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"}, "authors": ["sockless-coding"], "category": "integration", "description": "Panasonic Comfort Cloud - Home Assistant Component", "domain": "panasonic_cc", "etag_repository": "W/\"a33a2117307ba9881f67b2b66184bccbfffe9e749a5102cfef0a83ed3e3cf2ed\"", "full_name": "sockless-coding/panasonic_cc", "last_updated": "2022-10-09T14:24:34Z", "stargazers_count": 50, "last_fetched": 1665915647.828698, "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"}, "authors": ["snicker"], "category": "integration", "description": "Zwift Sensor Integration for HomeAssistant", "domain": "zwift", "etag_repository": "W/\"8e517cdc3e55264a74a41524d13da63310996a45783519475d9b6f39e04ea997\"", "full_name": "snicker/zwift_hass", "last_updated": "2022-02-21T21:41:05Z", "stargazers_count": 29, "last_fetched": 1665325755.27369, "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"}, "authors": ["@slesinger"], "category": "integration", "description": "Control BMR heating regulation system from Home Assistant", "domain": "bmr_hc64", "etag_repository": "W/\"838cdc644918386a9d5672f5de788233d4d981f43c0827023201535ef8f332d5\"", "full_name": "slesinger/HomeAssistant-BMR", "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"}, "authors": ["@slesinger"], "category": "integration", "description": "Home Assistant integration to display info about energy plan", "domain": "predistribuce", "etag_repository": "W/\"8acc78f86bdcc10785c92c237a5b792d29a0e6c23303b4d4a1d4954e7fb03768\"", "full_name": "slesinger/HomeAssistant-PREdistribuce", "last_updated": "2022-08-05T19:14:56Z", "stargazers_count": 4, "topics": ["energy", "power"], "last_fetched": 1665325753.359453, "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"}, "authors": ["@hakana", "@StyraHem"], "category": "integration", "description": "Shelly smart home platform for Home Assistant", "domain": "shelly", "downloads": 6962, "etag_repository": "W/\"6427beb72cd52a321beba62c4867b0e6ec377c74edfd919ee9f3cbb3051d6ecf\"", "full_name": "StyraHem/ShellyForHASS", "last_updated": "2022-09-12T17:25:50Z", "stargazers_count": 549, "last_fetched": 1666451524.037594, "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"}, "authors": ["@swartjean"], "category": "integration", "description": "Home Assistant - Seedboxes.cc Integration", "domain": "seedboxes_cc", "etag_repository": "W/\"10c73b84969288f1764356fa0811ce3bbf468c80848ac9c549399ec6d4e61dc6\"", "full_name": "swartjean/ha-seedboxes-cc", "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"}, "authors": ["@swartjean"], "category": "integration", "description": "Fetches loadshedding data from Eskom", "domain": "eskom_loadshedding", "etag_repository": "W/\"f8a0f89cd2b4ec1bf2ad8a1fa1667400031c1a29e8c1e25e82430064f61046ed\"", "full_name": "swartjean/ha-eskom-loadshedding", "last_updated": "2022-10-13T19:47:02Z", "stargazers_count": 41, "topics": ["eskom", "eskomsepush", "esp", "loadshedding", "south-africa"], "last_fetched": 1666451524.887718, "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}, "authors": ["@tefinger"], "category": "integration", "description": "Custom component for Home Assistant to support Brematic devices", "domain": "brematic", "etag_repository": "W/\"a4903a28880621bcdfdf68abc621de66a929dbb5f3c6934a6c5e78fb2cf1d98f\"", "full_name": "tefinger/hass-brematic", "last_updated": "2022-03-30T09:51:05Z", "stargazers_count": 7, "topics": ["433mhz", "brematic", "brennenstuhl", "gateway", "intertechno"], "last_fetched": 1661585319.152975, "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": "2021.12", "render_readme": true}, "authors": ["@ThermIQ"], "category": "integration", "description": "Home Assistant integration of ThermIQ-MQTT, providing control and logging of Thermia heatpumps ", "domain": "thermiq_mqtt", "etag_repository": "W/\"a0ad71b24a5621c9aa9ced262a6d3e3aebccc33edefb7db9a8ec02c26421b1bc\"", "full_name": "ThermIQ/thermiq_mqtt-ha", "last_updated": "2022-07-04T09:19:20Z", "stargazers_count": 12, "topics": ["bergvarme", "danfoss", "dhp", "diplomat", "g2", "g3", "ha", "heatpump", "optimum", "thermal-pump", "thermia", "thermiq", "thermiq-mqtt", "varmepump"], "last_fetched": 1661585323.435411, "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"}, "authors": ["@thevoltagesource"], "category": "integration", "description": "Home Assistant custom component for controlling Lennox iComfort WiFi and AirEase Comfort Sync thermostats.", "domain": "myicomfort", "etag_repository": "W/\"c5d4ee17b0fbae07f91247fe535f1e5cd45f4e7d4dde18cc40f479ec69c32f41\"", "full_name": "thevoltagesource/LennoxiComfort", "last_updated": "2021-12-08T02:01:39Z", "stargazers_count": 22, "topics": ["icomfort", "lennox", "thermostat"], "last_fetched": 1661585323.773973, "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"}, "category": "integration", "description": "\ud83d\udd39 A Home Assistant integration to turn your browser into a controllable entity - and also an audio player", "domain": "browser_mod", "etag_repository": "W/\"4105798fd4bd61f8152e4124c0014ff3c3dd6374bcd55528044f11ab8a1de2a6\"", "full_name": "thomasloven/hass-browser_mod", "last_updated": "2022-09-12T10:27:06Z", "stargazers_count": 798, "last_fetched": 1666451539.423267, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202220932": {"repository_manifest": {}, "category": "integration", "description": "\ud83d\udd39 Change the favicon of your Home Assistant instance", "domain": "favicon", "etag_repository": "W/\"afd4802e0082a2ef29c4d10f0bab601973170d09a3e2a444f46e265e882812f8\"", "full_name": "thomasloven/hass-favicon", "last_updated": "2021-07-26T15:03:33Z", "stargazers_count": 70, "last_fetched": 1665325774.149395, "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"}, "category": "integration", "description": "\ud83d\udd39 Improve the lovelace yaml parser for Home Assistant", "domain": "lovelace_gen", "etag_repository": "W/\"131ce10d9033af1980307a50c95661282a67a2442eb023588b19778aad92cdd9\"", "full_name": "thomasloven/hass-lovelace_gen", "last_updated": "2022-10-20T21:24:20Z", "stargazers_count": 136, "last_fetched": 1666451540.409585, "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"}, "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/\"c876257385687e014c5f78266e1da059af1e11445d9dd7303c17069becdef404\"", "full_name": "TimSoethout/goodwe-sems-home-assistant", "last_updated": "2022-10-10T08:07:05Z", "stargazers_count": 59, "topics": ["goodwe-sems", "pv", "sems-portal"], "last_fetched": 1665939063.064589, "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"}, "authors": ["@Tikismoke"], "category": "integration", "description": "NESPRESSO ble Home Assistant custom componenets and also a 2MQTT script", "domain": "nespresso", "etag_repository": "W/\"7252c40409a6d2366734f3ca6ca0bf020ec9ac9ccc0134322fe1d4c99a83ac37\"", "full_name": "tikismoke/home-assistant-nespressoble", "last_updated": "2022-08-21T12:37:54Z", "stargazers_count": 33, "topics": ["nespresso", "nespresso-ble"], "last_fetched": 1666451541.646322, "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"}, "authors": ["@Tikismoke"], "category": "integration", "description": "a plcbus custom somponents for HomeAssistant", "domain": "plcbus", "etag_repository": "W/\"224e43b119b2ee9069522d8ea2be1d17b162c2c14af29a376f4f1ae6d370f9b4\"", "full_name": "tikismoke/home-assistant-plcbus", "last_updated": "2021-08-15T16:14:24Z", "stargazers_count": 1, "topics": ["plcbus"], "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"}, "authors": ["@timvancann"], "category": "integration", "description": null, "domain": "growatt", "etag_repository": "W/\"37683903517563208c89da2af8f9abb43ae219c829276bf60b2a35f4a8281e6b\"", "full_name": "timvancann/homeassistant-growatt", "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"]}, "category": "integration", "description": "A BER Status Sensor", "domain": "ber_status", "etag_repository": "W/\"c651e78aab194f35b73219bf04a794db49921cead5d461e87b33eba934b9c1f2\"", "full_name": "tmechen/ber_status", "last_updated": "2020-10-31T13:57:32Z", "stargazers_count": 5, "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}, "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/\"2cf78a1eef7fc50131b468393e26ddeca18d9d0d12cc71f0f89e5a8c04cc8b42\"", "full_name": "tmonck/clean_up_snapshots", "last_updated": "2022-04-17T20:11:53Z", "stargazers_count": 12, "last_fetched": 1657362969.972759, "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"}, "authors": ["@tomaae"], "category": "integration", "description": "Mikrotik router integration for Home Assistant", "domain": "mikrotik_router", "downloads": 3373, "etag_repository": "W/\"39cc0bff199c5a0ee48d3a75521f65502eee7f8f13dac10690f5efa5f7a3c080\"", "full_name": "tomaae/homeassistant-mikrotik_router", "last_updated": "2022-09-29T22:37:10Z", "stargazers_count": 162, "topics": ["mikrotik"], "last_fetched": 1666451546.860879, "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"}, "authors": ["@tomaae"], "category": "integration", "description": "OpenMediaVault integration for Home Assistant", "domain": "openmediavault", "downloads": 3337, "etag_repository": "W/\"4d7c873788d4e9dd15e08ef3d3e0240b9b07d8a240b488a1cc6d747a03bd8f0b\"", "full_name": "tomaae/homeassistant-openmediavault", "last_updated": "2022-10-18T16:15:37Z", "stargazers_count": 47, "topics": ["omv", "openmediavault"], "last_fetched": 1666451546.792878, "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}, "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": 7, "etag_repository": "W/\"c2344dbb634d0f56bddb25bed669c7b5b914201e510856c104391473ffc7bf23\"", "full_name": "toreamun/amshan-homeassistant", "last_updated": "2022-10-12T19:28:00Z", "stargazers_count": 88, "topics": ["aidon", "ams", "han", "kaifa", "kamstrup", "mbus", "meterbus", "mqtt", "p1", "smart-meter", "tibberpulse"], "last_fetched": 1666451550.955186, "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}, "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\"", "full_name": "toreamun/victorsmartkill-homeassistant", "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"}, "authors": ["@troykelly"], "category": "integration", "description": "Trackimo Integration for HACS Home Assistant", "domain": "trackimo", "etag_repository": "W/\"bbd77b479cbdb53f5de50b91a429d526c0ad3f4c4963fe70486a61e8d6e6b8de\"", "full_name": "troykelly/hacs-trackimo", "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}, "authors": ["@turbokongen"], "category": "integration", "description": "Custom component reading AMS through MBus adapter into HomeAssistant", "domain": "ams", "etag_repository": "W/\"c9bbaa9030f1c8b5617276b8b2e5257ab928442f99d6661b722ba8e30bc07a02\"", "full_name": "turbokongen/hass-AMS", "last_updated": "2022-10-08T15:52:43Z", "stargazers_count": 35, "topics": ["mbus-adapter", "meter", "sensors"], "last_fetched": 1665325776.825097, "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}, "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\"", "full_name": "tuxuser/abfallapi_jumomind_ha", "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}, "authors": ["@turbulator"], "category": "integration", "description": "Home Assistant custom component for Pandora Car Alarm System", "domain": "pandora_cas", "etag_repository": "W/\"b56a03653507a08bfac1a5fb85b36d357373970f2c4bd9d9fbf43854e446ca74\"", "full_name": "turbulator/pandora-cas", "last_updated": "2022-06-03T15:14:25Z", "stargazers_count": 34, "topics": ["pandora"], "last_fetched": 1662801950.711256, "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}, "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\"", "full_name": "tuxuser/abfallapi_regioit_ha", "last_updated": "2022-07-07T19:18:48Z", "stargazers_count": 11, "topics": ["collection", "component", "garbage", "muell", "muellabfuhr", "regioit", "smart-home", "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"}, "authors": ["@twrecked"], "category": "integration", "description": "Asynchronous Arlo Component for Home Assistant", "domain": "aarlo", "etag_repository": "W/\"597524070f4578dfe68c6a365edb77f14b43d0096c72e5f8f58da93a423ca352\"", "full_name": "twrecked/hass-aarlo", "last_updated": "2022-10-21T21:41:16Z", "stargazers_count": 270, "topics": ["arlo", "netgear"], "last_fetched": 1666451558.331095, "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"}, "authors": ["@sherrell"], "category": "integration", "description": "Momentary Switch Component for Home Assistant", "domain": "momentary", "etag_repository": "W/\"13887ef26bba7057ef4e2aaf9a6b4ec5f4dcf8056cbe259b76e8f39d4c614e15\"", "full_name": "twrecked/hass-momentary", "last_updated": "2022-06-05T05:39:39Z", "stargazers_count": 29, "last_fetched": 1661585345.779842, "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"}, "authors": ["@twrecked"], "category": "integration", "description": "Virtual Components for Home Assistant", "domain": "virtual", "etag_repository": "W/\"9ee461bef29662b074beb97907a1038ffba9f779f38d9a8c9fcacc11c682265a\"", "full_name": "twrecked/hass-virtual", "last_updated": "2022-08-25T14:41:39Z", "stargazers_count": 65, "last_fetched": 1665325776.939206, "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"}, "authors": ["@tybritten"], "category": "integration", "description": "an iCal Sensor for Home Assistant", "domain": "ical", "etag_repository": "W/\"695c986536db65a0515ee414bb01a737cb688d186ca64cddeedd5226244f7a6f\"", "full_name": "tybritten/ical-sensor-homeassistant", "last_updated": "2022-09-01T07:00:54Z", "stargazers_count": 59, "topics": ["ical"], "last_fetched": 1665939064.563437, "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"}, "authors": ["@ualex73"], "category": "integration", "description": "Monitor Docker containers from Home Assistant", "domain": "monitor_docker", "etag_repository": "W/\"df30acf452735a0808c352354d0bbf2909d010780f98da194d2b6e530dce8b0a\"", "full_name": "ualex73/monitor_docker", "last_updated": "2022-10-19T08:12:25Z", "stargazers_count": 169, "topics": ["docker"], "last_fetched": 1666451561.123554, "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}, "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\"", "full_name": "Verbalinsurection/next_rocket_launch", "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", "render_readme": true}, "authors": ["@vinteo"], "category": "integration", "description": "OpenSprinkler Integration for Home Assistant", "domain": "opensprinkler", "etag_repository": "W/\"59a0c562cc120ee6311828e403b37eb0d9d3e8d9a8793e4abf6c5d6ad78a7a19\"", "full_name": "vinteo/hass-opensprinkler", "last_updated": "2022-08-09T04:38:35Z", "stargazers_count": 136, "topics": ["opensprinkler"], "last_fetched": 1665939065.214355, "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"}, "authors": ["@vanstinator"], "category": "integration", "description": "Melnor Raincloud Home Assistant Integration", "domain": "raincloud", "etag_repository": "W/\"58000ab27cbb2d837de1137176b14c71cd411269a7a3d5e07a5dab900c8e3bc9\"", "full_name": "vanstinator/hass-raincloud", "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"}, "category": "integration", "description": "Use Simple Icons in Home Assistant", "domain": "simpleicons", "downloads": 625, "etag_repository": "W/\"9e0a5a871a4cf5b5cce21ec74d5a8fa7058985c207b5c6f923a439e684824179\"", "full_name": "vigonotion/hass-simpleicons", "last_updated": "2022-10-08T17:58:57Z", "stargazers_count": 79, "topics": ["simple-icons"], "last_fetched": 1665325778.120351, "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"}, "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\"", "full_name": "vlumikero/home-assistant-securitas", "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": {}, "authors": ["@walthowd"], "category": "integration", "description": "Automower Custom Component for Home Assistant", "domain": "automower", "etag_repository": "W/\"1e8a5bc14a7edc8d7f70a6e85d9a00544ceb5ac7132fa4fbda24c8380254e68e\"", "full_name": "walthowd/ha-automower", "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"}, "authors": ["websylv"], "category": "integration", "description": ":sun_behind_rain_cloud: :switzerland: Meteo Swiss Integration for Home Assisant", "domain": "meteo-swiss", "etag_repository": "W/\"a4bdd85b3fd598d73d4f139cde1da1e6698e26513d70767963a8b7685e50dd86\"", "full_name": "websylv/homeassistant-meteoswiss", "last_updated": "2022-04-02T10:20:51Z", "stargazers_count": 50, "last_fetched": 1666451569.37796, "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"}, "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/\"575c2a55937100006c9219d8ae261e5ec04b3602887ea18cb96bf0c5c7db17dc\"", "full_name": "willholdoway/hifiberry", "last_updated": "2022-06-03T04:16:33Z", "stargazers_count": 26, "topics": ["hifiberry", "internet-of-things", "iot", "media-player"], "last_fetched": 1661585348.394167, "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.115.0"}, "authors": ["@xirixiz"], "category": "integration", "description": "Provides sensors for some Dutch waste collectors", "domain": "afvalwijzer", "etag_repository": "W/\"34336fe1ee68dbfc05910483551f9993ebb29df94de8b0f540d8bd50a03319d6\"", "full_name": "xirixiz/homeassistant-afvalwijzer", "last_updated": "2022-09-26T06:36:02Z", "stargazers_count": 109, "topics": ["afvalwijzer", "trash"], "last_fetched": 1665325779.229532, "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"}, "authors": ["@youdroid"], "category": "integration", "description": "\ud83c\udfa5 CouchPotato component to feed Upcoming Media Card.", "domain": "couchpotato", "etag_repository": "W/\"7b09052eb6325f2b6d7bf9ba766e31dde1bd1c4d03dfa12412b4a15807d1a152\"", "full_name": "youdroid/home-assistant-couchpotato", "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"}, "authors": ["@youdroid"], "category": "integration", "description": "\ud83c\udf75 Gitea component to follow your repositories", "domain": "gitea", "etag_repository": "W/\"188f9173574300eb33469104b90ba9cf2a93e6873b701e499b1713b33d3ed4a3\"", "full_name": "youdroid/home-assistant-gitea", "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"}, "authors": ["@youdroid"], "category": "integration", "description": "\ud83c\udfa5 SickChill component to feed Upcoming Media Card.", "domain": "sickchill", "etag_repository": "W/\"577fd63d9480a6cc8b83c569e03d6f535e11cc988edf8c7fcbb3599c4be35ef6\"", "full_name": "youdroid/home-assistant-sickchill", "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"}, "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/\"aaed6eacb3c41a406f62839f340bde595383314638687958ade51e0488a01b81\"", "full_name": "zachowj/hass-node-red", "last_updated": "2022-10-20T09:48:27Z", "stargazers_count": 293, "topics": ["node-red"], "last_fetched": 1666451580.744781, "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"}, "category": "theme", "description": "\ud83d\udc35 Dark Theme based on clear-theme-dark by @naofireblade", "domain": "", "etag_repository": "W/\"545eb844c4ce424bd12c339f1b4c5ac250f2a390334a412506744ece3e798d44\"", "full_name": "aFFekopp/dark_teal", "last_updated": "2022-03-15T09:06:42Z", "stargazers_count": 14, "topics": ["dark-theme", "home-assistant-theme"], "last_fetched": 1665938504.29402, "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"}, "category": "theme", "description": "Darkish-Theme for Home Assistant", "domain": "", "etag_repository": "W/\"02a74aeaa52ba0b10ca0d36a96a1f352bfb8400db6eb23bfde5a6b4b49289bf3\"", "full_name": "78wesley/Home-Assistant-Darkish-Theme", "last_updated": "2021-12-14T20:45:38Z", "stargazers_count": 5, "last_fetched": 1641470328.639185, "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"}, "category": "theme", "description": "\ud83d\ude0e My Theme 'Blue' - with semi-transparent Cards", "domain": "", "etag_repository": "W/\"d210ac06ae7eb49c8da2a67f225e524a2618d04f961b837fac8d85dc1709c135\"", "full_name": "3ative/3ative-blue-theme", "last_updated": "2022-02-03T04:37:37Z", "stargazers_count": 2, "topics": ["3ative", "blue", "theme-ui"], "last_fetched": 1644064199.234961, "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"}, "category": "theme", "description": "Custom theme for home assistant", "domain": "", "etag_repository": "W/\"098b03c44b3aa8e79d3d8e3f71ce251cc0250bb1d79625c7bf80fe4343c8111b\"", "full_name": "am80l/sundown", "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}, "category": "theme", "description": "Oxford blue theme for Home Assistant", "domain": "", "etag_repository": "W/\"cd3c6cd46167959710516649a2f389fb2616c89d1722d3297b2ca8422da8452c\"", "full_name": "arsaboo/oxford_blue_theme", "last_updated": "2020-02-27T00:08:56Z", "stargazers_count": 4, "last_fetched": 1649613438.149031, "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"}, "category": "theme", "description": "A collection of dark themes for Home Assistant. ", "domain": "", "etag_repository": "W/\"8a6253d3ec85ef288022839985a57044ceb456b8bf879913858537e4405e6413\"", "full_name": "awolkers/home-assistant-themes", "last_updated": "2022-09-16T00:24:58Z", "stargazers_count": 8, "topics": ["dark-mode", "dark-theme"], "last_fetched": 1665325336.810213, "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}, "category": "theme", "description": "\ud83c\udfe0\ud83e\udd16 Theme by @basnijholt based on iOS Dark Mode for Lovelace Home Assistant ", "domain": "", "etag_repository": "W/\"9a47ccf26e1d5bbbb4b0b8705ca5330e7a9432be8f1a060588596e58f75d922b\"", "full_name": "basnijholt/lovelace-ios-dark-mode-theme", "last_updated": "2022-10-14T15:43:59Z", "stargazers_count": 380, "topics": ["dark-mode", "darkmode", "ios"], "last_fetched": 1666451580.725503, "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"}, "category": "theme", "description": "\ud83c\udf99\ufe0f Vintage theme original colours & style designed by @surendrananup HACS adapted by @Banditen01", "domain": "", "etag_repository": "W/\"543a3ffb3d712bbbb04fcadaef283b8c18456c0fd55db41229c67b225434c512\"", "full_name": "Banditen01/vintage_theme", "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}, "category": "theme", "description": "\ud83c\udfe0\ud83e\udd16 Theme based on iOS Light Mode for Lovelace Home Assistant ", "domain": "", "etag_repository": "W/\"b8dc7e2c79a2fe4264191319302a01928c62b61902c3e9d28d682358239d74ff\"", "full_name": "basnijholt/lovelace-ios-light-mode-theme", "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}, "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/\"42ed7e11fad6d5d0b069583929399dfc8f957c9434c59fff11f7bc6351e8931f\"", "full_name": "basnijholt/lovelace-ios-themes", "last_updated": "2022-05-27T18:41:02Z", "stargazers_count": 341, "last_fetched": 1666451580.804037, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202203063": {"repository_manifest": {}, "category": "theme", "description": "Synthwave inspired theme for Home Assistant", "domain": "", "etag_repository": "W/\"e7b95d8a2d4f03686c7ab5b558b6cdde1eac907144f28ce2ced78e0650603a4a\"", "full_name": "bbbenji/synthwave-hass", "last_updated": "2022-06-13T03:57:15Z", "stargazers_count": 134, "topics": ["css", "home-assistant-theme", "javascript", "synthwave"], "last_fetched": 1666451580.627104, "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"}, "category": "theme", "description": "\ud83c\udfa8 Green, dark mode theme for Home Assistant, Enjoy.\ud83e\udd18\ud83c\udffb", "domain": "", "etag_repository": "W/\"eb077a53784395a775526bc4ae999c1932247f00765f0978dd56b1ca22d66208\"", "full_name": "DickSwart/swart_ninja_dark_theme", "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}, "category": "theme", "description": "Dark Grey Theme for Home Assistant", "domain": "", "etag_repository": "W/\"702b97b28a6dbff08816ff8d223dae4358d91be0942b80ea907b2b22d7260561\"", "full_name": "chaptergy/noctis-grey", "last_updated": "2022-03-05T12:41:38Z", "stargazers_count": 9, "last_fetched": 1653230135.666998, "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}, "category": "theme", "description": "Theme for home assistant that makes use of pinks and purples and maybe some teal", "domain": "", "etag_repository": "W/\"a2cbdea27b8a8022cdcdb768a678e523899cf9947532265e1e0cc98197b47922\"", "full_name": "estiens/sweet_pink_hass_theme", "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}, "category": "theme", "description": "A Home Assistant theme inspired on Github.", "domain": "", "etag_repository": "W/\"7cc508fca707015c7799744ce405fc77251453a121c446bba563328f72e2902f\"", "full_name": "einschmidt/github_dark_theme", "last_updated": "2022-03-29T06:36:50Z", "stargazers_count": 3, "topics": ["assistant-theme"], "last_fetched": 1648839789.351853, "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}, "category": "theme", "description": "A Home Assistant theme inspired on Github.", "domain": "", "etag_repository": "W/\"7bf7401cacda55c60c0e677ad6d0ba4b33c2da1c658ecf20a54c332e16d6656c\"", "full_name": "einschmidt/github_light_theme", "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}, "category": "theme", "description": "\ud83c\udfa8 Theme for Home Assistant inspired by iOS Dark Mode \ud83c\udf16", "domain": "", "etag_repository": "W/\"cb29cfba05e2be2c96772a2e92d868a897c42593849f0ed47d837dad0a600d53\"", "full_name": "fi-sch/ux_goodie_theme", "last_updated": "2022-03-08T19:49:59Z", "stargazers_count": 10, "topics": ["dark", "ios", "lovelace-theme", "mode", "ux"], "last_fetched": 1648398645.488657, "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}, "category": "theme", "description": "Reeder Dark Theme for Home Assistant", "domain": "", "etag_repository": "W/\"63f697b7477df59be896ff5288e9d0585223da1b0766b102f1fc3ad7035d073b\"", "full_name": "hekm77/reeder_dark_theme", "last_updated": "2020-09-18T07:41:54Z", "stargazers_count": 4, "last_fetched": 1645379973.99824, "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"}, "category": "theme", "description": "Amoled theme for Home Assistant", "domain": "", "etag_repository": "W/\"7d24f2d226fe6ae6fabd30561c2b7d17d0fe9a1fd701d1a86b30d69dfefa90c0\"", "full_name": "home-assistant-community-themes/amoled", "last_updated": "2022-07-12T06:56:20Z", "stargazers_count": 26, "last_fetched": 1662801429.86256, "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"}, "category": "theme", "description": "Blackened theme for Home Assistant", "domain": "", "etag_repository": "W/\"ba9b14fb0dbd401b37d39ecfc1712678eb63d6fbd9b4cdb3f5f950557ad2a942\"", "full_name": "home-assistant-community-themes/blackened", "last_updated": "2022-01-07T08:45:24Z", "stargazers_count": 9, "last_fetched": 1645379974.536019, "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"}, "category": "theme", "description": "Aqua Fiesta theme for Home Assistant", "domain": "", "etag_repository": "W/\"ae0ce88783842e5b68a744500a019146c3df8e12cdd39e5e044081fea62a6ae1\"", "full_name": "home-assistant-community-themes/aqua-fiesta", "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"}, "category": "theme", "description": "Christmas theme for Home Assistant", "domain": "", "etag_repository": "W/\"ec277043909de125a9edb53b2aa275dbae8659c44dd9096cb3b2b84be980e32c\"", "full_name": "home-assistant-community-themes/christmas", "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"}, "category": "theme", "description": "Blue Night theme for Home Assistant", "domain": "", "etag_repository": "W/\"231895175f78a062c344362106bdbbf0526e61f6b9bfda160e9c7280f90edd94\"", "full_name": "home-assistant-community-themes/blue-night", "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"}, "category": "theme", "description": "Dark Orange theme for Home Assistant", "domain": "", "etag_repository": "W/\"e1f6b4c59e7dd6811302afbccc510ac798d1e7d5a7eec384b2ecbac0e5dc59ec\"", "full_name": "home-assistant-community-themes/dark-orange", "last_updated": "2022-09-12T19:09:58Z", "stargazers_count": 9, "last_fetched": 1665325350.181859, "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"}, "category": "theme", "description": "Another Dark theme for Home Assistant", "domain": "", "etag_repository": "W/\"888a892185175ca4c128a4bb6c257e1197b3f7e7e7dbd0cede53a279445edd46\"", "full_name": "home-assistant-community-themes/dark-mint", "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"}, "category": "theme", "description": "Grey Night theme for Home Assistant", "domain": "", "etag_repository": "W/\"6841c1f3cafe9020476e1d9c711b88a723fd0d68ce45f458808f93c8af77cac5\"", "full_name": "home-assistant-community-themes/grey-night", "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"}, "category": "theme", "description": "Halloween theme for Home Assistant", "domain": "", "etag_repository": "W/\"8fda60a56805bc35eed2453f586735bf9187cba3b24ffe5994caad46ec3e633e\"", "full_name": "home-assistant-community-themes/halloween", "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"}, "category": "theme", "description": "Material Dark Red theme for Home Assistant", "domain": "", "etag_repository": "W/\"fc278ce4816ee42c77950af8979f5e3f71ec2657d0c105fb5ea1eaa9d767002a\"", "full_name": "home-assistant-community-themes/material-dark-red", "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"}, "category": "theme", "description": "Material Dark Pink theme for Home Assistant", "domain": "", "etag_repository": "W/\"41d24bd82b5e25ef2cec8ed92896d0a42849410a2bdb48f0b6c131007b5ed861\"", "full_name": "home-assistant-community-themes/material-dark-pink", "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"}, "category": "theme", "description": "Midnight theme for Home Assistant", "domain": "", "etag_repository": "W/\"c222de46eadb510fb669df9a0917303ca4afc063d51bb270161fed6d342f30cf\"", "full_name": "home-assistant-community-themes/midnight", "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"}, "category": "theme", "description": "Material Dark Green theme for Home Assistant", "domain": "", "etag_repository": "W/\"bad698fb82482d8a92c028765e0761f093093ad22718d67795c0529317bc9e93\"", "full_name": "home-assistant-community-themes/material-dark-green", "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"}, "category": "theme", "description": "Midnight Blue theme for Home Assistant", "domain": "", "etag_repository": "W/\"041078c5872ea5bc8cea48155619495942967b79d6012eca997bf7806e0434b4\"", "full_name": "home-assistant-community-themes/midnight-blue", "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"}, "category": "theme", "description": "Nord theme for Home Assistant", "domain": "", "etag_repository": "W/\"c86a8f2dd58835efd240dc0ea051d5ac3a9fd3c245c2491d1c52070e184cebdf\"", "full_name": "home-assistant-community-themes/nord", "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"}, "category": "theme", "description": "Solarized Light theme for Home Assistant", "domain": "", "etag_repository": "W/\"169bbe0af93ad59124d09649e509d2919bbd8e6f55f15139954bbeb311dd0db6\"", "full_name": "home-assistant-community-themes/solarized-light", "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"}, "category": "theme", "description": "Stell Blue with Colors theme for Home Assistant", "domain": "", "etag_repository": "W/\"5077767a0aa28cc4a56403ca6b8d9e955516f26b40e5317d5f6d6f1cfb43bd9e\"", "full_name": "home-assistant-community-themes/stell-blue-with-colors", "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"}, "category": "theme", "description": "Christmas theme for Home-Assistant", "domain": "", "etag_repository": "W/\"73d7508c5ee3f8de942d3365393ae40581ba808bcbfa5f7d1d12ce6b988c130d\"", "full_name": "houtknots/UglyChristmas-Theme", "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}, "category": "theme", "description": "Vaporwave Pink Theme for Home Assistant", "domain": "", "etag_repository": "W/\"9bd2f3aa912f6b87f1caf0e83298b7dc25253f3346fe222ac487d394ccca07ef\"", "full_name": "home-assistant-community-themes/vaporwave-pink", "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"}, "category": "theme", "description": "Teal theme for Home Assistant", "domain": "", "etag_repository": "W/\"8cbdbec442c85ef844f76d9a1ea9a18d28674d564255ce7d3323cd80d844995d\"", "full_name": "home-assistant-community-themes/teal", "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}, "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A true black Home Assistant theme for devices with AMOLED displays", "domain": "", "etag_repository": "W/\"01c9154628c13ea76cebadcf741a2a49eb27570f691074740feddd112fbd8df3\"", "full_name": "JuanMTech/amoled_blue", "last_updated": "2022-06-19T17:44:42Z", "stargazers_count": 11, "last_fetched": 1665325358.221756, "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"}, "category": "theme", "description": "A transparent blue theme for Home Assistant", "domain": "", "etag_repository": "W/\"d61f8a8200cc9d0b5a36a50998999c0a17282975dd0f1acd278cf5f15235e437\"", "full_name": "JOHLC/transparentblue", "last_updated": "2022-04-07T01:50:40Z", "stargazers_count": 21, "topics": ["homeassistant-addons", "transparent-blue-theme", "transparentblue", "yaml"], "last_fetched": 1649613459.000675, "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}, "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the Google app light mode.", "domain": "", "etag_repository": "W/\"eb48c7c8d7b85ef67dee08d9ee8b09dc351eb9c1101e92e117a2943d3de7bea9\"", "full_name": "JuanMTech/google_light_theme", "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}, "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A matte black theme with a green accent color", "domain": "", "etag_repository": "W/\"ec0f4c26d0eb1c7dfc7f3a33d0a70d84aea32ce0fd5bd50dfa7c28546983caba\"", "full_name": "JuanMTech/green_dark_mode", "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}, "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A light mode theme with a green accent color", "domain": "", "etag_repository": "W/\"0422d4984525067b48f1c765e84c814690080b9489717eb4d566e78bcebd6cf5\"", "full_name": "JuanMTech/green_light_mode", "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}, "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the iOS dark mode interface.", "domain": "", "etag_repository": "W/\"c75539aadaa2fddb09cbcb7ed5df3e07054f7e3908886cb298058ec724406f21\"", "full_name": "JuanMTech/ios_dark_mode_theme", "last_updated": "2022-06-19T17:46:26Z", "stargazers_count": 21, "topics": ["dark-mode", "dark-theme"], "last_fetched": 1665325361.960158, "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}, "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the iOS light mode interface.", "domain": "", "etag_repository": "W/\"6d6e8a768755f52f257c1eb0d3e17bf91e582281dbe40617363df6eab962f83c\"", "full_name": "JuanMTech/ios_light_mode_theme", "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}, "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A matte black theme with an orange accent color", "domain": "", "etag_repository": "W/\"2ceced4f48c67cec92ce1068a8c3e482d5ae1db28899cc2131995ec7f8c594b8\"", "full_name": "JuanMTech/orange_dark", "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}, "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A light mode theme with an orange accent color", "domain": "", "etag_repository": "W/\"654e166cd6ad22ad3037120a92633d0e6f40f1cefc8d82104bfc416b4e2c66cd\"", "full_name": "JuanMTech/orange_light", "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"}, "category": "theme", "description": "A milky glass theme for Home Assistant", "domain": "", "etag_repository": "W/\"161d0aa7cdf76f424437a41fe8897ab763e6ffb973285be14aa4935e8c563819\"", "full_name": "Kibibit/hass-kibibit-theme", "last_updated": "2022-10-11T03:08:17Z", "stargazers_count": 129, "last_fetched": 1665938531.339498, "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}, "category": "theme", "description": "Home Assistant Windows 10 inspired themes", "domain": "", "etag_repository": "W/\"7240da4c6a6a2ac022f333d1f07e0b6eeda65036e9538d6438f249ffa60d67ae\"", "full_name": "mikosoft83/hass-windows10-themes", "last_updated": "2021-06-27T19:55:52Z", "stargazers_count": 7, "topics": ["accent-color", "windows", "windows-10"], "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"}, "category": "theme", "description": "Clear Theme for Home Assistant", "domain": "", "etag_repository": "W/\"5aebf76221c28f0e2912ef0feca40b6a3316898818e606502232fbd8d70fbfa8\"", "full_name": "naofireblade/clear-theme", "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}, "category": "theme", "description": "Home Assistant theme - A dark, electric blue theme that reminds the movie Your Name. ", "domain": "", "etag_repository": "W/\"e5a977383bde62eefa8dc96b068f171bc8fc412c5477a1dc3b5240ca462797a1\"", "full_name": "Nihvel/your_name", "last_updated": "2022-04-29T23:58:08Z", "stargazers_count": 19, "last_fetched": 1656859484.889319, "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"}, "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/\"e32709ac6cb66d074229e53dc82921a74c821605fedc27f597e058c0efbcb66d\"", "full_name": "orickcorreia/caule-themes-pack-1", "last_updated": "2022-06-20T15:29:16Z", "stargazers_count": 193, "topics": ["caule", "pack"], "last_fetched": 1665938537.483895, "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"}, "category": "theme", "description": "Dark variant of Clear Theme for Home Assistant", "domain": "", "etag_repository": "W/\"863a5fa7abe111f7db878a7f69b183df60561e8efd0b1fcb9689d559d2ab5914\"", "full_name": "naofireblade/clear-theme-dark", "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"}, "category": "theme", "description": "Green adaptation of this Home-Assistant theme: https://github.com/seangreen2/slate_theme", "domain": "", "etag_repository": "W/\"2ed1825986f40ee57d47a9e22773735d5e181ee2b31de0fcc498e9d3da1f18fe\"", "full_name": "pbeckcom/green_slate_theme", "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": {}, "category": "theme", "description": "A Dark Theme for Home Assistant", "domain": "", "etag_repository": "W/\"0c858076c65b24d408267791a1500aef5d40ba5cba5b9239205803946dbc0564\"", "full_name": "seangreen2/slate_theme", "last_updated": "2022-09-03T00:36:04Z", "stargazers_count": 86, "last_fetched": 1662801455.506106, "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"}, "category": "theme", "description": "My red\"isch\" home assistant theme.", "domain": "", "etag_repository": "W/\"9613b0e9ffd2da9e1f94820627ff9179b17ada9417950c46d6799c6b74229739\"", "full_name": "Poeschl/slate_red", "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}, "category": "plugin", "description": "Lovelace custom card for visualizing the ZWave network with the OpenZWave (beta) integration.", "domain": "", "etag_repository": "W/\"6d7f1a9e7121a596f63b524f3a97539e88d1168e3caaf44305519d23b020ba47\"", "full_name": "abmantis/ozw-network-visualization-card", "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"}, "category": "theme", "description": "Animated icons for default Home Assistant weather card", "domain": "", "etag_repository": "W/\"8b16a3d8963982b51ab7ce2e4f6a8ade05e119a968ccf72e9b72f70c7f1e0bf4\"", "full_name": "wowgamr/animated-weather-card", "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": {}, "category": "plugin", "description": "Custom Lovelace card for Budapest Public Transportation custom component", "domain": "", "etag_repository": "W/\"b1566a1bda4c24a5b942057a6733b24fb88c1ab4370a1415020b0fb5b66f7dcf\"", "full_name": "amaximus/bkk-stop-card", "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"}, "category": "plugin", "description": "FKF Budapest Garbage Collection Card for Home Assistant/Lovelace", "domain": "", "etag_repository": "W/\"a1f6b46b4bab20b79c49a56c35d5965a455d2d3ac1f2b4e98bf6ae5f68ab8cd6\"", "full_name": "amaximus/fkf-garbage-collection-card", "last_updated": "2022-01-31T19:30:26Z", "stargazers_count": 8, "topics": ["budapest", "lovelace-custom-card"], "last_fetched": 1644064205.03019, "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"}, "category": "plugin", "description": "Custom Lovelace card for Garbage Collection custom component", "domain": "", "downloads": 8155, "etag_repository": "W/\"996e97d15e2167e778455157ac4a6388ab1a750c6bead6454a3ef70e9a1babc8\"", "full_name": "amaximus/garbage-collection-card", "last_updated": "2022-06-03T06:27:21Z", "stargazers_count": 84, "topics": ["garbage-collection", "lovelace-custom-card", "ui-lovelace"], "last_fetched": 1665938548.463846, "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"}, "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/\"127a24b8458c0e4c587f2f0b5179a488112f76c82406d85f16f3877df6ccb367\"", "full_name": "AmoebeLabs/flex-horseshoe-card", "last_updated": "2022-08-09T07:08:53Z", "stargazers_count": 139, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1666451583.132796, "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"}, "category": "plugin", "description": "StarLine lovelace card for Home Assistant", "domain": "", "etag_repository": "W/\"00800d5048cd27b939c7c11db8140ede8a73742be5fb0bbd0e569a05b50b7f83\"", "full_name": "Anonym-tsk/lovelace-starline-card", "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"}, "category": "plugin", "description": "Minimalistic humidifier card for Home Assistant Lovelace UI", "domain": "", "downloads": 2228, "etag_repository": "W/\"fdf8fab899a70392742d35f472174e103566e4bd195da82b6fd806ce1c897644\"", "full_name": "artem-sedykh/mini-humidifier", "last_updated": "2022-06-14T14:43:58Z", "stargazers_count": 124, "topics": ["automation", "custom", "humidifier"], "last_fetched": 1666451583.559127, "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"}, "category": "plugin", "description": "Minimalistic climate card for Home Assistant Lovelace UI", "domain": "", "downloads": 2061, "etag_repository": "W/\"5b5dff5f2a73461aaadd559b79cc02e6dc8babd1e3c32bae5ae45110f69c0701\"", "full_name": "artem-sedykh/mini-climate-card", "last_updated": "2022-10-18T15:35:40Z", "stargazers_count": 172, "topics": ["automation", "climate", "climate-entity", "custom", "hacktoberfest2021"], "last_fetched": 1666451584.543614, "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}, "category": "plugin", "description": "Home Assistant Custom Card to show Zigbee2mqtt network map", "downloads": 16556, "etag_repository": "W/\"e856c861156893010c4d6758151f7f5e84958a958d2affd5d2cb484917809f1b\"", "full_name": "azuwis/zigbee2mqtt-networkmap", "last_updated": "2022-09-19T06:08:49Z", "stargazers_count": 139, "topics": ["zigbee2mqtt"], "last_fetched": 1666451583.342327, "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"}, "category": "plugin", "description": "Like a picture glance card, but for plant data", "domain": "", "etag_repository": "W/\"4a569664b4c2873d16a88bc408a485d3c336175f5ac0bad1ce8e834b5c7c0868\"", "full_name": "badguy99/PlantPictureCard", "last_updated": "2020-09-13T17:45:01Z", "stargazers_count": 9, "topics": ["image", "lovelace-card", "plants"], "last_fetched": 1653229979.811394, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202546107": {"repository_manifest": {}, "category": "plugin", "description": "Extras for the synthwave inspired theme for Home Assistant", "domain": "", "etag_repository": "W/\"26b24c2d96e0155425f319151d3e68b6ca8eb1226d83133dc38e68fac64d26ac\"", "full_name": "bbbenji/synthwave-hass-extras", "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}, "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/\"749bf16e175ea9fb528d8ad65dcaee2412bf917e00bc8b6e5290e56b146a11a1\"", "full_name": "ben8p/lovelace-tab-redirect-card", "last_updated": "2022-05-28T16:39:37Z", "stargazers_count": 9, "topics": ["lovelace-custom-card"], "last_fetched": 1665325192.446142, "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}, "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\"", "full_name": "benct/lovelace-battery-entity-row", "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}, "category": "plugin", "description": "GitHub repository sensor data on entity rows in Home Assistant's Lovelace UI", "domain": "", "downloads": 254, "etag_repository": "W/\"d090bfa1a67b13ed8223b82d81f96f038f97b31cd678f18373f2a388318cd0f7\"", "full_name": "benct/lovelace-github-entity-row", "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}, "category": "plugin", "description": "Show multiple entity states and attributes on entity rows in Home Assistant's Lovelace UI", "downloads": 28506, "etag_repository": "W/\"4bab84745b49c9c48152b5077f0afe41064adb3a82350e58e89fdf764ae1e030\"", "full_name": "benct/lovelace-multiple-entity-row", "last_updated": "2022-09-14T19:55:47Z", "stargazers_count": 533, "topics": ["attribute", "card", "entity", "entity-attribute", "entity-rows", "format", "multiple", "state"], "last_fetched": 1666451584.008105, "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}, "category": "plugin", "description": "Simple card for various robot vacuums in Home Assistant's Lovelace UI", "downloads": 11537, "etag_repository": "W/\"1b43497f29adb7655f12afe68625d207f423e14383109811a1828bc2b0c428c5\"", "full_name": "benct/lovelace-xiaomi-vacuum-card", "last_updated": "2022-07-09T12:55:39Z", "stargazers_count": 216, "topics": ["card", "roborock", "robot-vacuums", "vacuum", "xiaomi", "xiaomi-vacuum"], "last_fetched": 1665938558.526245, "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}, "category": "plugin", "description": "\ud83d\udca1 A Lovelace custom card for RGB lights", "domain": "", "downloads": 14372, "etag_repository": "W/\"4724b5c54b49d3c204e990d39b9e5bb2d9f3ae5ed4d62aa31ac73242979f174a\"", "full_name": "bokub/rgb-light-card", "last_updated": "2022-07-02T09:17:13Z", "stargazers_count": 323, "topics": ["lovelace-custom-card", "rgb-lights"], "last_fetched": 1666451584.349315, "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"}, "category": "plugin", "description": "Card that allows you to swipe throught multiple cards for Home Assistant Lovelace", "domain": "", "etag_repository": "W/\"607bcb341b80a7e432b2f35b67f960f02ddb85e773917ae4d00e6e26d89a4dab\"", "full_name": "bramkragten/swipe-card", "last_updated": "2022-07-20T01:28:57Z", "stargazers_count": 119, "last_fetched": 1666451584.261177, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192732636": {"repository_manifest": {}, "category": "plugin", "description": "Weather Card with animated icons for Home Assistant Lovelace", "domain": "", "etag_repository": "W/\"ab319b49e4bfcf996946fb99c5ba40b6157e60594152a5a1013d5c6cdb6ffd67\"", "full_name": "bramkragten/weather-card", "last_updated": "2022-08-08T06:35:42Z", "stargazers_count": 342, "last_fetched": 1666451584.232638, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194037195": {"repository_manifest": {}, "category": "plugin", "description": "A custom card for displaying information provided by Beerbolaget (https://github.com/Ceerbeerus/beerbolaget).", "domain": "", "etag_repository": "W/\"253d5767ad6f98a9b1cb1d5d022dcbb4dcaa83b8879c4e330a6717e1293085db\"", "full_name": "Ceerbeerus/beerbolaget-card", "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"}, "category": "plugin", "description": "\u23f0 Lovelace Card to Control Light Alarm Properties", "domain": "", "etag_repository": "W/\"8fb2ce4d2d7a7228619e7a512555516e0ded723877e32e5178853cbfd846f5f6\"", "full_name": "chaptergy/lightalarm-card", "last_updated": "2022-03-26T01:52:04Z", "stargazers_count": 31, "last_fetched": 1657362436.553463, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "143850865": {"repository_manifest": {}, "category": "plugin", "description": "This card give you a list of your wishlist items.", "domain": "", "etag_repository": "W/\"c2ae85f9c0a8bd15ca302a4ca67687069417558a56d85ba928c58c90d8e419ad\"", "full_name": "custom-cards/beer-card", "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}, "260526528": {"repository_manifest": {"name": "Dark Sky Rich Weather Card", "content_in_root": true, "filename": "lovelace-darksky-card.js", "render_readme": "true"}, "category": "plugin", "description": "Custom Dark Sky Weather plugin for HACS. This creates a rich weather card using the Dark Sky weather plugin.", "etag_repository": "W/\"6d38c2d7d7d9c413b468cce671bacce3ef20c200875841bb92ccb509991e463f\"", "full_name": "clayauld/lovelace-darksky-card", "last_updated": "2021-10-13T22:52:46Z", "stargazers_count": 14, "last_fetched": 1648839840.239747, "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"}, "category": "plugin", "description": "Customizable Animated Bar card for Home Assistant Lovelace", "downloads": 43279, "etag_repository": "W/\"c5e8f1fc844ad3fba4c70fbc20e2e90ed546a982da69f8d75c1efc0429578fd9\"", "full_name": "custom-cards/bar-card", "last_updated": "2022-07-21T00:09:02Z", "stargazers_count": 254, "last_fetched": 1666451584.805863, "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}, "category": "plugin", "description": null, "domain": "", "etag_repository": "W/\"81f7d71880fc2ce0487b647e69a0061b23a29f1d316e7d8f2db69543e3cf2ae5\"", "full_name": "custom-cards/bignumber-card", "last_updated": "2022-01-31T15:47:59Z", "stargazers_count": 91, "last_fetched": 1665325200.267709, "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"}, "category": "plugin", "description": "\u2747\ufe0f Lovelace button-card for home assistant", "downloads": 138463, "etag_repository": "W/\"f000b850fa6a31b28542fc585846f84e4f32ba983d0776619cbca306b624ef61\"", "full_name": "custom-cards/button-card", "last_updated": "2022-07-20T01:40:28Z", "stargazers_count": 1218, "last_fetched": 1666451585.019158, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164022050": {"repository_manifest": {}, "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": 3064, "etag_repository": "W/\"ad5f253cd12213c9f83813f0e889958198f8dc56914e72f31b22785f9ad96d4e\"", "full_name": "custom-cards/check-button-card", "last_updated": "2021-12-22T18:23:08Z", "stargazers_count": 96, "last_fetched": 1666451584.823284, "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"}, "category": "plugin", "description": "The card makes it possible to use gauges from https://canvas-gauges.com/", "domain": "", "downloads": 9507, "etag_repository": "W/\"5863b5067ad6ce6ffac5c345c7ad084bea17264ddbff6bbc35ed9889ef0d8b41\"", "full_name": "custom-cards/canvas-gauge-card", "last_updated": "2021-05-09T14:02:19Z", "stargazers_count": 110, "last_fetched": 1662801481.98127, "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"}, "category": "plugin", "description": "A custom component for displaying sensor values as cards or elements", "domain": "", "etag_repository": "W/\"ab068619a8e1a1f1daf202c54b72e4950ca26bef9a78f4f8b150d4e897c6e5e3\"", "full_name": "custom-cards/circle-sensor-card", "last_updated": "2022-06-02T04:10:16Z", "stargazers_count": 151, "last_fetched": 1665325203.943158, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180000010": {"repository_manifest": {}, "category": "plugin", "description": null, "domain": "", "downloads": 2742, "etag_repository": "W/\"1db0bb16628190355c20a63e323741b534dfa63f8451dc221a5487e4bacd8f76\"", "full_name": "custom-cards/cover-element", "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"}, "category": "plugin", "description": "\ud83e\uddf9 Declutter your lovelace configuration with the help of this card", "domain": "", "downloads": 11642, "etag_repository": "W/\"3cb88425f2713e239769b334ab5ef612ccdc30b53fd1da30e1d0fadece7ce58d\"", "full_name": "custom-cards/decluttering-card", "last_updated": "2022-07-20T07:37:39Z", "stargazers_count": 214, "last_fetched": 1666451585.367702, "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}, "category": "plugin", "description": "Dual gauge custom card for Lovelace in Home Assistant", "domain": "", "etag_repository": "W/\"2246c70ce1bc00466f5bcfe1efa361f5818c5b2bf5325a7d76b032ff74eb664c\"", "full_name": "custom-cards/dual-gauge-card", "last_updated": "2022-05-12T04:36:46Z", "stargazers_count": 120, "last_fetched": 1666451585.34615, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245461": {"repository_manifest": {}, "category": "plugin", "description": "Entity Attributes", "domain": "", "etag_repository": "W/\"e814617a3d3221aa977ac1e3b60935e24e47e66418a274e73608dab9f3bc0779\"", "full_name": "custom-cards/entity-attributes-card", "last_updated": "2021-06-05T21:05:54Z", "stargazers_count": 54, "last_fetched": 1665325205.405995, "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}, "category": "plugin", "description": null, "domain": "", "etag_repository": "W/\"56871975e597a2f1803fbd01241bcd671148c03ef889f13b27e2a75a42c518a4\"", "full_name": "custom-cards/gauge-card", "last_updated": "2022-05-01T20:12:53Z", "stargazers_count": 28, "last_fetched": 1665325206.516513, "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}, "category": "plugin", "description": null, "domain": "", "etag_repository": "W/\"ac28b109b98371ef13abd777461ea8c116e68cb81d7b71b54bab4bd7aa9bafba\"", "full_name": "custom-cards/group-card", "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": {}, "category": "plugin", "description": "A group element for picture-elements with dynamic toggle capability", "domain": "", "downloads": 749, "etag_repository": "W/\"b04414e79a96ef81379c61272566ed79709baf2edccc558bea2d33a81b01cc5c\"", "full_name": "custom-cards/group-element", "last_updated": "2022-04-17T08:36:35Z", "stargazers_count": 51, "last_fetched": 1665325208.947702, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151318225": {"repository_manifest": {}, "category": "plugin", "description": "Entity row for lights with sliders for adjusting different values based on features", "domain": "", "etag_repository": "W/\"c35ee4d93fbe050180f275b46afec288cdbf98f4c65e069927eb76f3747d3630\"", "full_name": "custom-cards/light-entity-row", "last_updated": "2021-10-20T09:53:08Z", "stargazers_count": 45, "last_fetched": 1653230000.910034, "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"}, "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/\"f3a28f1d1041de2e5fddc35c0e986d2a128ec615d9b2ade723b80e2fcff6390d\"", "full_name": "custom-cards/flex-table-card", "last_updated": "2022-09-20T10:33:08Z", "stargazers_count": 127, "topics": ["data-table", "data-visualization", "flexible-table", "high-configurability", "javascript", "single-file", "table-visualization"], "last_fetched": 1665938570.300517, "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}, "category": "plugin", "description": "Displays a card showing Nintendo Switch games that are on sale from your wish list.", "domain": "", "etag_repository": "W/\"573ffaeed2e505c0ef114a6857a7ca636395ec02ed088860b5dc16abda705133\"", "full_name": "custom-cards/nintendo-wishlist-card", "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": {}, "category": "plugin", "description": "\ud83d\udcb5 Personal Capital Card", "domain": "", "etag_repository": "W/\"31c9d4d4d0a5ac723c5fb3d0d983c755fd064c9fe54e127ef6541b6187fd22b0\"", "full_name": "custom-cards/pc-card", "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": {}, "category": "plugin", "description": null, "domain": "", "etag_repository": "W/\"fba7860497e7c045423ccbba53ed5f3db34eacf5214a5293431b03ff0c02d3ce\"", "full_name": "custom-cards/plan-coordinates", "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"}, "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/\"e76823dd383e14fbf7742e0953de8c1a8a05df28e966c9c9936612e6093e6e64\"", "full_name": "custom-cards/secondaryinfo-entity-row", "last_updated": "2021-06-05T21:12:36Z", "stargazers_count": 146, "last_fetched": 1666451586.177825, "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"}, "category": "plugin", "description": "Custom card for the RMV component.", "domain": "", "etag_repository": "W/\"ccb8863600316eac259aed16af91883317bbb1502617f7361f11ff6a9ce5379f\"", "full_name": "custom-cards/rmv-card", "last_updated": "2020-07-08T15:41:50Z", "stargazers_count": 13, "last_fetched": 1665938575.063554, "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"}, "category": "plugin", "description": "Spotify playlist card for Home Assistant card", "domain": "", "etag_repository": "W/\"a2037f14d307016d5d6f8d2993a14ac8246fd2c614e6ec37cc2df805f246bcee\"", "full_name": "custom-cards/spotify-card", "last_updated": "2022-07-20T01:26:09Z", "stargazers_count": 266, "last_fetched": 1665938576.614514, "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"}, "category": "plugin", "description": "\ud83d\udee0 group multiple cards into one card without the borders", "domain": "", "downloads": 24962, "etag_repository": "W/\"1a2c139e81ad1494fed22e346dddfe62eb31b7c5d97c8773383de0a7b74b303a\"", "full_name": "custom-cards/stack-in-card", "last_updated": "2022-07-20T01:39:48Z", "stargazers_count": 138, "last_fetched": 1666451586.15146, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "185304888": {"repository_manifest": {}, "category": "plugin", "description": null, "domain": "", "downloads": 93, "etag_repository": "W/\"940e5f72da0c749063c21232d281699d9bc1af9ee6834e806f1c0bbc67a1f4f1\"", "full_name": "custom-cards/text-action-element", "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}, "category": "plugin", "description": "A custom component for displaying camera feeds in the style of a surveillance system.", "domain": "", "etag_repository": "W/\"317ea287652cc714684bd6147015938ccda57d0f0346281ec4ed6747c8931e03\"", "full_name": "custom-cards/surveillance-card", "last_updated": "2022-10-19T15:40:19Z", "stargazers_count": 179, "topics": ["camera", "motion", "security"], "last_fetched": 1666451586.120921, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203294272": {"repository_manifest": {}, "category": "plugin", "description": "All your unused entities in a list", "domain": "", "etag_repository": "W/\"a3fccf5afdf192ed4172c5667d573be6bd1231a9bc3d24c18ef5401baf8eaa58\"", "full_name": "custom-cards/unused-card", "last_updated": "2022-02-12T12:34:41Z", "stargazers_count": 25, "last_fetched": 1653230007.975744, "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}, "category": "plugin", "description": "Home Assistant Lovelace card to lock entire cards behind passwords or prompts.", "domain": "", "etag_repository": "W/\"aa8c76b1a76511eeecce66dd177062310796e556382c4c39b73b5140efa8cd54\"", "full_name": "CyrisXD/love-lock-card", "last_updated": "2022-01-17T23:16:50Z", "stargazers_count": 103, "last_fetched": 1665325215.338395, "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}, "category": "plugin", "description": "Home Assistant Lovelace custom card to use with Spain electricity hourly pricing (PVPC) integration", "domain": "", "downloads": 2063, "etag_repository": "W/\"7924b76c4fbbf9063cb971e635b0546c8092c98838a57b66d0f73751af780139\"", "full_name": "danimart1991/pvpc-hourly-pricing-card", "last_updated": "2022-06-15T13:47:27Z", "stargazers_count": 54, "topics": ["esios", "graphics", "lovelace-card", "lovelace-custom-card", "pvpc", "ree"], "last_fetched": 1662801495.009763, "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"}, "category": "plugin", "description": "Lovelace card for listing departures from Rejseplanen sensors, in the style of S-Tog departure boards.", "domain": "", "etag_repository": "W/\"ff7bacd632049630cfd4d2e67189ed6cc25dca5aecc1358ad6f87a62c05303cb\"", "full_name": "DarkFox/rejseplanen-stog-card", "last_updated": "2022-07-20T11:12:08Z", "stargazers_count": 1, "topics": ["denmark", "lovelace-card", "rejseplanen", "rejseplanen-sensors"], "last_fetched": 1661584811.711443, "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"]}, "category": "plugin", "description": "Custom Animated Weather Card for any weather provider", "domain": "", "etag_repository": "W/\"4aaba29fdd8608bff74089cc64cd4680fb0978dcd04a62a0e7c322c3f15683cf\"", "full_name": "DavidFW1960/bom-weather-card", "last_updated": "2022-06-17T02:12:09Z", "stargazers_count": 120, "topics": ["bom", "weather-forecast"], "last_fetched": 1666451586.491211, "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"}, "category": "plugin", "description": "Lovelace card for listing departures from Rejseplanen sensors", "domain": "", "etag_repository": "W/\"4fd9d9ffe9972b884d66fed02b870f8ac4e6357d6b5eb8386590244997ed6bad\"", "full_name": "DarkFox/rejseplanen-card", "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}, "category": "plugin", "description": "Lovelace pie chart card that displays current energy usage", "domain": "", "etag_repository": "W/\"194ea82a8e02ed8639d583821b2ec65a0efd7a10032c540098de4f0602cc5f4f\"", "full_name": "DBa2016/power-usage-card-regex", "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"}, "category": "plugin", "description": "A card giving richer public transit display using NextBus sensors.", "domain": "", "downloads": 270, "etag_repository": "W/\"d7489543badfd31ad6bf9178def497486f5b63dcb031da189dff3ef9faebf984\"", "full_name": "dcramer/lovelace-nextbus-card", "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"}, "category": "plugin", "description": "Shutter card for Home Assistant Lovelace UI", "domain": "", "downloads": 12085, "etag_repository": "W/\"bd5aa68c324e85df0710bf2391125ec99015d3ca705163d4cc1ffd9cc4c4a3e2\"", "full_name": "Deejayfool/hass-shutter-card", "last_updated": "2022-06-01T18:07:31Z", "stargazers_count": 166, "last_fetched": 1666451586.772568, "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"}, "category": "plugin", "description": "Air Purifier card for Home Assistant Lovelace UI", "domain": "", "downloads": 4740, "etag_repository": "W/\"4bae027cefd2d83973fe4a0db414ceeb67c19e39bce994929dde7a0d77a8ea45\"", "full_name": "denysdovhan/purifier-card", "last_updated": "2022-10-16T09:18:59Z", "stargazers_count": 165, "topics": ["air-purifier", "purifier", "smart-home"], "last_fetched": 1666451586.934777, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193262086": {"repository_manifest": {}, "category": "plugin", "description": "Home assistant remote control", "domain": "", "etag_repository": "W/\"5ce81fab4d3af28ab7b0beffa64e6811e13a62fb2a70a91d1a785b872aba9c6d\"", "full_name": "dimagoltsman/content-card-remote-control", "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": {}, "category": "plugin", "description": "Custom Lovelace card that displays ZHA network and device information", "domain": "", "etag_repository": "W/\"cdafcf408eff1e7b424d492539f5da685f3bd49edf551443f99814925022e0b3\"", "full_name": "dmulcahey/zha-network-card", "last_updated": "2020-11-25T23:16:49Z", "stargazers_count": 71, "last_fetched": 1661584818.238151, "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"}, "category": "plugin", "description": "Vacuum cleaner card for Home Assistant Lovelace UI", "downloads": 22726, "etag_repository": "W/\"44055ae55467de3e541ea22bcf7161d6b261fd0c9b39ad13dda39d1ad8627b9d\"", "full_name": "denysdovhan/vacuum-card", "last_updated": "2022-10-20T18:19:45Z", "stargazers_count": 612, "topics": ["robot-vacuum", "vacuum"], "last_fetched": 1666451586.928059, "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}, "category": "plugin", "description": "Generic Remote control card for HACS", "etag_repository": "W/\"bfe3113078aa99ad8833df2e2f4a1bc7c9646a9388a1953e9971fbbf732640fd\"", "full_name": "dimagoltsman/generic-remote-control-card", "last_updated": "2022-07-29T08:00:05Z", "stargazers_count": 71, "last_fetched": 1665325224.381449, "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}, "category": "plugin", "description": "a refreshable picture card for HACS", "domain": "", "etag_repository": "W/\"4d877606c88970f31f1971a833d8afdd382bfa4a5801416eaf772055c9a3fb94\"", "full_name": "dimagoltsman/refreshable-picture-card", "last_updated": "2022-10-04T08:24:29Z", "stargazers_count": 15, "last_fetched": 1665325225.708126, "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"}, "category": "plugin", "description": "A Lovelace card showing air quality data from airvisual.com. Requires the AirVisual component.", "domain": "", "etag_repository": "W/\"2ecef23ef4b66805f2966ada26c748c0f2277dfced6c29f95abfe0ec455f406b\"", "full_name": "dnguyen800/air-visual-card", "last_updated": "2021-12-03T01:41:18Z", "stargazers_count": 74, "topics": ["air-quality", "air-visual"], "last_fetched": 1662801504.665306, "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"}, "category": "plugin", "description": ":point_up_2: Swipe Glance Card", "domain": "", "downloads": 1777, "etag_repository": "W/\"b193543bd3855b9243ccf4444824d67ca72b6a78b3adc36ac1eb0463f2b137ff\"", "full_name": "dooz127/swipe-glance-card", "last_updated": "2022-07-20T20:30:52Z", "stargazers_count": 11, "topics": ["automation"], "last_fetched": 1661584819.414711, "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}, "category": "plugin", "description": "\u7528\u4e8eLovelace\u7684\u5c0f\u7c73\u7a7a\u6c14\u51c0\u5316\u5668\u5361\u7247", "domain": "", "etag_repository": "W/\"075bcd8ee0ea615f4674939b08ecb1ccf729392feb141ed07884ca121edc4b86\"", "full_name": "fineemb/lovelace-air-filter-card", "last_updated": "2021-09-13T17:10:23Z", "stargazers_count": 13, "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"}, "category": "plugin", "description": "A simple lovelace multiline text input card", "domain": "", "etag_repository": "W/\"9d9e34f8868196ecba91cd38706fca5955c3cf9c59229043690dc2015c34ecd0\"", "full_name": "faeibson/lovelace-multiline-text-input-card", "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"]}, "category": "plugin", "description": "\u8f66\u8f86\u4eea\u8868\u76d8", "domain": "", "etag_repository": "W/\"2544289ec2bfb4dd4fe67da3a14fa0738d3694391a67db5c5d4f5a2618b2129e\"", "full_name": "fineemb/lovelace-car-card", "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"}, "category": "plugin", "description": "A Lovelace card to display Norwegian mail delivery days", "domain": "", "downloads": 1475, "etag_repository": "W/\"822a805bf2a2ca6a0a96721597c55d119984ded354c2484c137e1b8ff21b21d7\"", "full_name": "ezand/lovelace-posten-card", "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"]}, "category": "plugin", "description": "\u590d\u523b\u5b98\u65b9Lovelace\u5730\u56fe\u5361\u7247,\u57fa\u4e8e\u9ad8\u5fb7\u5730\u56fe", "domain": "", "etag_repository": "W/\"58dac26bd3960a0a3998e0ec804c60194a9d0f73f4a29a6f2170fafaa624bb38\"", "full_name": "fineemb/lovelace-cn-map-card", "last_updated": "2022-06-03T03:35:37Z", "stargazers_count": 39, "last_fetched": 1666451587.70907, "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"]}, "category": "plugin", "description": "\u8fd9\u662f\u4e00\u4e2a\u9002\u7528\u4e8e\u5f69\u4e91\u5929\u6c14\u96c6\u6210\u7684Lovelace\u5361\u7247", "domain": "", "etag_repository": "W/\"55ec5aa1ea5ecd044bc56f3e0ae4453590c3f2e83d4b3598aaa2dd65739edb76\"", "full_name": "fineemb/lovelace-colorfulclouds-weather-card", "last_updated": "2022-06-02T18:43:02Z", "stargazers_count": 34, "topics": ["lovelace-custom-card", "weather"], "last_fetched": 1665938594.602737, "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"]}, "category": "plugin", "description": "\u6590\u8bafDC1\u6392\u63d2\u7684Lovelace\u5361\u7247", "domain": "", "etag_repository": "W/\"af9016e9700053334c3d2ce9a45e38b4003162a7dc1f5e4d6eb9d8e65c36cac5\"", "full_name": "fineemb/lovelace-dc1-card", "last_updated": "2020-08-26T08:19:40Z", "stargazers_count": 19, "last_fetched": 1653230026.192545, "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}, "category": "plugin", "description": "Xiaomi Smartmi Fan Lovelace card for HASS/Home Assistant.", "domain": "", "etag_repository": "W/\"d723e2dd28943967749d69a70268bc3d4c5f0fbc9c9d82dc3db0cad439f31812\"", "full_name": "fineemb/lovelace-fan-xiaomi", "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"}, "category": "plugin", "description": "Thermostat Lovelace card", "domain": "", "etag_repository": "W/\"bab2ccac3c6aabdd8cc1989bbe48b662c61830aa61f891c8ea79aacbc8f7a314\"", "full_name": "fineemb/lovelace-thermostat-card", "last_updated": "2022-06-02T18:36:47Z", "stargazers_count": 86, "last_fetched": 1665325234.267648, "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"}, "category": "plugin", "description": "Provides a customizable button row for binary entities in Home Assistant", "domain": "", "etag_repository": "W/\"471d608ab06766c22940e4ed7d26d89f5276ae1197ab04712cdf48003fc90c13\"", "full_name": "finity69x2/binary-control-button-row", "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": {}, "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/\"ea48248778d8f01705cd53d1cb1704c3a7a9c7f0e075975a5aab9e615bacfdbb\"", "full_name": "finity69x2/fan-control-entity-row", "last_updated": "2022-09-12T22:09:11Z", "stargazers_count": 62, "last_fetched": 1665325235.626591, "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"}, "category": "plugin", "description": "button row for controlling open/close covers in Home Assistant", "domain": "", "etag_repository": "W/\"482d2f96fedbc4c08a660506f5953225dff920c9465fcac061a62a5e7cd3c5f8\"", "full_name": "finity69x2/cover-control-button-row", "last_updated": "2021-07-29T21:53:08Z", "stargazers_count": 11, "topics": ["cover", "plugin"], "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"}, "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\"", "full_name": "finity69x2/cover-position-preset-row", "last_updated": "2021-07-29T21:44:05Z", "stargazers_count": 15, "topics": ["cover", "lovelace-custom-card", "plugin"], "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"}, "category": "plugin", "description": "Provides a means to program 3 preset brightness settings for dimmable lights in Home Assistant", "domain": "", "etag_repository": "W/\"90444a8409ded0592694e85e2ee44b1b6378a3f022ac58e4e3ce34c959f45c55\"", "full_name": "finity69x2/light-brightness-preset-row", "last_updated": "2022-06-04T07:54:59Z", "stargazers_count": 24, "last_fetched": 1665325237.833351, "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}, "category": "plugin", "description": "Allows preloading of Lovelace cards as a work around for changes in Home Assistant 0.107", "domain": "", "etag_repository": "W/\"c283b069259438fad8ceaf5e294767c7ea06e9962e33018045fd13b3f6b8debd\"", "full_name": "gadgetchnnel/lovelace-card-preloader", "last_updated": "2021-04-30T16:48:45Z", "stargazers_count": 19, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "182113743": {"repository_manifest": {}, "category": "plugin", "description": "A custom Lovelace text input row for use in entities cards", "domain": "", "etag_repository": "W/\"2abcc46e64771af40c1de34dfa38d592fa4ef1b8a1db6ca8bbcf18fb8dc91f17\"", "full_name": "gadgetchnnel/lovelace-text-input-row", "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}, "category": "plugin", "description": "Custom Lovelace card which allows Jinja2 templates to be applied to other cards", "domain": "", "etag_repository": "W/\"3f9d47bdcaa555d0be692596f559240a4a37bf89568918b018a65d63cc5f2e5d\"", "full_name": "gadgetchnnel/lovelace-card-templater", "last_updated": "2022-07-20T22:26:08Z", "stargazers_count": 85, "last_fetched": 1662898019.461241, "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}, "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/\"107a760a7f048efb8346e06fcf31cba062e2d1eeae391a6770d2b429083f4c5a\"", "full_name": "gadgetchnnel/lovelace-home-feed-card", "last_updated": "2022-07-20T22:08:22Z", "stargazers_count": 178, "last_fetched": 1665938604.947351, "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"}, "category": "plugin", "description": "\ud83d\udd70\ufe0f Time Picker Card for Home Assistant's Lovelace UI", "domain": "", "downloads": 8441, "etag_repository": "W/\"40c99b7094aa23aaeeed32452c1305ef37342f98375745f3bd1458d088d42138\"", "full_name": "GeorgeSG/lovelace-time-picker-card", "last_updated": "2022-07-21T01:32:42Z", "stargazers_count": 159, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1665938605.932731, "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"}, "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/\"3070859e2d6757eab7a09bf168ab151fbcd92970a3eeff0b97cf1d43a7883531\"", "full_name": "gurbyz/power-wheel-card", "last_updated": "2022-06-06T07:43:11Z", "stargazers_count": 140, "topics": ["energy", "solar-panels"], "last_fetched": 1665325246.008469, "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": "0.92"}, "category": "plugin", "description": "Lovelace Departure Card for the HASL Platform", "domain": "", "etag_repository": "W/\"5bd002adf74579a468e652e8002cb2b9e33af619a0d9d1862e76b733ff5bc1a7\"", "full_name": "hasl-sensor/lovelace-hasl-departure-card", "last_updated": "2022-01-08T23:27:15Z", "stargazers_count": 6, "topics": ["departures", "hasl", "sl", "stockholms-lokaltrafik"], "last_fetched": 1641895781.615156, "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"}, "category": "plugin", "description": "Lovelace Traffic Status Card for the HASL Platform", "domain": "", "etag_repository": "W/\"287db3f3718be02514d2e7959c933de3d9fc18910396cf456ae5591824beed85\"", "full_name": "hasl-sensor/lovelace-hasl-traffic-status-card", "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}, "category": "plugin", "description": "Replace input_number sliders with plus and minus buttons", "domain": "", "etag_repository": "W/\"3644e78b77624b022ae6a57c158c12637884fa83c2f9d84028051446dddbaea0\"", "full_name": "htmltiger/numberbox-card", "last_updated": "2022-09-28T12:01:14Z", "stargazers_count": 63, "topics": ["input", "lovelace-card", "lovelace-cards", "lovelace-custom-card", "number", "numberbox-card", "slider"], "last_fetched": 1666451588.705787, "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"}, "category": "plugin", "description": "\ud83d\udcdd Templatable Lovelace Configurations", "domain": "", "downloads": 18416, "etag_repository": "W/\"1e0a37640c58cb73f03d4bc394bba24489834db28135ecc9f9ba01ddd6dd4af6\"", "full_name": "iantrich/config-template-card", "last_updated": "2022-09-14T11:51:15Z", "stargazers_count": 283, "last_fetched": 1666451588.883728, "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}, "category": "plugin", "description": "\ud83c\udfa7 Podcast Player Card", "domain": "", "etag_repository": "W/\"739ace3027accc781d0077f47d0c969e3e03811aa25d983a9c85998ef77dc859\"", "full_name": "iantrich/podcast-card", "last_updated": "2021-08-11T16:06:20Z", "stargazers_count": 21, "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"}, "category": "plugin", "description": "\ud83d\udd12 Apply restrictions to Lovelace cards", "domain": "", "downloads": 6182, "etag_repository": "W/\"b37882e8e96c3246ad934047ccdc0d67080107b25d3b850a13d00679e72818e7\"", "full_name": "iantrich/restriction-card", "last_updated": "2022-07-20T22:54:12Z", "stargazers_count": 161, "topics": ["security"], "last_fetched": 1665325251.358734, "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"}, "category": "plugin", "description": "\ud83d\udcfa Roku Remote Card", "domain": "", "downloads": 4719, "etag_repository": "W/\"62f07c5563d798735605de7b511869404de1faeb76353479e3ccd7f57442e3d9\"", "full_name": "iantrich/roku-card", "last_updated": "2022-07-20T17:14:14Z", "stargazers_count": 94, "topics": ["roku"], "last_fetched": 1665325252.337561, "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}, "category": "plugin", "description": "\ud83d\uddc2 Text Divider Row", "domain": "", "downloads": 5513, "etag_repository": "W/\"c519aff8b1fc39876bd856eb26a889d45ec3f4ba79292fd7b41d890206c625e1\"", "full_name": "iantrich/text-divider-row", "last_updated": "2022-07-21T03:51:59Z", "stargazers_count": 66, "last_fetched": 1665325252.587262, "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"}, "category": "plugin", "description": "\u2b55 Radial Menu Element", "domain": "", "downloads": 2265, "etag_repository": "W/\"69e7519c673caf688950adb0086e6346e82ad7af945cb9766007028f5efb7d5d\"", "full_name": "iantrich/radial-menu", "last_updated": "2022-03-13T20:58:45Z", "stargazers_count": 58, "last_fetched": 1665325250.974435, "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}, "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/\"3dc6c4a96daee694fadb05a7e79aae6871b06f10e7ba07236a641a27952eeba1\"", "full_name": "Imbuzi/meteo-france-weather-card", "last_updated": "2022-06-01T07:43:18Z", "stargazers_count": 23, "topics": ["animated-icons", "lovelace-card", "meteo-france", "weather"], "last_fetched": 1665325254.906651, "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"}, "category": "plugin", "description": "A Lightning Detection Display Card for Home Assistant Lovelace", "domain": "", "downloads": 1819, "etag_repository": "W/\"f6bbea8139ce70226913551b0c4860623293b9ba4c55d264e9ff846532cded8a\"", "full_name": "ironsheep/lovelace-lightning-detector-card", "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"}, "category": "plugin", "description": "Xiaomi Smartmi Fan Lovelace card with CSS fan animation", "domain": "", "downloads": 2102, "etag_repository": "W/\"757a7bc00eff6c35c85baadd6b966abbe6b5dfde2602eed60312ffe3222d5b2a\"", "full_name": "ikaruswill/lovelace-fan-xiaomi", "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"}, "category": "plugin", "description": "A Raspberry Pi status display Card for Home Assistant Lovelace", "domain": "", "downloads": 16196, "etag_repository": "W/\"8d673c860896b7e222ec3d7e0c001849de7955f05f25bea543cab1683300ee99\"", "full_name": "ironsheep/lovelace-rpi-monitor-card", "last_updated": "2022-07-21T04:50:21Z", "stargazers_count": 95, "topics": ["lovelace-card", "lovelace-custom-card", "raspberry-pi"], "last_fetched": 1665938618.495343, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164887047": {"repository_manifest": {}, "category": "plugin", "description": "A Lovelace custom card for custom component Krisinformation is Home Assistant", "domain": "", "etag_repository": "W/\"0de41a7104dc59fcc5940a7c5eface92b319f0eedd907b7927800a115485a484\"", "full_name": "isabellaalstrom/krisinfo-card", "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": {}, "category": "plugin", "description": "A card to track chores and tasks in Grocy.", "etag_repository": "W/\"00b477a7428b5bf15f837131de4d459cf25fe63b2a308a07908e71e9d236c568\"", "full_name": "isabellaalstrom/lovelace-grocy-chores-card", "last_updated": "2022-09-11T20:00:03Z", "stargazers_count": 85, "last_fetched": 1665938618.511295, "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"}, "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/\"7b8171e4d115d1870e7f2cd8836ad36ff589e08c35f87364c816caf6086f6393\"", "full_name": "iswitch/ha-yandex-icons", "last_updated": "2022-06-10T22:05:51Z", "stargazers_count": 49, "topics": ["icon-pack", "icons", "media-player", "yandex"], "last_fetched": 1665325257.502647, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245159052": {"repository_manifest": {"name": "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": 4001, "etag_repository": "W/\"e0039f9e205c805112f01e5dd8bf4e578785ea9d50bd3fec0a22c513f237f037\"", "full_name": "jcwillox/lovelace-canary", "last_updated": "2022-09-16T06:49:01Z", "stargazers_count": 38, "topics": ["canary-card", "extensions"], "last_fetched": 1666451589.480496, "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"}, "category": "plugin", "description": "Adds highly configurable buttons that use actions and per-state styling.", "downloads": 11538, "etag_repository": "W/\"75a43286c91fc74c095e91f609cba888696c9cd3ee5d7d6480299605333a1f76\"", "full_name": "jcwillox/lovelace-paper-buttons-row", "last_updated": "2022-09-05T03:37:34Z", "stargazers_count": 160, "topics": ["actions", "buttons", "haptic", "paper"], "last_fetched": 1666451589.624626, "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"}, "category": "plugin", "description": "A Lovelace Card for visualizing power distributions.", "domain": "", "downloads": 2100, "etag_repository": "W/\"5acaffce0f793f8608994f41d821be46198cb55cde6b115d971f24f19d23ec6d\"", "full_name": "JonahKr/power-distribution-card", "last_updated": "2022-09-15T16:18:24Z", "stargazers_count": 117, "topics": ["e3dc", "lovelace-card"], "last_fetched": 1665325262.64149, "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}, "category": "plugin", "description": "HA Lovelace Card for iRobot Roomba Vacuum Cleaner leveraging the rest980 Docker Image", "domain": "", "etag_repository": "W/\"53fa15a7e1be28a558a879ff67fcd73e5dacfe8aa008b37024212d68f96d0e00\"", "full_name": "jeremywillans/lovelace-roomba-vacuum-card", "last_updated": "2022-07-07T21:52:13Z", "stargazers_count": 33, "topics": ["irobot", "irobot-roomba", "lovelace-custom-card", "vacuum"], "last_fetched": 1662801540.055512, "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"}, "category": "plugin", "description": "Home Assistant Lovelace card card for the Entur public transport component.", "domain": "", "etag_repository": "W/\"c009af564b1f4e76e62752b32d18e02be422ca82ccbc2586956eb30bb3dff75e\"", "full_name": "jonkristian/entur-card", "last_updated": "2022-01-27T09:42:11Z", "stargazers_count": 39, "topics": ["entur", "transportation"], "last_fetched": 1661584857.224031, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "148520838": {"repository_manifest": {}, "category": "plugin", "description": "Minimalistic media card for Home Assistant Lovelace UI", "domain": "", "downloads": 52454, "etag_repository": "W/\"f0bae0293141cbb7afb83a9014bdaf85d04f67d16679237e5d2f0983d623b21d\"", "full_name": "kalkih/mini-media-player", "last_updated": "2022-07-20T11:56:51Z", "stargazers_count": 1162, "topics": ["automation", "custom", "media-player", "sonos"], "last_fetched": 1666451590.326731, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "172998062": {"repository_manifest": {}, "category": "plugin", "description": "Minimalistic weather card for Home Assistant", "domain": "", "downloads": 15024, "etag_repository": "W/\"24af6879b37c5c87d9eb2aec25b0ef848ca0e96f140e5095cdeddf57a0eab46f\"", "full_name": "kalkih/simple-weather-card", "last_updated": "2022-05-27T21:10:15Z", "stargazers_count": 199, "topics": ["weather"], "last_fetched": 1665325266.858547, "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"}, "category": "plugin", "description": "A Home Assistant card for Steam integrations", "domain": "", "etag_repository": "W/\"d8b81234b0915580f106fc041f0727a51200035419de0a481cefa181931fcc98\"", "full_name": "Kibibit/kb-steam-card", "last_updated": "2022-06-19T17:39:49Z", "stargazers_count": 22, "topics": ["card", "steam"], "last_fetched": 1662801547.623419, "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"}, "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\"", "full_name": "konnectedvn/lovelace-vertical-slider-cover-card", "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"}, "category": "plugin", "description": "Make your Home Assistant browser fullscreen with one tap.", "domain": "", "downloads": 1812, "etag_repository": "W/\"d97b47386d456b1b84f941f5ba4010f8f2956872fdbaa50bfa3f7b89204adcc8\"", "full_name": "KTibow/fullscreen-card", "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": {}, "category": "plugin", "description": "fitbit-card for lovelace", "domain": "", "downloads": 1853, "etag_repository": "W/\"32a4dbea00b7b1b40fdce1addcb8185c2954c101fcda53e2c05a23028627543f\"", "full_name": "ljmerza/fitbit-card", "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": {}, "category": "plugin", "description": "Track your repo issues, starts, forks, and pull requests", "domain": "", "etag_repository": "W/\"e1a5335ca7eed3790109eb28e787d7d882ba160a9057b06d2fd0d444f42606df\"", "full_name": "ljmerza/github-card", "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": {}, "category": "plugin", "description": "our groceries lovelace card", "domain": "", "etag_repository": "W/\"6586a8435e989a617b827bd819d858081abf4a380329a86b86dc94df0be1f5db\"", "full_name": "ljmerza/our-groceries-card", "last_updated": "2022-06-02T03:51:23Z", "stargazers_count": 26, "last_fetched": 1665325273.917989, "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"}, "category": "plugin", "description": "Control any light or switch entity", "domain": "", "downloads": 21468, "etag_repository": "W/\"fa28628c4ba9ed5030bfba3878e980b2be7b5ec54a0d17d94f090518ba7577e5\"", "full_name": "ljmerza/light-entity-card", "last_updated": "2022-06-02T03:50:05Z", "stargazers_count": 167, "last_fetched": 1665325273.197078, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "175727366": {"repository_manifest": {"name": "Reddit Card", "render_readme": true, "content_in_root": true, "filename": "reddit-card.js"}, "category": "plugin", "description": "Reddit Card for Home Assistant", "domain": "", "downloads": 626, "etag_repository": "W/\"78f903aab7f4c6f0a94866867f7470f45f9cf84a092bea7a4993ed06f8759e7c\"", "full_name": "ljmerza/reddit-card", "last_updated": "2022-07-11T21:45:30Z", "stargazers_count": 9, "last_fetched": 1657789339.042662, "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"}, "category": "plugin", "description": "Show Tracking Numbers from the Email Sensor for Home Assistant", "domain": "", "downloads": 733, "etag_repository": "W/\"29794758529ff549d9010c51b4b9860f7be2983c3c056ba9c325f873fb2e3bef\"", "full_name": "ljmerza/tracking-number-card", "last_updated": "2022-10-12T16:26:30Z", "stargazers_count": 17, "last_fetched": 1665938636.078935, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236945951": {"repository_manifest": {}, "category": "plugin", "description": "Graph of Buienradars rain forecast ", "domain": "", "downloads": 3021, "etag_repository": "W/\"01c3b6ecaf621c36fafabb9651f90afbcf3e772894865450c6ab50072aef9aa7\"", "full_name": "lukevink/lovelace-buien-rain-card", "last_updated": "2020-05-01T14:26:54Z", "stargazers_count": 45, "topics": ["buienradar", "chartjs", "forecast", "graph"], "last_fetched": 1666451591.137774, "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"}, "category": "plugin", "description": "show travel times for you travel time sensors", "domain": "", "downloads": 1013, "etag_repository": "W/\"c8baff215c329cfb350abff9020c66b0a16ec5f5d4feca5cf050d5b7fcf668ab\"", "full_name": "ljmerza/travel-time-card", "last_updated": "2022-06-02T03:55:39Z", "stargazers_count": 21, "last_fetched": 1661584869.637249, "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}, "category": "plugin", "description": "Remote Control for LG TV WebOS", "etag_repository": "W/\"249714182403434e2623ea4e531af001ab5a42984e53093e6be5aa018cda1ef1\"", "full_name": "madmicio/LG-WebOS-Remote-Control", "last_updated": "2022-09-27T18:02:37Z", "stargazers_count": 242, "last_fetched": 1665325277.725344, "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}, "category": "plugin", "description": "channel pad for LG TV Remote control", "domain": "", "etag_repository": "W/\"70a99e87fd13ac0de91e5634885c54f85a68740a56fac93f3bdb3129c0013f70\"", "full_name": "madmicio/channel-pad", "last_updated": "2020-05-28T19:17:53Z", "stargazers_count": 13, "topics": ["channel-pad", "lg", "tv-remote"], "last_fetched": 1662801555.981062, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187501032": {"repository_manifest": {"name": "FireTV Remote Card", "content_in_root": true}, "category": "plugin", "description": "\ud83d\udcfa FireTV Remote Card", "domain": "", "etag_repository": "W/\"cd41f35a3e71849ea714e9700812cf673f72ea6f3d69926126422d43f43c406e\"", "full_name": "marrobHD/firetv-card", "last_updated": "2022-07-13T16:58:11Z", "stargazers_count": 27, "topics": ["firetv-card", "lovelace-card", "lovelace-firetv"], "last_fetched": 1665325282.904316, "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}, "category": "plugin", "description": "\ud83d\udd0a Rotel Remote Card", "domain": "", "etag_repository": "W/\"3d13b38b008a0d97c35e0a943776c6bceff293316b9399d64447e08971badcb8\"", "full_name": "marrobHD/rotel-card", "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}, "category": "plugin", "description": "\ud83d\udcfa TV Remote Card", "domain": "", "etag_repository": "W/\"34450352a91979ff566690bfd2b30a05fc21fdf2f1ad902a1369722f1bda32b6\"", "full_name": "marrobHD/tv-card", "last_updated": "2022-07-13T19:23:52Z", "stargazers_count": 116, "topics": ["homeassistant-tv-card", "lovelace-card", "tv-card"], "last_fetched": 1666451591.621234, "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"}, "category": "plugin", "description": "Select List Card displays an input_select entity as a list in lovelace", "domain": "", "downloads": 6800, "etag_repository": "W/\"6c75421d3e0df9db35a21004dacd58a804d3d6901ccce512ca798f6af729176b\"", "full_name": "mattieha/select-list-card", "last_updated": "2022-07-21T04:13:07Z", "stargazers_count": 52, "topics": ["lovelace-custom-card"], "last_fetched": 1665938646.517051, "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}, "category": "plugin", "description": "Battery state card for Home Assistant", "downloads": 19719, "etag_repository": "W/\"4635f9b34ebe5babcc4cdfca1ed8af890a82929155359b068fe933e4fd367eaa\"", "full_name": "maxwroc/battery-state-card", "last_updated": "2022-10-11T15:16:56Z", "stargazers_count": 452, "topics": ["battery", "lovelace-custom-card"], "last_fetched": 1666451591.920297, "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}, "category": "plugin", "description": "Github stats card for Home Assistant", "domain": "", "downloads": 456, "etag_repository": "W/\"864dee2956c080b3e14faa96dcca761a4e800377564897962c1acfed9756f18a\"", "full_name": "maxwroc/github-flexi-card", "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}, "category": "plugin", "description": "A Home-Assistant Lovelace card which displays information from the openmensa-sensor.", "domain": "", "etag_repository": "W/\"2b39f540a53a8a1f5e9e0a4d3a9832079a2fea98c8d3475cf72719639d2f965c\"", "full_name": "Mofeywalker/openmensa-lovelace-card", "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}, "category": "plugin", "description": "A different take on the thermostat card for Home Assistant \u2668\ufe0f", "downloads": 19242, "etag_repository": "W/\"0516b9ffe228aed1bddcf8043b4fb42131f832dc565b2c68d018c0ed82222214\"", "full_name": "nervetattoo/simple-thermostat", "last_updated": "2022-07-23T23:48:08Z", "stargazers_count": 581, "topics": ["polymer-3"], "last_fetched": 1666451592.274115, "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"}, "category": "plugin", "description": "HA Lovelace card for control of scheduler entities", "domain": "", "downloads": 12107, "etag_repository": "W/\"1174efb7797aa66aaaa65eb7d87ed4aec3cbd3528c27616070f35dab631e1518\"", "full_name": "nielsfaber/scheduler-card", "last_updated": "2022-09-25T06:23:29Z", "stargazers_count": 476, "topics": ["assistant", "automation", "card", "home", "schedule", "scheduler", "sunrise", "sunset", "week", "weekly"], "last_fetched": 1666451592.566839, "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"}, "category": "plugin", "description": "Custom Lovelace card for Warsaw public transport", "domain": "", "etag_repository": "W/\"12196cc892fbee362e1c3d34eebf2f745208e252986515c88ddf9ec306d9b85c\"", "full_name": "peetereczek/ztm-stop-card", "last_updated": "2020-12-20T14:51:31Z", "stargazers_count": 3, "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"}, "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\"", "full_name": "pfunkmallone/HACS-camect-custom_card", "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"}, "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/\"7ecfd2888f35d9cc5fd5b13537747156f1d2a1b9bcaa6acdc78cb74de7a9be38\"", "full_name": "PiotrMachowski/Home-Assistant-Lovelace-HTML-Jinja2-Template-card", "last_updated": "2022-08-15T02:29:59Z", "stargazers_count": 34, "topics": ["jinja2", "lovelace-card", "template"], "last_fetched": 1665938659.055963, "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"}, "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": 572, "etag_repository": "W/\"f0d46631fcf4a92049a8b8f8f02397661f1312cdd9b26c79a843d55b723dae65\"", "full_name": "PiotrMachowski/Home-Assistant-Lovelace-Local-Conditional-card", "last_updated": "2022-08-15T02:29:47Z", "stargazers_count": 35, "topics": ["lovelace-card"], "last_fetched": 1662801575.372864, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199546187": {"repository_manifest": {}, "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/\"7e8697aef7593407c67e54ec1cabb6ea69de7b23211c74dd1c67a3b9abe404fa\"", "full_name": "PiotrMachowski/lovelace-google-keep-card", "last_updated": "2022-08-15T02:30:18Z", "stargazers_count": 42, "topics": ["lovelace-card"], "last_fetched": 1662801576.144396, "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"}, "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": 13423, "etag_repository": "W/\"f66f463b1f152ead30cd05b6ab7ec66e1c1d40bd93599a417339c3b741e3865e\"", "full_name": "PiotrMachowski/lovelace-xiaomi-vacuum-map-card", "last_updated": "2022-09-16T08:40:36Z", "stargazers_count": 937, "topics": ["lovelace-card", "neato", "roborock", "roomba", "roomba980", "vacuum", "valetudo", "valetudo-re", "xiaomi", "xiaomi-vacuum"], "last_fetched": 1666451593.522028, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193408399": {"repository_manifest": {}, "category": "plugin", "description": "This card displays provided data as an HTML content of a card.", "domain": "", "etag_repository": "W/\"57600860c4c92291fc0c558df3f2adaf373ad7786cb2683ee3bc80a7101bf752\"", "full_name": "PiotrMachowski/lovelace-html-card", "last_updated": "2022-08-15T02:30:20Z", "stargazers_count": 25, "topics": ["lovelace-card"], "last_fetched": 1662801578.632585, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197759180": {"repository_manifest": {}, "category": "plugin", "description": "Quickly search for entities from a Lovelace card.", "domain": "", "etag_repository": "W/\"7575e98d72980e1ea5ebc3f876dc5c34933bbf91517f376959b5d06b0bb2cb55\"", "full_name": "postlund/search-card", "last_updated": "2022-10-07T18:53:17Z", "stargazers_count": 85, "last_fetched": 1665325301.46189, "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}, "category": "plugin", "description": "A fluffy banner card for Home Assistant \ud83e\udd70", "domain": "", "downloads": 23100, "etag_repository": "W/\"c3f6361b961644df164f036867d74a1f0fa426f52b421e170c09a4108c423738\"", "full_name": "nervetattoo/banner-card", "last_updated": "2022-07-20T01:27:58Z", "stargazers_count": 490, "last_fetched": 1666451592.158388, "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"}, "category": "plugin", "description": "\ud83d\udcd0 Home Assistant Card: Similar to vertical/horizontal-stack, but removes card borders", "domain": "", "etag_repository": "W/\"24844db0b8e393abeb2f8913806a10619b64fd2544e4f15332ec2ef8f41852d9\"", "full_name": "ofekashery/vertical-stack-in-card", "last_updated": "2022-10-16T09:00:56Z", "stargazers_count": 691, "last_fetched": 1666451592.837108, "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"}, "category": "plugin", "description": "Weather condition card (Lovelace) for Home Assistant.", "domain": "", "etag_repository": "W/\"9cefacc959ea115185e39a55fa3ba89e26dfe0e9f15edde8e74945c6822b05e5\"", "full_name": "r-renato/ha-card-weather-conditions", "last_updated": "2022-06-01T18:00:57Z", "stargazers_count": 121, "topics": ["card", "weather-conditions"], "last_fetched": 1666451593.514625, "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"}, "category": "plugin", "description": "Home Assistant Lovelace card for Waze Travel Time Sensor", "domain": "", "etag_repository": "W/\"dc00338b1b11c896a7798aab1ef4a781a346e7be84b55ca755bf9ed4d50687a4\"", "full_name": "r-renato/ha-card-waze-travel-time", "last_updated": "2022-06-01T17:59:35Z", "stargazers_count": 31, "topics": ["lovelace-card"], "last_fetched": 1665325304.385986, "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}, "category": "plugin", "description": "Home assistant power card mimicking the one tesla provides for the powerwall app.", "domain": "", "etag_repository": "W/\"be8137c2eab667d9d3137ccaa8ed0ecaac1b2b88db990dd1d817999d6282ed7c\"", "full_name": "reptilex/tesla-style-solar-power-card", "last_updated": "2022-07-22T05:49:07Z", "stargazers_count": 144, "topics": ["battery", "card", "eletric-car", "power", "solar-energy"], "last_fetched": 1665938666.362557, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197715418": {"repository_manifest": {}, "category": "plugin", "description": "A Home Assistant Lovelace card to report MiFlora plant sensors based on the HA Plant Card.", "domain": "", "etag_repository": "W/\"4b98cf610f8e9243b46869aaf4437bbb5f53bda8d4776dc37e5243a6a9e1c3b3\"", "full_name": "RodBr/miflora-card", "last_updated": "2022-07-07T21:54:18Z", "stargazers_count": 19, "last_fetched": 1665325307.484971, "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"}, "category": "plugin", "description": "Logbook card for Home Assistant UI Lovelace", "domain": "", "downloads": 2102, "etag_repository": "W/\"2b82b61bcd4802cdecbf21c9f49f3643df9ae7e603220b02d75c911324445f1b\"", "full_name": "royto/logbook-card", "last_updated": "2022-08-08T19:46:01Z", "stargazers_count": 93, "last_fetched": 1665325309.900772, "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"}, "category": "plugin", "description": "Water Heater card for Home Assistant's Lovelace UI", "domain": "", "etag_repository": "W/\"67cf0f1ffa6e5472e49dc6f59a800482afc43e170db4c3585d6d28d487292e7f\"", "full_name": "rsnodgrass/water-heater-card", "last_updated": "2022-09-09T06:27:18Z", "stargazers_count": 3, "last_fetched": 1662801586.809714, "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"}, "category": "plugin", "description": "Custom, \"neumorphism\" Lovelace card", "domain": "", "downloads": 3139, "etag_repository": "W/\"1ee900c1ea1c13933f6632fdf1eeef46cb4aabf26055bfd1cfca0bf9810a7220\"", "full_name": "Savjee/button-text-card", "last_updated": "2022-06-21T07:47:51Z", "stargazers_count": 97, "topics": ["lovelace-card", "templating", "typescript"], "last_fetched": 1657789371.331181, "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"}, "category": "plugin", "description": "A Home Assistant Lovelace Care for Harmony Integration", "downloads": 3889, "etag_repository": "W/\"1582fb33bad36002aa0084d06d6200dc589e98f5dc8f1c9d87c6ae0b173338fb\"", "full_name": "sbryfcz/harmony-card", "last_updated": "2022-09-27T02:17:30Z", "stargazers_count": 85, "last_fetched": 1665938671.190554, "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", "render_readme": true, "filename": "honeycomb-menu.js"}, "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": 2246, "etag_repository": "W/\"ae6f144c98502cf00a285cb93eae805a97296650daaf83ea023e733fefeaa8b7\"", "full_name": "Sian-Lee-SA/honeycomb-menu", "last_updated": "2021-08-22T01:15:31Z", "stargazers_count": 123, "topics": ["lovelace-module", "menu", "module"], "last_fetched": 1665938672.416793, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202874270": {"repository_manifest": {}, "category": "plugin", "description": "Sets the background of your Home Assistant to match the entity picture of a media player", "domain": "", "etag_repository": "W/\"709b69afa6be592e36e38c30dbf1fa08396d877cfde8d77d4abd02af0df77017\"", "full_name": "TheLastProject/lovelace-media-art-background", "last_updated": "2021-04-14T16:38:05Z", "stargazers_count": 23, "last_fetched": 1665325315.498322, "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}, "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/\"ebdc58ae9add83324ce5c3aa5555603c6dc26dc4f73efba14dc0987a0b3ce1bd\"", "full_name": "TarheelGrad1998/gallery-card", "last_updated": "2022-01-20T20:51:25Z", "stargazers_count": 55, "topics": ["gallery", "gallery-card", "images", "videos"], "last_fetched": 1665325315.161226, "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"}, "category": "plugin", "description": "Turn on lights based on light_profiles.csv", "domain": "", "etag_repository": "W/\"961dd1047de86b1ddd64a1583d951bc5e6fa5fda3e76d301c239ab6ab9184055\"", "full_name": "tcarlsen/lovelace-light-with-profiles", "last_updated": "2022-06-12T20:39:16Z", "stargazers_count": 55, "topics": ["light", "light-profiles", "lovelace-card", "profiles"], "last_fetched": 1657789375.477288, "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}, "category": "plugin", "description": "Generalized Lovelace pie chart card", "domain": "", "etag_repository": "W/\"3e9fc35b01cccf93f5e83230b043bfba328d15db640165ffd882dda7ff8a6b8c\"", "full_name": "sdelliot/pie-chart-card", "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"}, "category": "plugin", "description": "\ud83d\udd39Automatically populate the entities-list of lovelace cards", "domain": "", "etag_repository": "W/\"f72516d879d1cec7dfc43a91208efaf925337a2be996bf4da25aaf05469f3d3d\"", "full_name": "thomasloven/lovelace-auto-entities", "last_updated": "2022-10-03T07:48:40Z", "stargazers_count": 719, "last_fetched": 1666451594.499205, "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}, "category": "plugin", "description": "\ud83d\udd39 Place badges anywhere in the lovelace layout", "domain": "", "etag_repository": "W/\"a1d6e7cbfb7b1d5179c3402f8a6670e445c3739f189b7c35502931030af29eb6\"", "full_name": "thomasloven/lovelace-badge-card", "last_updated": "2022-05-28T13:41:58Z", "stargazers_count": 44, "last_fetched": 1666451594.358697, "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}, "category": "plugin", "description": "\ud83d\udd39 Add CSS styles to (almost) any lovelace card", "domain": "", "etag_repository": "W/\"e87f02a43c65d3611cb0dc5e508b5c6752313f4ea462624f8219b08ac03dad4c\"", "full_name": "thomasloven/lovelace-card-mod", "last_updated": "2022-08-19T13:33:24Z", "stargazers_count": 558, "last_fetched": 1665938677.94562, "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"}, "category": "plugin", "description": "\ud83d\udd39A collection of tools for other lovelace plugins to use", "etag_repository": "W/\"7228d90a9322482ee017c4e5940713c5906621abd55061c1134c5aac3e00f109\"", "full_name": "thomasloven/lovelace-card-tools", "last_updated": "2022-09-16T13:41:56Z", "stargazers_count": 200, "last_fetched": 1665325318.896466, "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}, "category": "plugin", "description": "\ud83d\udd39 A foldable row for entities card, containing other rows", "domain": "", "etag_repository": "W/\"f3caba9daedc048d36ea4661295cf99d99e1831b9ea3522ff888284706fa2ff7\"", "full_name": "thomasloven/lovelace-fold-entity-row", "last_updated": "2022-09-28T07:04:16Z", "stargazers_count": 398, "last_fetched": 1666451594.728097, "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}, "category": "plugin", "description": "\ud83d\udd39 Use built-in elements in the wrong place", "domain": "", "etag_repository": "W/\"75e2109ae47fe2ee4a5d5d01ad4e11b4e26fb57b6c6b3b1e34fece8e81f95daf\"", "full_name": "thomasloven/lovelace-hui-element", "last_updated": "2022-05-29T19:02:02Z", "stargazers_count": 66, "last_fetched": 1661584914.523886, "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"}, "category": "plugin", "description": "\ud83d\udd39 Get more control over the placement of lovelace cards.", "domain": "", "etag_repository": "W/\"09f133404c6cd3ed984ed33b0c73390763afae0920491557b2b91741c8b0a9c1\"", "full_name": "thomasloven/lovelace-layout-card", "last_updated": "2022-10-14T01:05:55Z", "stargazers_count": 624, "last_fetched": 1666451594.755462, "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"}, "category": "plugin", "description": "\ud83d\udd39 Display whatever you want in an entities card row.", "domain": "", "etag_repository": "W/\"70b0f1031b0013eca204ded963d36bd771d9804c0a2ab45660a02f5c077e1d72\"", "full_name": "thomasloven/lovelace-template-entity-row", "last_updated": "2022-08-24T08:27:00Z", "stargazers_count": 129, "last_fetched": 1666451594.814654, "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}, "category": "plugin", "description": "\ud83d\udd39Dynamically replace lovelace cards depending on occasion", "domain": "", "etag_repository": "W/\"a38b8d2512ba59c82bafd739cdf2b5af7b7cd0e7869ca4baf4695b49f520dc8e\"", "full_name": "thomasloven/lovelace-state-switch", "last_updated": "2022-09-10T20:33:08Z", "stargazers_count": 254, "last_fetched": 1666451594.784044, "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}, "category": "plugin", "description": "\ud83d\udd39 Add sliders to entity cards", "etag_repository": "W/\"f2ece2fa72abbe5749d38105c0476a2738fce276ecff61050a4582b520dc6514\"", "full_name": "thomasloven/lovelace-slider-entity-row", "last_updated": "2022-08-13T19:01:37Z", "stargazers_count": 668, "last_fetched": 1666451594.735682, "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"}, "category": "plugin", "description": "\ud83d\udd39 Display the more-info dialog of any entity as a lovelace card", "domain": "", "etag_repository": "W/\"688fd92433d46be4c6c33b97f35b183d90401f21c776efc73a01ba2d2356d95e\"", "full_name": "thomasloven/lovelace-more-info-card", "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"}, "category": "plugin", "description": "A Lovelace card that shows a directional indicator on a compass for Home Assistant", "domain": "", "downloads": 3875, "etag_repository": "W/\"e09503456da13f25c1fcf1efc398baa8919996a4e46a530e0a1502104d2127c6\"", "full_name": "tomvanswam/compass-card", "last_updated": "2022-10-11T06:33:20Z", "stargazers_count": 82, "topics": ["compass", "lovelace-card"], "last_fetched": 1665938684.130586, "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}, "category": "plugin", "description": "Pandora lovelace card for Home Assistant", "domain": "", "etag_repository": "W/\"f69ceb715f8892c54d64f2541a8d93caf430ddf8669ca6cdc44f1050219fdc44\"", "full_name": "turbulator/pandora-cas-card", "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": {}, "category": "plugin", "description": "Lovelace card for hass-aarlo integration.", "domain": "", "etag_repository": "W/\"bb96c62e279384ccb516c6f04092c46d7f65a3f70c177d61abe21635a490abe5\"", "full_name": "twrecked/lovelace-hass-aarlo", "last_updated": "2022-08-13T03:12:20Z", "stargazers_count": 50, "topics": ["arlo", "camera", "lovelace-card", "streaming"], "last_fetched": 1665325327.420008, "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}, "category": "plugin", "description": "Custom Sidebar for Home Assistant", "domain": "", "etag_repository": "W/\"2295a63f31fbcf2a7a2b7e423bf4625055072a97cbc741be04339e2498286bbe\"", "full_name": "Villhellm/custom-sidebar", "last_updated": "2021-03-15T16:47:47Z", "stargazers_count": 97, "topics": ["custom", "sidebar"], "last_fetched": 1665325328.720128, "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}, "category": "plugin", "description": "Basic analog clock for Lovelace", "domain": "", "etag_repository": "W/\"8d473beaf3e4894cf04d271b68b3bad8d8d27b6cc3dcd98f3114aa189c000e55\"", "full_name": "Villhellm/lovelace-clock-card", "last_updated": "2020-11-24T17:31:42Z", "stargazers_count": 38, "topics": ["analog", "clock"], "last_fetched": 1653230123.86655, "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}, "category": "plugin", "description": "Animated backgrounds for lovelace ", "domain": "", "etag_repository": "W/\"1518ea4e1c080e34d3b8c6160bbc22a27a4121345659e0a6022feb85b7f0d028\"", "full_name": "Villhellm/lovelace-animated-background", "last_updated": "2020-11-26T03:49:25Z", "stargazers_count": 143, "topics": ["animated", "background"], "last_fetched": 1665938688.901564, "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"}, "category": "plugin", "description": "A custom lovelace card for the custom Jumbo component.", "domain": "", "etag_repository": "W/\"1ead81ddc1456d55c47b22a30cf46f2795ffddbb4dd95012d2cac0ad4faf8a19\"", "full_name": "Voxxie/lovelace-jumbo-card", "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"}, "category": "plugin", "description": "Replace the history graph colors with a material design color palette.", "domain": "", "etag_repository": "W/\"0d21c6c0e564f332d5b052bf23733e95e0324b9153fd6c1ddd1a6eb5a0318ee9\"", "full_name": "Kibibit/kb-better-graph-colors", "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}, "308883876": {"repository_manifest": {"name": "BLE bulb card", "content_in_root": true, "filename": "ble-bulb-card.js", "render_readme": true}, "category": "plugin", "description": "Custom card for bluetooth bulb (BLE light) control for Homeassistant", "domain": "", "etag_repository": "W/\"e58dd3afb3b943e445c5f891dc8d84b94dcdc8d3e6606cdbb7a0c28588158b44\"", "full_name": "marcomow/ble-bulb-card", "last_updated": "2021-11-05T19:42:44Z", "stargazers_count": 5, "topics": ["ble", "ble-bulb", "ble-bulb-card", "home-assistant-card", "magic-blue-bulbs", "magicblue", "triones", "web-bluetooth"], "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"}, "category": "plugin", "description": "Make Cards and Popups blur everything behind them.", "domain": "", "etag_repository": "W/\"f9a3b3189200a65d322d2f06eead8f1e9d34859a4ec098b83b0776bf6d06fb4a\"", "full_name": "Kibibit/kb-frosted-cards", "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"]}, "authors": ["@blindlight"], "category": "integration", "description": "USR-R16 integration for Home Assistant", "domain": "usr_r16", "etag_repository": "W/\"e5927c3b7ddf92d59e4c3acabdfb547731b9a5329d191a3beb45088028bb3cae\"", "full_name": "blindlight86/HA_USR-R16", "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}, "authors": ["@9rpp"], "category": "integration", "description": "This is a partial implementation of the Securifi RESTful API for Home Assistant", "domain": "securifi", "etag_repository": "W/\"01717a207b00c97903226cd51dcf0d68fe4489242df2f8a6e39cbf41b54bb089\"", "full_name": "9rpp/securifi", "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"}, "authors": ["@bremor"], "category": "integration", "description": "Custom component for retrieving departure times for Public Transport Victoria.", "domain": "public_transport_victoria", "etag_repository": "W/\"ef2dd86060e2a0c7836e2f00844ed58c321a9b2f750153b3285d0356763c7339\"", "full_name": "bremor/public_transport_victoria", "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"}, "authors": ["@bremor"], "category": "integration", "description": "Custom component for retrieving weather information from the Bureau of Meteorology.", "domain": "bureau_of_meteorology", "etag_repository": "W/\"5a29b88902e314e1aa65bb190b7dafe90c46f894842f7800d1e58392831ef29c\"", "full_name": "bremor/bureau_of_meteorology", "last_updated": "2022-10-18T21:52:23Z", "stargazers_count": 95, "topics": ["bom", "bureau", "forecast", "meteorology", "observations", "weather", "weather-information"], "last_fetched": 1666451210.990829, "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"}, "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\"", "full_name": "caiosweet/Home-Assistant-custom-components-INGV", "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"}, "authors": ["@djtimca"], "category": "integration", "description": "Home Assistant integration for Google Wifi systems.", "domain": "googlewifi", "etag_repository": "W/\"7a32e3564d2b89a1efaaffdcbc104f64a7b172ab8f12430add37fdbe74f1d775\"", "full_name": "djtimca/hagooglewifi", "last_updated": "2022-06-02T04:56:17Z", "stargazers_count": 52, "topics": ["google-wifi"], "last_fetched": 1665325499.850979, "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"}, "authors": ["@dgomes", "@crowbarz"], "category": "integration", "description": "Updated SQL integration for Home Assistant that supports JSON attributes", "domain": "sql_json", "etag_repository": "W/\"37bb3f4efa72ca305a5b2519d129dcccf4706ace8dc303fb114db5681897429d\"", "full_name": "crowbarz/ha-sql_json", "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.10.0"}, "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/\"8f518a9930ef60efb9e87f27e5e3bffa7708aad403adab5c3ac3eb70f89719f5\"", "full_name": "custom-components/ble_monitor", "last_updated": "2022-10-12T17:29:39Z", "stargazers_count": 1437, "topics": ["atc", "govee", "inkbird", "kegtron", "mibeacon", "mijia", "mitemp-bt", "qingping", "scales", "thermoplus", "thermopro", "thermplus", "xiaomi", "xiaomi-sensors"], "last_fetched": 1666451231.486106, "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"}, "authors": ["@filipvh"], "category": "integration", "description": "Niko Home Control II Home Assistant Integration", "domain": "nhc2", "etag_repository": "W/\"145731fa69f89e0a43fa88724e3b3f92a18f16a0c856a526b3935eaaec6f1bc4\"", "full_name": "filipvh/hass-nhc2", "last_updated": "2022-05-16T07:43:50Z", "stargazers_count": 34, "topics": ["coco", "domotica", "nhc", "nhc2", "niko", "niko-home-control"], "last_fetched": 1665938839.791534, "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}, "authors": ["@induprakash"], "category": "integration", "description": "Home Assistant component which allows you to get stock updates from Yahoo finance.", "domain": "yahoofinance", "etag_repository": "W/\"981a712717c3e78df42e85d5118289fb52724ec740171a7475f23754a6d55039\"", "full_name": "iprak/yahoofinance", "last_updated": "2022-06-27T23:00:34Z", "stargazers_count": 46, "topics": ["stock-updates", "yahoo-finance"], "last_fetched": 1656859214.444017, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309018094": {"repository_manifest": {"name": "fordpass"}, "authors": ["@itchannel"], "category": "integration", "description": "Fordpass integration for Home Assistant", "domain": "fordpass", "etag_repository": "W/\"a0a770cd05d84387c85ef06ed295aa99b143712f09b584cce409f0231f34b7e0\"", "full_name": "itchannel/fordpass-ha", "last_updated": "2022-08-23T16:07:56Z", "stargazers_count": 107, "topics": ["assistant", "car", "fordpass", "home"], "last_fetched": 1666451348.623954, "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"}, "authors": ["@jseidl"], "category": "integration", "description": "Areas with batteries included for Home Assistant", "domain": "magic_areas", "etag_repository": "W/\"3d565699538beff8ee54b7bbac1f8793b5578e968abffa9c1ec6742e2b94bf59\"", "full_name": "jseidl/hass-magic_areas", "last_updated": "2022-07-24T06:29:18Z", "stargazers_count": 135, "topics": ["automation"], "last_fetched": 1665938907.92069, "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"}, "authors": ["@rospogrigio", "@postlund"], "category": "integration", "description": "local handling for Tuya devices", "domain": "localtuya", "etag_repository": "W/\"a5cfa189837ca18428f3818b6ccfca955f976fabe9eec4fb9675b344632a2fe6\"", "full_name": "rospogrigio/localtuya", "last_updated": "2022-10-16T20:23:14Z", "stargazers_count": 1402, "topics": ["localtuya", "tuya", "tuya-api"], "last_fetched": 1666451496.805164, "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}, "authors": ["@Sennevds"], "category": "integration", "description": "Template media_player for Home Assistant", "domain": "media_player_template", "etag_repository": "W/\"42f13ab85088f5572cec92f23db6102bd20de878f1e4a2178b589da2f89cb4c0\"", "full_name": "Sennevds/media_player.template", "last_updated": "2022-09-19T07:10:18Z", "stargazers_count": 73, "topics": ["media-player"], "last_fetched": 1666451512.320013, "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}, "authors": ["@sbabcock23"], "category": "integration", "description": "Home Assistant integration for TryFi Dog Collar GPS monitoring.", "domain": "tryfi", "etag_repository": "W/\"a99ca6d0230e0877cd4c22c96c61e023d29cf471836d3dd98715f69872d7723e\"", "full_name": "sbabcock23/hass-tryfi", "last_updated": "2022-09-04T15:23:07Z", "stargazers_count": 33, "topics": ["dog", "dog-collar", "gps", "iot", "tryfi"], "last_fetched": 1666451507.229892, "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}, "authors": ["@syssi"], "category": "integration", "description": "Nextbike integration for Home Assistant", "domain": "nextbike", "etag_repository": "W/\"f41775efdabaa0053d53babb843e4d390a7d1ad1cc212b8fc30553499c4bea78\"", "full_name": "syssi/nextbike", "last_updated": "2022-06-02T05:46:01Z", "stargazers_count": 7, "topics": ["free-floating", "nextbike"], "last_fetched": 1665325763.823104, "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}, "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/\"d941a877cd0a521c64e46a3ef2ce80c345b5c90223044bf28d5805b9ea4e6222\"", "full_name": "syssi/xiaomi_raw", "last_updated": "2022-08-10T16:59:40Z", "stargazers_count": 93, "topics": ["miio", "miio-device", "miio-protocol", "monitoring"], "last_fetched": 1665325767.385391, "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}, "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi and Aqara Air Conditioning Companion integration for Home Assistant", "domain": "xiaomi_miio_airconditioningcompanion", "etag_repository": "W/\"475dfd61dd9a0b0dcc7dd3fdea9d998e4fa49cb9ecd3a429a404988e8d13abb3\"", "full_name": "syssi/xiaomi_airconditioningcompanion", "last_updated": "2022-09-07T00:42:46Z", "stargazers_count": 369, "topics": ["acpartner", "airconditioning", "aqara", "infrared", "xiaomi"], "last_fetched": 1666451529.010511, "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"}, "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/\"4482a52665b7d7f263c97a1b6e3f5d60c0cb2b3940d80ee35dda8db71ea642fb\"", "full_name": "syssi/xiaomi_airpurifier", "last_updated": "2022-08-04T09:31:15Z", "stargazers_count": 370, "topics": ["airfresh", "airhumidifier", "airpurifier", "fan", "miio", "miio-protocol", "miot", "xiaomi"], "last_fetched": 1666451529.192715, "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}, "authors": ["@nielsfaber"], "category": "integration", "description": "Easy to use alarm system integration for Home Assistant", "domain": "alarmo", "downloads": 5003, "etag_repository": "W/\"cdac0a9f68f393d3593dd0f1b9313b75115681757b993a5949d25c9ab5521f9f\"", "full_name": "nielsfaber/alarmo", "last_updated": "2022-10-17T08:45:32Z", "stargazers_count": 620, "topics": ["alarm", "assistant", "home", "security"], "last_fetched": 1666451450.023986, "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}, "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Smart WiFi Socket integration for Home Assistant", "domain": "xiaomi_miio_plug", "etag_repository": "W/\"dbda738f4ced556b9a27d0ef240772aa71e3e04954f8ff29b0b17474443d25f8\"", "full_name": "syssi/xiaomiplug", "last_updated": "2022-08-10T18:53:51Z", "stargazers_count": 100, "topics": ["miio", "miio-device", "miio-protocol", "switch", "xiaomi"], "last_fetched": 1665939061.639824, "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"}, "authors": ["@iesus"], "category": "integration", "description": "Get departure times for swedish public transportation", "domain": "resrobot", "etag_repository": "W/\"edd66fed5036f866cc3c74a6b70b5c7032a6c3408075ccb96ef8e02ef70f784a\"", "full_name": "TekniskSupport/home-assistant-resrobot", "last_updated": "2022-06-13T06:05:55Z", "stargazers_count": 11, "topics": ["bus", "ferry", "iesus", "public", "sweden", "train", "tram", "transportation"], "last_fetched": 1665325773.784955, "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"}, "authors": ["@zigul"], "category": "integration", "description": "CEZ Distribuce - Home Assistant Sensor", "domain": "cezdistribuce", "etag_repository": "W/\"4b3541a758e18631f7beb5b692b44e488f2d91fedcc0f1e82f06ca3a65b030a0\"", "full_name": "zigul/HomeAssistant-CEZdistribuce", "last_updated": "2022-03-07T20:21:42Z", "stargazers_count": 16, "topics": ["cez"], "last_fetched": 1665325779.695927, "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"}, "authors": ["@Thomas55555"], "category": "integration", "description": "Custom component for Home Assistant to monitor and control your Husqvrana Automower", "domain": "husqvarna_automower", "downloads": 349, "etag_repository": "W/\"6a73c069750b5bdfb7780e92d68f4aeb7281437d06d0fec2292a23f36f86abb7\"", "full_name": "Thomas55555/husqvarna_automower", "last_updated": "2022-09-07T18:25:36Z", "stargazers_count": 47, "topics": ["husqvarna-automower"], "last_fetched": 1662801949.230394, "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"}, "category": "plugin", "description": "\ud83c\udf21 Thermostat card with a round and black feel to it", "domain": "", "downloads": 16915, "etag_repository": "W/\"ad6252f9e4a07334270845d6dfb67edb31673e685b9b0d655b0e6ea25dddcfc7\"", "full_name": "ciotlosm/lovelace-thermostat-dark-card", "last_updated": "2022-10-09T14:06:13Z", "stargazers_count": 670, "topics": ["thermostat"], "last_fetched": 1666451584.427023, "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"}, "category": "plugin", "description": "Custom Transmission card for Home Assistant/Lovelace", "domain": "", "downloads": 1588, "etag_repository": "W/\"39cf581e24ff257a8b50e86a1e4957cec5bd298977ab5e052f6e99678c4d5ef5\"", "full_name": "amaximus/transmission-card", "last_updated": "2022-06-03T06:25:54Z", "stargazers_count": 28, "topics": ["lovelace-card", "lovelace-custom-card", "transmission"], "last_fetched": 1665325186.412049, "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": "0.109.0", "zip_release": true, "filename": "mail_and_packages.zip"}, "authors": ["@moralmunky", "@firstof9"], "category": "integration", "description": "Home Assistant integration providing day of package counts and USPS informed delivery images.", "domain": "mail_and_packages", "downloads": 4703, "etag_repository": "W/\"b6723e86a51af74b49aae833e4bb3d10e838ee09b02df262fce2f115a74cb528\"", "full_name": "moralmunky/Home-Assistant-Mail-And-Packages", "last_updated": "2022-10-21T20:32:41Z", "stargazers_count": 361, "topics": ["home-assistant-config", "lovelace-card", "lovelace-custom-card"], "last_fetched": 1666451431.819849, "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}, "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/\"ae95d9384de3cb68ac0f8788887deead044dccac18645a1bf9ea14789fdb0afd\"", "full_name": "AlexxIT/SonoffLAN", "last_updated": "2022-10-18T18:27:30Z", "stargazers_count": 1841, "topics": ["ewelink", "sonoff"], "last_fetched": 1666451167.396453, "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}, "authors": ["@gerard33"], "category": "integration", "description": "Sony Bravia TV (Pre-Shared Key) component for Home Assistant", "domain": "braviatv_psk", "downloads": 2886, "etag_repository": "W/\"6efa17af44b19112cfda2f5a23ae21dd31e0037752b2efd46d730b99bdc572d4\"", "full_name": "custom-components/media_player.braviatv_psk", "last_updated": "2022-07-22T15:44:05Z", "stargazers_count": 98, "topics": ["bravia", "psk", "sony"], "last_fetched": 1666451237.394471, "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}, "category": "plugin", "description": "Custom home assitant lovelace for UI auto reload", "domain": "", "etag_repository": "W/\"7b9a0d0a9b0274b421299e5b410857ab2562a22b9b8e107f501aa7c395390a1d\"", "full_name": "ben8p/lovelace-auto-reload-card", "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}, "category": "plugin", "description": "\ud83c\udc39 Lovelace responsive grid card that can be tweaked in your theme definition.", "domain": "", "downloads": 860, "etag_repository": "W/\"d78577a5198cbc6e4156cf5299b30610f3b9f02809dbfcff63d7d1a1517bd5dc\"", "full_name": "nervetattoo/themable-grid", "last_updated": "2022-06-27T19:32:17Z", "stargazers_count": 18, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1665325292.118205, "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"}, "category": "theme", "description": "Vibrant (Dark) Version of Clear Theme", "domain": "", "etag_repository": "W/\"308ab1f42553cf6fd9cf26cef97a101a529540568d7d7a9df2a0e6e15561c310\"", "full_name": "myleskeeffe/clear-theme-dark-vibrant", "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"}, "category": "plugin", "description": "An analog clock for Home Assistant Lovelace", "domain": "", "etag_repository": "W/\"5e359ac0c4bf1582aee8ed1a298491afa9992f649c8017e5f6ccfba1b2de4647\"", "full_name": "tomasrudh/analogclock", "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"}, "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/\"ab1511d8fa4f1ea29cbe8364ed3ff7055ccc24f4dfe0de39276c60330c2f56a9\"", "full_name": "djtimca/harocketlaunchlive", "last_updated": "2022-06-02T04:55:19Z", "stargazers_count": 11, "topics": ["launch", "nasa", "rocket", "spacex", "ula"], "last_fetched": 1665325500.126081, "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}, "authors": ["@asev"], "category": "integration", "description": "Custom component for Home Assistant to connect Helios ventilation system.", "domain": "helios", "etag_repository": "W/\"f3e88eaa33bc4a5b715b8e7713d039ba2c6d51e22dc7e4db6dcbd9e4462c6b41\"", "full_name": "asev/homeassistant-helios", "last_updated": "2022-04-09T13:21:48Z", "stargazers_count": 6, "topics": ["helios", "ventilation"], "last_fetched": 1661584961.315054, "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"}, "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\"", "full_name": "djtimca/hasatellitetracker", "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}, "authors": ["@eyalcha"], "category": "integration", "description": "Home assistant custom component to fetch kan program guide", "domain": "kan_program", "etag_repository": "W/\"5ecded6a3a17f86e395078596fcbed7f53a9b9fa206a2be768f4b201583a96de\"", "full_name": "eyalcha/kan_program", "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}, "authors": ["@jessevl"], "category": "integration", "description": "This is a Home Assistant custom component that connects to the Greenchoice API", "domain": "greenchoice", "etag_repository": "W/\"0b5238c5557bf833695fd36a6722d94b1c661006a3a86e5f4951b467dd97dcde\"", "full_name": "jessevl/homeassistant-greenchoice", "last_updated": "2021-04-08T13:40:36Z", "stargazers_count": 24, "topics": ["greenchoice"], "last_fetched": 1666451359.023028, "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"}, "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/\"261d877367d2bcf681a5e74dcd93d576a0d4917a95dda2b851df57f7fe37c0ab\"", "full_name": "caronc/ha-ultrasync", "last_updated": "2022-07-01T13:55:11Z", "stargazers_count": 11, "topics": ["comnav", "homeassistant-custom-component", "interlogix", "nx-595e", "security", "ultrasync"], "last_fetched": 1665325446.240741, "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}, "authors": ["@iprak"], "category": "integration", "description": "Home Assistant component for C545 Winix Air Purifier", "domain": "winix", "etag_repository": "W/\"617113e1ce37ab71b2b990ea9b8175e51d93aa24d60b0130f6a4ca0429a542dc\"", "full_name": "iprak/winix", "last_updated": "2022-01-08T10:26:20Z", "stargazers_count": 44, "topics": ["purifier", "winix"], "last_fetched": 1666451345.722995, "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"}, "authors": ["@kloknibor", "@docbobo"], "category": "integration", "description": "Miele integration for Home assistant", "domain": "miele", "etag_repository": "W/\"70f152744d66f8e4a326354a9b5ab4e999e089119565991a3df448dee87d3ad9\"", "full_name": "HomeAssistant-Mods/home-assistant-miele", "last_updated": "2022-10-20T22:17:07Z", "stargazers_count": 85, "topics": ["miele"], "last_fetched": 1666451338.538233, "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": "2021.12.0", "hide_default_branch": true, "filename": "skodaconnect.zip"}, "authors": ["@lendy007"], "category": "integration", "description": "Skoda Connect - An home assistant plugin to add integration with your car", "domain": "skodaconnect", "etag_repository": "W/\"3b678e4c63a1b776564fbbc373606fc73620ebbfdbbaa614775a6ff9739a82c1\"", "full_name": "lendy007/homeassistant-skodaconnect", "last_updated": "2022-09-28T17:54:50Z", "stargazers_count": 120, "topics": ["skoda-connect"], "last_fetched": 1666451398.775287, "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"]}, "category": "plugin", "description": "A simple clock widget using Japanese Kanji for date and time", "domain": "", "etag_repository": "W/\"7ed924d663a09f693c7769511af013cf0049289224d664c484ff0336ce62661c\"", "full_name": "sopelj/lovelace-kanji-clock-card", "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"}, "authors": ["@DarkPark"], "category": "integration", "description": "A Home Assistant Budova Smart Home integration", "domain": "bsh", "etag_repository": "W/\"b06c4df8064aeff9d855d3ebf94c284d55804b82f22e8fa574e288f517214e21\"", "full_name": "dphae/bsh", "last_updated": "2021-08-05T21:00:50Z", "stargazers_count": 3, "topics": ["budova", "smart-home"], "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"}, "authors": ["@rccoleman"], "category": "integration", "description": "Interact with your La Marzocco espresso machine", "domain": "lamarzocco", "etag_repository": "W/\"988e860b9e3e97d0660d9fd4c5e9f37a0eb4480cf33e0751fdea27723defcd97\"", "full_name": "rccoleman/lamarzocco", "last_updated": "2022-07-14T00:20:41Z", "stargazers_count": 27, "topics": ["home-assistant-component", "la-marzocco", "lamarzocco"], "last_fetched": 1666451478.792989, "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}, "authors": ["@rsnodgrass"], "category": "integration", "description": "LUNOS HRV Ventilation Fan Control for Home Assistant", "domain": "lunos", "etag_repository": "W/\"74bd1583db83be2d7711bccab4e53f23dfadc82e270cf6caf5e32697b59a22d2\"", "full_name": "rsnodgrass/hass-lunos", "last_updated": "2022-08-22T04:39:07Z", "stargazers_count": 17, "topics": ["hrv", "hvac", "lunos", "smart-home-solutions", "ventilation"], "last_fetched": 1662801945.329385, "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}, "authors": ["@ryanmac8"], "category": "integration", "description": "Mint Mobile Integration for Data Usage Monitoring", "domain": "mintmobile", "etag_repository": "W/\"d25efa247952f643f3a0a932193baa831d63a872aadd852281250d210fdcfdeb\"", "full_name": "ryanmac8/HA-Mint-Mobile", "last_updated": "2022-08-02T22:00:40Z", "stargazers_count": 6, "topics": ["automation"], "last_fetched": 1665939036.453405, "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"}, "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": 1554, "etag_repository": "W/\"8c48d97a0e362552379a41fb75eefa08cee1487bdbf0117d1ec56a6366cc27b5\"", "full_name": "thebino/rki_covid", "last_updated": "2022-06-05T21:27:11Z", "stargazers_count": 39, "topics": ["automation", "custom"], "last_fetched": 1661585320.515481, "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"}, "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/\"8576830c048abee001d235dd3a5ac950ac29c6f5b1e07a3c609939b03b158893\"", "full_name": "ExperienceLovelace/ha-floorplan", "last_updated": "2022-10-21T03:22:19Z", "stargazers_count": 574, "topics": ["floorplan", "lovelace-card", "lovelace-floorplan", "panel"], "last_fetched": 1666451587.503282, "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"}, "authors": ["@FutureTense", "@firstof9", "@raman325"], "category": "integration", "description": "Home Assistant integration for managing Z-Wave enabled locks", "domain": "keymaster", "downloads": 3373, "etag_repository": "W/\"5a5c844a5381a54aff26b5571678aa70e47ab7f5925ff7cc97ace9fc85e605d0\"", "full_name": "FutureTense/keymaster", "last_updated": "2022-10-20T19:53:02Z", "stargazers_count": 131, "topics": ["keymaster", "locks", "zwave", "zwave-enabled-locks"], "last_fetched": 1666451314.826063, "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}, "authors": ["@andvikt"], "category": "integration", "description": "MegaD HomeAssistant integration", "domain": "mega", "etag_repository": "W/\"a954c3c60cecdcbd58f2ea5284d8b46f5b810b55974192f06dc79edc936ad0e0\"", "full_name": "andvikt/mega_hacs", "last_updated": "2022-09-08T10:28:28Z", "stargazers_count": 90, "topics": ["custom-integration", "megad"], "last_fetched": 1665325401.365061, "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"}, "authors": ["@kesteraernoudt"], "category": "integration", "description": "Custom Home Assistant Integration for the Dobiss NXT platform", "domain": "dobiss", "etag_repository": "W/\"ccf121d4dc0cecf7874379cd1bd9b6481c5a422515a092e5ed159faa46c331ac\"", "full_name": "kesteraernoudt/dobiss", "last_updated": "2022-10-14T07:16:54Z", "stargazers_count": 3, "last_fetched": 1665938918.169864, "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"}, "authors": ["@gazoodle"], "category": "integration", "description": "Home Assistant integration for spas equipped with Gecko Alliance in.touch2 modules", "domain": "gecko", "etag_repository": "W/\"212d3ecb6b3338db600a9798d8e17490c79d55f8540ac31bef3c197f3c8d0d68\"", "full_name": "gazoodle/gecko-home-assistant", "last_updated": "2022-07-21T18:32:27Z", "stargazers_count": 31, "topics": ["gecko", "home-assistant-integration", "hot-tub", "intouch2", "jacuzzi", "spa"], "last_fetched": 1665325542.148453, "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": "0.100.0"}, "authors": ["@xraver"], "category": "integration", "description": "Script to use Mercedes Me APIs.", "domain": "mercedesmeapi", "etag_repository": "W/\"3c81fec2c1d46127079943c9fd9ac9e22fe34b900f6307b5fc5c0946b0da11f6\"", "full_name": "xraver/mercedes_me_api", "last_updated": "2021-02-04T08:01:28Z", "stargazers_count": 37, "topics": ["mercedes", "mercedes-benz-car"], "last_fetched": 1661585348.553383, "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}, "authors": ["@tomasbedrich"], "category": "integration", "description": "A Home Assistant integration for communication with Skydance lighting WiFi relay.", "domain": "skydance", "etag_repository": "W/\"ee17a58ed34f45ac732a8025079ca5884a8c682addff0f0bcd043fce7532ab6e\"", "full_name": "tomasbedrich/home-assistant-skydance", "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}, "authors": ["@KoljaWindeler"], "category": "integration", "description": "YouTube music player for homeassistant", "domain": "ytube_music_player", "etag_repository": "W/\"58f2e696d9e332ef9df8333ffb1ad197b525d056a0d38c070045bffdf24b8b2d\"", "full_name": "KoljaWindeler/ytube_music_player", "last_updated": "2022-08-03T07:43:35Z", "stargazers_count": 174, "topics": ["youtube"], "last_fetched": 1666451385.741599, "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"}, "category": "integration", "description": "\ud83d\udd39 Use icons from fontawesome in home-assistant", "domain": "fontawesome", "etag_repository": "W/\"19a63cddf4650734d94c635fb8c91597c5e4e433e8e872c807c0607234e91963\"", "full_name": "thomasloven/hass-fontawesome", "last_updated": "2022-07-20T01:34:33Z", "stargazers_count": 186, "last_fetched": 1665939062.698443, "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"}, "category": "plugin", "description": "Additional icons for Home Assistant to accompany the MDI icons", "domain": "", "etag_repository": "W/\"cac4bb32aba702318c74ddd7a1390b99c22fe93675968aac59332cca64fc968e\"", "full_name": "hulkhaugen/hass-bha-icons", "last_updated": "2022-05-31T05:17:57Z", "stargazers_count": 139, "topics": ["icons", "iconset"], "last_fetched": 1665325248.570434, "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"}, "category": "plugin", "description": "This is a custom lovelace card for displaying a todoist calendar in Home Assistant.", "domain": "", "etag_repository": "W/\"0b23f2994406c5ecf139ad5126e1268b6f975ddad2750667c33753b8afdc72c4\"", "full_name": "tholgir/TodoIst-Task-List", "last_updated": "2021-04-25T07:36:09Z", "stargazers_count": 10, "topics": ["lovelace-custom-card", "todoist"], "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"}, "category": "plugin", "description": "Home Assistant Lovelace Custom Card to calculate time elapsed/left", "domain": "", "etag_repository": "W/\"79c9a432efb2f08f7df374d30adac4cedec1733bf22981d0516545325b475d6c\"", "full_name": "Kirbo/ha-lovelace-elapsed-time-card", "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}, "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\"", "full_name": "jtbgroup/kodi-playlist-card", "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}, "category": "plugin", "description": "\ud83d\udcc8 A Lovelace card to display advanced graphs and charts based on ApexChartsJS for Home Assistant", "domain": "", "downloads": 31009, "etag_repository": "W/\"3653d74aa45d6b6acb97c522d1d97885dc396ca797cbe5f9e395c3ccc42e49f0\"", "full_name": "RomRider/apexcharts-card", "last_updated": "2022-10-17T18:04:37Z", "stargazers_count": 513, "topics": ["apexcharts", "iot"], "last_fetched": 1666451593.91126, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "327779379": {"repository_manifest": {"name": "Optus"}, "authors": ["@itchannel"], "category": "integration", "description": "Optus Mobile Home Assistant Integration", "domain": "optus", "etag_repository": "W/\"76247ea11beb07b89e9380811fd7f27d91be810b51b5969f11cb5b32288b4e5b\"", "full_name": "itchannel/optus-ha", "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"}, "authors": ["@cgarwood"], "category": "integration", "description": "Fully Kiosk Browser integration for Home Assistant", "domain": "fullykiosk", "etag_repository": "W/\"e2195f272525cd7f059cdef6d2a8e23f6fc6d409d90469e0f64939753eb93a92\"", "full_name": "cgarwood/homeassistant-fullykiosk", "last_updated": "2022-06-30T17:10:23Z", "stargazers_count": 134, "topics": ["fully-kiosk-browser"], "last_fetched": 1665325446.518296, "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}, "authors": ["@jellespijker"], "category": "integration", "description": "Home-Assistant component for Ultimaker printers (UM3, S3, S5)", "domain": "ultimaker", "etag_repository": "W/\"b6ee792567e40a4a9c325f95cbb4731bc96594053fd6b347889dbfa230e62dff\"", "full_name": "jellespijker/home-assistant-ultimaker", "last_updated": "2022-06-07T18:51:42Z", "stargazers_count": 11, "topics": ["3d-printing", "home-assistant-component", "home-assistant-sensor", "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"}, "authors": ["@jugla"], "category": "integration", "description": "world tides info custom component for home assistant", "domain": "worldtidesinfocustom", "etag_repository": "W/\"61bc733ee78dd8c83f65d5214e80bd412582224f0e0d0b50a439304194ce0ef8\"", "full_name": "jugla/worldtidesinfocustom", "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"}, "category": "plugin", "description": "Lovelace card to configure network-connected La Marzocco espresso machines", "domain": "", "etag_repository": "W/\"834c5ba895093871d0278bf5d24283be5d0cbbf2041432f3a1080e985037af26\"", "full_name": "rccoleman/lovelace-lamarzocco-config-card", "last_updated": "2021-02-14T21:51:13Z", "stargazers_count": 1, "topics": ["automation", "espresso", "lamarzocco", "lovelace-card", "lovelace-custom-card"], "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": "0.117.0"}, "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/\"6015dffad130bb99d7f11ec0edd0674f3cae4514f70910e82a928c3889733357\"", "full_name": "exxamalte/home-assistant-custom-components-nsw-rural-fire-service-fire-danger", "last_updated": "2021-12-25T12:03:39Z", "stargazers_count": 1, "topics": ["fire-danger", "nsw", "rural-fire-service"], "last_fetched": 1642520518.567378, "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}, "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/\"91b87bf504a3a636c8d93d71ad41026b1e770c1225ce3fb44e1b7571e2d32bac\"", "full_name": "AlexxIT/XiaomiGateway3", "last_updated": "2022-10-22T08:36:25Z", "stargazers_count": 1609, "topics": ["aqara", "ble", "mesh", "xiaomi", "zigbee"], "last_fetched": 1666451171.672741, "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"}, "authors": ["@B5r1oJ0A9G"], "category": "integration", "description": "Integration for Teufel smart speaker (aka Raumfeld Multiroom) into https://www.home-assistant.io/.", "domain": "teufel_raumfeld", "downloads": 405, "etag_repository": "W/\"97d4431f492e197fac9e6e9c785d291ddeb60c3ba581b039279fdd0cd6f683eb\"", "full_name": "B5r1oJ0A9G/teufel_raumfeld", "last_updated": "2022-05-16T12:37:07Z", "stargazers_count": 19, "topics": ["hassfeld", "media-player", "multiroom", "multiroom-audio", "raumfeld", "smart-speaker", "teufel"], "last_fetched": 1666451193.217791, "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.5", "zip_release": true, "filename": "easee.zip"}, "authors": ["@fondberg", "@tmjo", "@olalid", "@astrandb"], "category": "integration", "description": "Custom component for Easee EV charger", "domain": "easee", "downloads": 2012, "etag_repository": "W/\"c56b134255a5b69867dc64b5ee9c58d062cb2e9d50436845c4179a4bc305e9dc\"", "full_name": "fondberg/easee_hass", "last_updated": "2022-10-22T08:10:13Z", "stargazers_count": 114, "topics": ["easee", "ev-charging"], "last_fetched": 1666451308.440954, "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"}, "authors": ["@ReneNulschDE"], "category": "integration", "description": "Custom Component to integrate MercedesME devices into Home-Assistant", "domain": "mbapi2020", "etag_repository": "W/\"e4ed0f5e1e9c7fa50614383b75007e8a909963cc70e2a71850425b726248b098\"", "full_name": "ReneNulschDE/mbapi2020", "last_updated": "2022-10-06T13:22:51Z", "stargazers_count": 60, "topics": ["car", "home-assistant-component", "lock", "switch"], "last_fetched": 1665325718.215265, "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"}, "authors": ["@msekoranja"], "category": "integration", "description": "EMSC Home Assistant Integration", "domain": "emscrss", "etag_repository": "W/\"2139ba9554a8f94d188fc57635982f5243ea90a6903cc59da31dcb4db3407739\"", "full_name": "msekoranja/emsc-hacs-repository", "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}, "authors": ["@martindybal"], "category": "integration", "description": "TapHome integration into Home Assistant.", "domain": "taphome", "etag_repository": "W/\"5df9c745eab6656a0ff68a1b22217a07fc4e1037d3582d84c08f9007efc900b9\"", "full_name": "martindybal/taphome-homeassistant", "last_updated": "2022-06-29T17:54:16Z", "stargazers_count": 6, "topics": ["taphome"], "last_fetched": 1656859287.343302, "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"}, "authors": ["@PrairieSnpr"], "category": "integration", "description": "TDAmeritrade component for Home Assistant", "domain": "tdameritrade", "etag_repository": "W/\"e459917b4ca1dcd1932975222105e8eeb9d4fda65b63c945dbe85b31582a9e01\"", "full_name": "prairiesnpr/hass-tdameritrade", "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}, "321172020": {"repository_manifest": {"name": "Litter-Robot", "render_readme": true}, "authors": ["@natekspencer"], "category": "integration", "description": "Home Assistant integration for a Litter-Robot Connect self-cleaning litter box", "domain": "litterrobot", "etag_repository": "W/\"9cc00dc169650c071db9f4b4dd03ccb36469d6af166ef0594b5e682f6c5e6226\"", "full_name": "natekspencer/hacs-litterrobot", "last_updated": "2021-09-14T00:21:28Z", "stargazers_count": 8, "topics": ["homeassistant-custom-component", "litter-robot", "python3"], "last_fetched": 1641217493.557287, "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"]}, "authors": ["@metbril"], "category": "integration", "description": "Home Assistant component for fuel prices from United Consumers", "domain": "brandstofprijzen", "etag_repository": "W/\"d6ce2edc33db778e2b8c8394f770600bed7ac00055f2c23551010d44a9b9df8b\"", "full_name": "metbril/home-assistant-brandstofprijzen", "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": "2022.6", "name": "Baby Buddy", "render_readme": true}, "authors": ["@jcgoette"], "category": "integration", "description": "This custom integration provides sensors for Baby Buddy API endpoints.", "domain": "babybuddy", "etag_repository": "W/\"6d8f007d945f774b659d87e3c5be5d80e4ce55b139ef88a7d5eb76d8c499f3a3\"", "full_name": "jcgoette/baby_buddy_homeassistant", "last_updated": "2022-10-02T22:39:09Z", "stargazers_count": 29, "topics": ["baby", "home-assistant-component", "home-assistant-sensor", "parents"], "last_fetched": 1665938889.888674, "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}, "authors": ["@jvitkauskas"], "category": "integration", "description": "Home Assistant integration with Salus devices", "domain": "salus", "etag_repository": "W/\"bca8a217c3840e2b5c0b362053eb73c36ccc50d72b286d5a3ed7828095969bfa\"", "full_name": "jvitkauskas/homeassistant_salus", "last_updated": "2022-07-12T17:54:27Z", "stargazers_count": 27, "last_fetched": 1665325607.491335, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "327695137": {"repository_manifest": {"homeassistant": "2022.8.7", "name": "Kodi Media Sensors", "render_readme": true}, "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/\"80d822a0a4d3a2310c201e48d75d96ead1d5a94562543bfc2570bf02af804290\"", "full_name": "jtbgroup/kodi-media-sensors", "last_updated": "2022-09-10T04:06:20Z", "stargazers_count": 6, "topics": ["home-assistant-component", "homeassistant-custom-component", "kodi", "playlist", "playlists", "pyth"], "last_fetched": 1662801824.85403, "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"}, "authors": ["@rj175"], "category": "integration", "description": "An integration to monitor and execute AWS Codepipeline projects within Home Assistant.", "domain": "aws_codepipeline", "etag_repository": "W/\"dd3f1ad21b89814df953d20283c07dc9f11f767559ec92689570207215d03888\"", "full_name": "rj175/home-assistant-aws-codepipeline", "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}, "232424544": {"repository_manifest": {"name": "Bosch Smart Home Controller (SHC) integration", "homeassistant": "2021.1.5"}, "authors": ["@tschamm"], "category": "integration", "description": "Home Assistant component for accessing Bosch Smart Home Controller using boschshcpy python library.", "domain": "bosch_shc", "etag_repository": "W/\"f23b31bba5ece78e7e8ded03905dc1fd22dda023a78df275d3aae88313ed2647\"", "full_name": "tschamm/boschshc-hass", "last_updated": "2022-10-01T20:12:12Z", "stargazers_count": 52, "topics": ["bosch-smart-home", "boschshcpy", "home-assistant-component", "smart-home"], "last_fetched": 1665939064.116724, "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}, "authors": ["@dmoranf"], "category": "integration", "description": "Wattio Smart Home custom integration for Home Assistant", "domain": "wattio", "etag_repository": "W/\"63d645f3dd5184c7cc13cfc9e5be72af788278c459b0b44695fcd1c91ab122ee\"", "full_name": "dmoranf/home-assistant-wattio", "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"}, "category": "integration", "description": "Hacky Home assistant support for Viomi SE (V-RVCLM21A)", "domain": "viomise", "downloads": 824, "etag_repository": "W/\"5af46623f90a4b613daef1fc9025192e6e8e9c8cc38cdb7647fbe7826b38e2f6\"", "full_name": "marotoweb/home-assistant-vacuum-viomise", "last_updated": "2022-06-29T18:36:07Z", "stargazers_count": 17, "topics": ["robot-vacuum", "vacuum", "viomi"], "last_fetched": 1665325652.375378, "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}, "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/\"f9c23732f65236cb30b54e7bc107f0d1a1c909619b723cd9f98b73ebe59eab05\"", "full_name": "ha0y/xiaomi_miot_raw", "last_updated": "2022-08-10T17:23:49Z", "stargazers_count": 1749, "topics": ["home-assistant-addons", "miot", "miot-protocol", "xiaomi", "xiaomi-miot"], "last_fetched": 1666451330.330554, "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}, "authors": ["@pszafer"], "category": "integration", "description": "HA custom component for Bosch thermostats", "domain": "bosch", "etag_repository": "W/\"5ae9f05a5bdf900d4c2dcc272cf19856676706342ad05a0f377992e82007db77\"", "full_name": "bosch-thermostat/home-assistant-bosch-custom-component", "last_updated": "2022-10-10T11:52:54Z", "stargazers_count": 103, "topics": ["bosch", "bosch-thermostat", "buderus", "nefit", "sensors", "thermostat", "xmpp"], "last_fetched": 1665938740.074476, "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}, "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Philips Lights integration for Home Assistant", "domain": "xiaomi_miio_philipslight", "etag_repository": "W/\"869e0b73c76a1192e50d9be99ac000bbd5eda9ab37c840085c9bf7e58a898b2b\"", "full_name": "syssi/philipslight", "last_updated": "2022-08-10T18:50:38Z", "stargazers_count": 61, "topics": ["light", "miio", "miio-protocol", "xiaomi", "xiaomi-philips-lights"], "last_fetched": 1665325764.889217, "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"}, "authors": ["@rgc99"], "category": "integration", "description": "\u2652Irrigation controller for Home Assistant", "domain": "irrigation_unlimited", "etag_repository": "W/\"c85bcf05a456b97a1229d3456653f4f1c5ce1b4b33617d1cd0d6fd551f8a9ae5\"", "full_name": "rgc99/irrigation_unlimited", "last_updated": "2022-09-23T05:32:24Z", "stargazers_count": 171, "topics": ["garden-automation", "irrigation", "irrigation-control-system", "irrigation-controller", "sprinkler-controller", "water", "watering-controller", "watering-system"], "last_fetched": 1666451482.346959, "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}, "authors": ["@al-one"], "category": "integration", "description": "Xiaomi Miio Yeelink/Yeelight devices for Home Assistant", "domain": "miio_yeelink", "downloads": 64, "etag_repository": "W/\"75334b20e550baeea0f7ed283ec0aa5d2ca22eb31cffe2711ee069e0e98de683\"", "full_name": "al-one/hass-miio-yeelink", "last_updated": "2022-05-18T10:19:20Z", "stargazers_count": 119, "topics": ["miio", "miot", "xiaomi", "yeelight", "yeelink"], "last_fetched": 1666451166.35856, "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"}, "authors": ["@al-one"], "category": "integration", "description": "Automatic integrate all Xiaomi devices to HomeAssistant via miot-spec, support Wi-Fi, BLE, ZigBee devices.", "domain": "xiaomi_miot", "downloads": 3143, "etag_repository": "W/\"637f4ed69b6b865d049920fa34b01194386cce18378c417ab293093695b1c63c\"", "full_name": "al-one/hass-xiaomi-miot", "last_updated": "2022-10-20T14:27:42Z", "stargazers_count": 1702, "topics": ["iot", "miio", "miot", "miot-spec", "smart-home", "xiaoai", "xiaomi", "xiaomi-miot"], "last_fetched": 1666451166.598112, "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"}, "category": "plugin", "description": "Home Assistant Lovelace Card for controlling desks based on linak bluetooth controller.", "domain": "", "downloads": 325, "etag_repository": "W/\"d4629da5903dd4e418999041d28f80403c064e23c0b2ed9af2a95bc748398e8d\"", "full_name": "IhorSyerkov/linak-desk-card", "last_updated": "2022-07-03T18:22:52Z", "stargazers_count": 35, "topics": ["linak-desk-card"], "last_fetched": 1666451588.994013, "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}, "authors": ["@muhlba91"], "category": "integration", "description": "Home Assistant integration (HACS) for Hella's ONYX.CENTER appliance", "domain": "hella_onyx", "etag_repository": "W/\"6229887c7aa4db86e91ce26c0ebf8a1106feaf4f538e968da374f3e79a0bf202\"", "full_name": "muhlba91/onyx-homeassistant-integration", "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"}, "authors": ["@tetienne"], "category": "integration", "description": "Home Assistant custom component to retrieve information from Veolia ", "domain": "veolia", "etag_repository": "W/\"8276f9ede706ac8ac1fad7fd7439bc34e821f32904a08772f2495ae31cc4cf48\"", "full_name": "tetienne/veolia-custom-component", "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}, "category": "plugin", "description": "Todoist card for Home Assistant Lovelace UI.", "domain": "", "etag_repository": "W/\"59dc5453df60d75d11d5949930c4a6f071c5c3ed1959f22b86c1d00bb3ee8760\"", "full_name": "grinstantin/todoist-card", "last_updated": "2022-10-15T08:04:50Z", "stargazers_count": 32, "topics": ["todoist"], "last_fetched": 1666451588.577557, "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}, "authors": ["@mawinkler"], "category": "integration", "description": "Asynchronous Astro Weather Forecast for Home Assistant", "domain": "astroweather", "etag_repository": "W/\"ce55fee8ce3cc8c8e15841d02a8a42b593710fb4b3ed5a2d6e8ef357dac2b6ad\"", "full_name": "mawinkler/astroweather", "last_updated": "2022-08-18T10:45:26Z", "stargazers_count": 22, "topics": ["7timer", "astronomy", "forecast"], "last_fetched": 1665325655.217443, "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"}, "authors": ["@erikkastelec"], "category": "integration", "description": "Custom component for retrieving sensor information from Weishaupt WEM Portal", "domain": "wemportal", "etag_repository": "W/\"f48d1deeed914e9c43c7baf033bbe21a3111adcc43f60373d508a19dee19347d\"", "full_name": "erikkastelec/hass-WEM-Portal", "last_updated": "2022-10-06T07:07:53Z", "stargazers_count": 21, "topics": ["weishaupt", "wem-portal"], "last_fetched": 1666451299.112934, "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}, "authors": ["@lukas-hetzenecker", "@postlund"], "category": "integration", "description": "Links multiple home-assistant instances together", "domain": "remote_homeassistant", "etag_repository": "W/\"54876fc808abbefa93977d31593c82dfba38779bb5b1a08cc11d3ac726197895\"", "full_name": "custom-components/remote_homeassistant", "last_updated": "2022-07-23T15:17:44Z", "stargazers_count": 542, "last_fetched": 1665931759.433697, "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"}, "authors": ["@amaximus"], "category": "integration", "description": "Home Assistant custom component for Pollen Information in Hungary", "domain": "pollen_hu", "etag_repository": "W/\"5f2ce1eb392cc50b0ee01b8ff8e59b0eac2ef7ce71a2ab45704cc1b189198140\"", "full_name": "amaximus/pollen_hu", "last_updated": "2021-12-19T18:02:47Z", "stargazers_count": 6, "topics": ["homeassistant-custom-component", "hungary"], "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}, "authors": ["@frimtec"], "category": "integration", "description": "Home Assistant component to switch WiFi on/off for Compal CH7465LG modem.", "domain": "compal_wifi", "downloads": 1, "etag_repository": "W/\"aa451b3c82367d440cd0665a858968fdb4ca083fa6b2c6d8671e61374b05c98a\"", "full_name": "frimtec/hass-compal-wifi", "last_updated": "2022-05-28T07:43:32Z", "stargazers_count": 1, "topics": ["ch7465lg", "compal", "compal-wifi-switch", "switch", "wifi", "wlan"], "last_fetched": 1653733397.983639, "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.06.0", "render_readme": true}, "authors": ["@fsaris"], "category": "integration", "description": "AwoX mesh light integration for Home Assistant", "domain": "awox", "etag_repository": "W/\"1e8848cb25ae00ae3b03a5c935cd73969f9804dd9a4d1cd3aeb4b5783d17005e\"", "full_name": "fsaris/home-assistant-awox", "last_updated": "2022-09-30T05:22:51Z", "stargazers_count": 49, "topics": ["awox", "bluetooth", "eglo"], "last_fetched": 1666451313.691035, "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"}, "authors": ["@fsaris"], "category": "integration", "description": "Unofficial Zonneplan ONE + connect integration for Home Assistant", "domain": "zonneplan_one", "etag_repository": "W/\"eaebefd1f52d3ea34edd062cb5f9a505c6d7763d5c217e063d49523793ebe831\"", "full_name": "fsaris/home-assistant-zonneplan-one", "last_updated": "2022-05-26T04:53:13Z", "stargazers_count": 28, "topics": ["home-assistant-component", "zonneplan", "zonneplan-connect", "zonneplan-one"], "last_fetched": 1661585086.101001, "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"}, "authors": ["@jadson179"], "category": "integration", "description": "home-assistant service for control the controlid \ud83d\udeaa\ud83d\udd11", "domain": "controlid", "etag_repository": "W/\"157a972d436f022c90c2f64c612b63af4c51a7ffc8c3a8fb0f0a3ecf2e2f22c3\"", "full_name": "jadson179/controlid", "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}, "340616586": {"repository_manifest": {"name": "Narodmon Cloud Integration", "hacs": "1.6.0", "homeassistant": "0.118.0"}, "authors": ["@Limych"], "category": "integration", "description": "Component to integrate Narodmon cloud into Home Assistant", "domain": "narodmon", "etag_repository": "W/\"b5cc5bcabb296520e1d61c1f85f3c43d5ad605619a7e3d41fe3d61da724ee5e4\"", "full_name": "Limych/ha-narodmon", "last_updated": "2022-07-11T08:09:04Z", "stargazers_count": 11, "topics": ["home-assistant-component", "narodmon", "weather"], "last_fetched": 1657789041.747855, "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}, "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\"", "full_name": "muxa/home-assistant-niwa-tides", "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}, "authors": ["@markgdev"], "category": "integration", "description": "Octopus Agile custom component for Home Assistant", "domain": "octopusagile", "etag_repository": "W/\"44270a9424a1fb7f0fbbaef06a579699ca54c0363ffb5e5e75aacf41d271f30e\"", "full_name": "markgdev/home-assistant_OctopusAgile", "last_updated": "2022-10-04T16:19:01Z", "stargazers_count": 63, "topics": ["energy", "octopus", "octopus-agile", "octopus-energy"], "last_fetched": 1665938952.784311, "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"}, "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": 3, "etag_repository": "W/\"015f354642acd55d408bb244387808c24430d214b7ec564ca9d091debe1245b0\"", "full_name": "Limych/ha-snowtire", "last_updated": "2022-08-26T13:08:47Z", "stargazers_count": 22, "topics": ["car-winter-tires", "home-assistant-component", "tires"], "last_fetched": 1661585185.136723, "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"}, "authors": ["@nick2525"], "category": "integration", "description": "Broadlink s2c and Broadlink s1c sensors for Home Assistant", "domain": "broadlink_s1c", "etag_repository": "W/\"552d77089b8241b0f092162c8eae194d6c0659e359f2156ebe989c8ffaeff254\"", "full_name": "nick2525/broadlink_s1c_s2c", "last_updated": "2021-12-07T18:44:13Z", "stargazers_count": 6, "topics": ["broadlink", "hacz", "s1c", "s2c"], "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"}, "category": "plugin", "description": "Display Buienalarm and/or Buienradar data in a graph for Home Assistant.", "domain": "", "etag_repository": "W/\"8d02b972403453300f7c7474f14d91f9bde107102b6cbbc68d50c4af2d18b7ee\"", "full_name": "aex351/home-assistant-neerslag-card", "last_updated": "2022-07-08T17:22:48Z", "stargazers_count": 21, "last_fetched": 1657362421.033821, "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"}, "category": "plugin", "description": "Simple clock card for Home assistant lovelace", "domain": "", "etag_repository": "W/\"a42ea0ce64c64db3a0651bff9aa8c5994e6f3d2b7d468d9a5dfc8a1cd70b3067\"", "full_name": "fufar/simple-clock-card", "last_updated": "2022-09-12T09:29:28Z", "stargazers_count": 25, "topics": ["clock", "lovelace-custom-card"], "last_fetched": 1665325239.727146, "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.9.0"}, "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/\"e6924a2c84d6d3d0acc447be9853a19fa8d54e969d9cb82f550985bbdb68e779\"", "full_name": "wimb0/home-assistant-saj-modbus", "last_updated": "2022-06-08T10:28:39Z", "stargazers_count": 15, "topics": ["saj-inverters", "saj-r5", "zonneplan"], "last_fetched": 1657789198.082706, "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}, "category": "plugin", "description": "Climate mode entity for Lovelace", "domain": "", "etag_repository": "W/\"4004001d1b6bbd09c0a3f3f5a116c4b7017dda645d756325ed018e8d59d6ca09\"", "full_name": "piitaya/lovelace-climate-mode-entity-row", "last_updated": "2022-06-27T07:31:07Z", "stargazers_count": 59, "topics": ["card", "thermostat"], "last_fetched": 1665938657.892714, "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", "render_readme": true}, "authors": ["@Antoni-Czaplicki"], "category": "integration", "description": "Vulcan inegration for home assistamt", "domain": "vulcan", "etag_repository": "W/\"b0e764eb7d104ff0979e046b41b01ef920fa5ed8dd1c14808375d0a818f7330a\"", "full_name": "Antoni-Czaplicki/vulcan-for-hassio", "last_updated": "2022-05-08T08:21:30Z", "stargazers_count": 20, "topics": ["timetable", "vulcan"], "last_fetched": 1653229592.75048, "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"}, "category": "plugin", "description": "Home Assistant custom Lovelace card for pollen information in Hungary", "domain": "", "downloads": 548, "etag_repository": "W/\"57dc0bf34cf1e5054f52dee0d1aa5e171f7ddf34b33dac48765c90e522f9032c\"", "full_name": "amaximus/pollen-hu-card", "last_updated": "2022-06-03T06:29:32Z", "stargazers_count": 8, "topics": ["hungary", "lovelace-custom-card"], "last_fetched": 1656859497.460331, "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", "zip_release": true, "filename": "deltasol.zip", "render_readme": true}, "authors": ["@dm82m"], "category": "integration", "description": "Custom component for retrieving sensor information from Resol Deltasol KM2/DL2/DL3", "domain": "deltasol", "downloads": 110, "etag_repository": "W/\"93b015cf93f94313449f4e08d71c5f980d6c764587cec72ac3c91ca44bce9c85\"", "full_name": "dm82m/hass-Deltasol-KM2", "last_updated": "2022-06-05T09:06:16Z", "stargazers_count": 7, "topics": ["deltasol", "km2"], "last_fetched": 1665325502.453451, "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}, "authors": ["@leikoilja", "@DurgNomis-drol", "@ArnyminerZ", "@KapJI"], "category": "integration", "description": "Home Assistant Google Home custom component ", "domain": "google_home", "etag_repository": "W/\"76a1612c133c2dbba3a366b59982abf29f9bb033a6d9e32a2155fcc2c1a82d41\"", "full_name": "leikoilja/ha-google-home", "last_updated": "2022-10-21T20:18:36Z", "stargazers_count": 280, "topics": ["google-assistent", "google-home"], "last_fetched": 1666451398.659644, "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"}, "authors": ["@piitaya"], "category": "integration", "description": "Home Assistant Component for Qubino Wire Pilot", "domain": "qubino_wire_pilot", "etag_repository": "W/\"5f300e7b26c4d989e531a65ff4db6b95d55c081816abdfa21e2a65400669355c\"", "full_name": "piitaya/home-assistant-qubino-wire-pilot", "last_updated": "2022-01-07T13:01:40Z", "stargazers_count": 10, "topics": ["climate", "qubino", "qubino-wire-pilot", "thermostat"], "last_fetched": 1665938999.136759, "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}, "authors": ["@mzdrale", "@kevinhaendel"], "category": "integration", "description": "This platform integrates Ubee Routers into Home Assistant.", "domain": "ubee", "etag_repository": "W/\"0c21ecec823114a11fb1fb3058dc05b1b4c4f717bdb7cce4eef67b7fe19e1cc1\"", "full_name": "kevinhaendel/ha-ubee", "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}, "authors": ["@echoromeo"], "category": "integration", "description": "Home Assistant implementation of pynobo - to control Nob\u00f8 / Glen Dimplex heaters", "domain": "nobo_hub", "etag_repository": "W/\"03c2e7b4d25a5d42327dd00c3c6ef1de794c1eee85e2c21add3fe4e57b303ad1\"", "full_name": "echoromeo/hanobo", "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}, "340085507": {"repository_manifest": {"name": "SPZB0001 Thermostat", "render_readme": true}, "authors": ["@WolfRevo"], "category": "integration", "description": "A clone created from the Home Assistant generic_thermostat to use EUROTRONIC Zigbee SPZB0001 Thermostats with external temperature sensors", "domain": "spzb0001_thermostat", "etag_repository": "W/\"0c6e3a13a1d0c3092ce6a5cec9bdb0f49d111fb5cde1b5699e9c964e4d583c1f\"", "full_name": "WolfRevo/climate.spzb0001_thermostat", "last_updated": "2022-05-25T10:44:49Z", "stargazers_count": 4, "topics": ["thermostat"], "last_fetched": 1665325778.522104, "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}, "authors": ["@smaisidoro"], "category": "integration", "description": "Ruuvi tag BLE sensor for Home Assistant.", "domain": "ruuvi", "etag_repository": "W/\"b3b82debcff518f94b06e7f3970f9752fa4acb7f3c5d15b2b7120fe355a5d8cd\"", "full_name": "ruuvi-friends/ruuvi-hass.io", "last_updated": "2022-01-25T13:23:39Z", "stargazers_count": 40, "topics": ["ruuvi-ble-devices", "ruuvitag", "ruuvitag-sensor"], "last_fetched": 1665325737.541979, "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}, "authors": ["@neggert"], "category": "integration", "description": "Home Assistant custom component for eGauge monitor", "domain": "egauge", "etag_repository": "W/\"7881c0a093e045d02a919a38a57c341505ae6048a3ce7447a949a47723c96362\"", "full_name": "neggert/hass-egauge", "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"}, "authors": ["@hellqvio86"], "category": "integration", "description": "Home assistant Integration for Casambi Cloud lights", "domain": "casambi", "etag_repository": "W/\"4cf8e04d46c439085100a5fecd83f308d0f4022cf2615a3dc0f29b3983ef8fa7\"", "full_name": "hellqvio86/home_assistant_casambi", "last_updated": "2022-08-28T10:35:08Z", "stargazers_count": 18, "topics": ["casambi"], "last_fetched": 1665325561.265394, "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"}, "authors": ["@rccoleman"], "category": "integration", "description": "\u25b6\ufe0f Channels DVR component to feed Upcoming Media Card.", "domain": "channels_dvr_recently_recorded", "etag_repository": "W/\"632cb7ecceb6006f5a9249de7466507ba4ee9b6b01cfcd6548ba11be5aeaa122\"", "full_name": "rccoleman/channels_dvr_recently_recorded", "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}, "authors": ["@dimagoltsman"], "category": "integration", "description": "HACS integration to proof.co.il dashcam", "domain": "proof", "etag_repository": "W/\"bf55041246f16b26dafae40aaa1e2cd6b1b261433a9a915447df745be7bc2e9f\"", "full_name": "dimagoltsman/ha-proof-dashcam-integration", "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}, "309195773": {"repository_manifest": {"name": "vapix", "render_readme": "true"}, "authors": ["@jadson179"], "category": "integration", "description": "home-assistant service for control the vapix \ud83d\udeaa\ud83d\udd11", "domain": "vapix", "etag_repository": "W/\"3dd03325b6a91acdc1f6f9ff01c9039e9068355bece345815b0b57bccb37a05a\"", "full_name": "jadson179/vapix", "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}, "350509867": {"repository_manifest": {"name": "Uptime Card", "render_readme": true, "filename": "uptime-card.js"}, "category": "plugin", "description": "Minimalistic uptime card for Home Assistant Lovelace UI", "domain": "", "downloads": 5902, "etag_repository": "W/\"b3df305535e44e79760b7d48a8d2daf7cf2f0b47dc6ff9f710c74460fc2a3a4c\"", "full_name": "dylandoamaral/uptime-card", "last_updated": "2022-06-12T15:40:07Z", "stargazers_count": 159, "topics": ["card", "custom", "uptime", "uptime-card"], "last_fetched": 1666451587.607785, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164419416": {"repository_manifest": {"name": "Renault", "homeassistant": "0.115.0"}, "authors": ["@epenet"], "category": "integration", "description": "\ud83d\ude97 Renault ZE sensor for home assistant", "domain": "renault", "etag_repository": "W/\"054f1316b00e22bb778d5d6db03114ae9104c678154fb00474c74c0bc50aaea0\"", "full_name": "hacf-fr/hassRenaultZE", "last_updated": "2022-02-04T09:35:10Z", "stargazers_count": 52, "topics": ["renault", "renault-ze", "renault-zoe"], "last_fetched": 1661585111.375332, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356821955": {"repository_manifest": {"name": "Outline", "render_readme": true, "homeassistant": "2021.6.0b0"}, "category": "theme", "description": "\ud83c\udfa8 Home Assistant Theme: Outline", "domain": "", "etag_repository": "W/\"c4d4014d60669e9c1485ebf92e4120dc75865790f5861862c55984f7cb7511a6\"", "full_name": "frenck/home-assistant-theme-outline", "last_updated": "2022-08-17T06:44:20Z", "stargazers_count": 22, "topics": ["minimalistic"], "last_fetched": 1661584742.513836, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231829137": {"repository_manifest": {"name": "Noctis"}, "category": "theme", "description": "\ud83d\udc35 Dark Blue Theme for Home Assistant", "etag_repository": "W/\"aa15d3855217982b7d8991f92881c77ecd31d87e464e48e0b861daa09f63d4fa\"", "full_name": "aFFekopp/noctis", "last_updated": "2022-08-15T08:00:33Z", "stargazers_count": 139, "topics": ["dark-theme", "home-assistant-theme"], "last_fetched": 1665938504.460857, "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}, "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the Google app dark mode.", "etag_repository": "W/\"9a949798bc548dea250cde05f30bc7004567048aca934753f1cd6bca2d4c0d72\"", "full_name": "JuanMTech/google_dark_theme", "last_updated": "2022-06-19T17:48:35Z", "stargazers_count": 138, "last_fetched": 1665325359.03143, "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"}, "category": "plugin", "description": "A one-button control row for any Home Assistant binary entity", "domain": "", "etag_repository": "W/\"d32cd1457ddb093795891da28d052dddf9d97deb33671ad9680cfa18a097f3cd\"", "full_name": "finity69x2/toggle-control-button-row", "last_updated": "2022-06-29T15:21:52Z", "stargazers_count": 11, "topics": ["button", "plugin", "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}, "category": "plugin", "description": "Send notifications directly from the dashboard", "domain": "", "etag_repository": "W/\"252363a67f71476b72933ff7c3d2994c20f506b6896600831fb35ed16f201a77\"", "full_name": "bernikr/lovelace-notify-card", "last_updated": "2022-09-08T09:05:44Z", "stargazers_count": 21, "topics": ["card", "notification", "notifications", "notify", "service"], "last_fetched": 1665325193.845378, "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"}, "category": "plugin", "description": "A custom entity card for Home Assistant that allows text to span multiple lines.", "domain": "", "etag_repository": "W/\"ddef9771273372771408c906f3df83a4b5cbbb38d1dc1efcf6dcc57b3c31395f\"", "full_name": "jampez77/Multiline-Entity-Card", "last_updated": "2022-04-11T09:27:19Z", "stargazers_count": 12, "topics": ["automation"], "last_fetched": 1665938621.46693, "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}, "authors": ["@cathiele"], "category": "integration", "description": "Home Assistant custom_component for controlling the go-eCharger EV-Charger", "domain": "goecharger", "etag_repository": "W/\"8b4c694fc83290c3848bc971acd8ba5e89affabdad181840477b13bab1c04550\"", "full_name": "cathiele/homeassistant-goecharger", "last_updated": "2022-10-02T17:30:34Z", "stargazers_count": 59, "topics": ["charger", "component", "custom", "go-echarger"], "last_fetched": 1666451221.510498, "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"}, "category": "plugin", "description": "Frontend plugin to control fans in Home Assistant using percent values for speeds", "domain": "", "etag_repository": "W/\"881701382a83c48205cb1c09aaefeb1f4c2a2a5f7a5bbf3289baeaf555c9c4ef\"", "full_name": "finity69x2/fan-percent-button-row", "last_updated": "2022-05-24T08:54:58Z", "stargazers_count": 19, "topics": ["assistant", "fan", "home", "percent", "plugin", "speed"], "last_fetched": 1665325236.32537, "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"}, "category": "plugin", "description": "Custom card for home assistant allowing to search in the libraries of kodi", "domain": "", "downloads": 298, "etag_repository": "W/\"1bc271e72f0cadb0d5a7d76b9a0d60dcecbab2398c30b1f75e83ffe8d94433cf\"", "full_name": "jtbgroup/kodi-search-card", "last_updated": "2022-09-18T17:07:04Z", "stargazers_count": 9, "topics": ["kodi", "kodi-media-sensors"], "last_fetched": 1665325265.167718, "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"}, "authors": ["@bieniu"], "category": "integration", "description": "\u017badnego Ale allergen concentration custom integration", "domain": "zadnego_ale", "downloads": 347, "etag_repository": "W/\"5e96daad5d59803e934ba231eaff972902cb3389ed1919a956245ce0ae746c60\"", "full_name": "bieniu/ha-zadnego-ale", "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"}, "authors": ["@MTrab"], "category": "integration", "description": "Danfoss Ally intragration for Home Assistant", "domain": "danfoss_ally", "downloads": 395, "etag_repository": "W/\"7682e3c7c4cfb876a570c1635e42b43f44e3c5edef2b06dbe6f7c1d7a1911193\"", "full_name": "MTrab/danfoss_ally", "last_updated": "2022-10-13T18:52:25Z", "stargazers_count": 16, "topics": ["climate", "homeassistant-custom-component", "thermostat"], "last_fetched": 1665938972.391251, "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"}, "authors": ["@pcourbin"], "category": "integration", "description": "Home Assistant custom component for IMA Protect Alarm", "domain": "imaprotect", "etag_repository": "W/\"dc0baf44204d9f561696781274aa32382f7375e0d1b743056eaf071bb4e0c90f\"", "full_name": "pcourbin/imaprotect", "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"]}, "authors": ["@gjohansson-ST"], "category": "integration", "description": "Svenska Trygghetsl\u00f6sningar - Home Assistant", "domain": "stl", "etag_repository": "W/\"7d35e1269f9d75bfa751d4953e42ea31584b813c877c8d8eaa49047b20716560\"", "full_name": "gjohansson-ST/stl", "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"}, "authors": ["@eifinger"], "category": "integration", "description": "Homeassistant integration for weenect", "domain": "weenect", "etag_repository": "W/\"14711e4e41464e9b8182a47f23f2aafe6da1c74422fe40aae4a8a9d00f5b1ba8\"", "full_name": "eifinger/hass-weenect", "last_updated": "2022-01-11T06:30:20Z", "stargazers_count": 2, "topics": ["weenect"], "last_fetched": 1641895915.721014, "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"}, "authors": ["@Limych"], "category": "integration", "description": "Sensor of Temperature Feels Like for Home Assistant.", "domain": "temperature_feels_like", "downloads": 18, "etag_repository": "W/\"9cd505f42a56c31b541ad89a05e68e528c91c4315d0163362159e0e8261194c5\"", "full_name": "Limych/ha-temperature-feels-like", "last_updated": "2022-10-07T18:43:10Z", "stargazers_count": 57, "topics": ["home-assistant-climate", "home-assistant-component", "home-assistant-sensor", "home-assistant-temperature", "home-assistant-weather"], "last_fetched": 1665325639.143748, "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"}, "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": 22783, "etag_repository": "W/\"8a92183db982fb12e9148d17be5e8c51e61f01c5e480f6aeaeb1e5b79df6e067\"", "full_name": "PiotrMachowski/Home-Assistant-custom-components-Xiaomi-Cloud-Map-Extractor", "last_updated": "2022-09-29T17:14:49Z", "stargazers_count": 811, "topics": ["cloud", "dreame", "map", "roborock", "robot", "roidmi", "vacuum", "vacuum-map", "viomi", "xiaomi", "xiaomi-smart-home", "xiaomi-vacuum"], "last_fetched": 1666451470.399599, "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}, "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/\"eaaeee34dc98f876c42a122d890a31ab6f722cd69aeedba0dbba329196368b6a\"", "full_name": "danieldotnl/ha-multiscrape", "last_updated": "2022-10-15T18:31:44Z", "stargazers_count": 105, "topics": ["rest", "scrape", "scraper", "scraping"], "last_fetched": 1665938794.847635, "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}, "authors": ["@Rendili", "@KJonline"], "category": "integration", "description": "A custom version of the home assistant hive component", "domain": "hive", "etag_repository": "W/\"98d337cfaf4576fc4f4d6d067f187873f03ae6ade61e3ee3a4943b731da7d58c\"", "full_name": "Pyhass/Hive-Custom-Component", "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"}, "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\"", "full_name": "mampfes/ha-knx-uf-iconset", "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"}, "category": "plugin", "description": "A lovelace card for electrical vehicle (EV) home chargers and charging robots.", "domain": "", "downloads": 1962, "etag_repository": "W/\"5c28c0377ae5177018d713978bc31a071dd641d6ec04bb11392cffdfedd2e06b\"", "full_name": "tmjo/charger-card", "last_updated": "2022-09-07T11:52:54Z", "stargazers_count": 52, "topics": ["charger", "charging-robot", "easee", "elbil", "electric-vehicle", "evcharger"], "last_fetched": 1666451594.936066, "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}, "authors": ["@djerik"], "category": "integration", "description": "Home Assistant component for monitoring and administration of Wavin Sentio underfloor heating system", "domain": "wavinsentio", "etag_repository": "W/\"46c1fb5323515e336bf44d55696ef9051df52f8437bbe597e27844bfad62870f\"", "full_name": "djerik/wavinsentio-ha", "last_updated": "2022-04-03T12:20:43Z", "stargazers_count": 7, "topics": ["sentio", "wavin"], "last_fetched": 1662801726.916361, "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"}, "authors": ["@dreed47"], "category": "integration", "description": "Redfin property estimate Sensor for Home Assistant", "domain": "redfin", "etag_repository": "W/\"5045ce6c928149c550e76005433686789f2f78625a785d4d0b3cfef6f50b4d8c\"", "full_name": "dreed47/redfin", "last_updated": "2021-06-14T19:28:05Z", "stargazers_count": 10, "topics": ["real-estate", "redfin"], "last_fetched": 1665325507.787441, "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": "2021.12.0"}, "authors": ["@elad-bar"], "category": "integration", "description": "Shinobi Video custom component for HA", "domain": "shinobi", "etag_repository": "W/\"f0ca304271a6636f541017569a982b5cc395d222a02c9e161a110be5c218bafc\"", "full_name": "elad-bar/ha-shinobi", "last_updated": "2022-10-08T07:14:35Z", "stargazers_count": 33, "topics": ["shinobi"], "last_fetched": 1665325520.733294, "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"}, "authors": ["@LaggAt"], "category": "integration", "description": "A HACS repository for Govee light integration", "domain": "govee", "etag_repository": "W/\"76b3a407692cb260c89dfa9b2e1229016073bfb82da6d2f84f51d9a59d1a775a\"", "full_name": "LaggAt/hacs-govee", "last_updated": "2022-06-09T18:27:12Z", "stargazers_count": 133, "topics": ["devcontainer", "govee", "light"], "last_fetched": 1666451398.380366, "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"}, "authors": ["@pcourbin"], "category": "integration", "description": "Home Assistant custom component for GCE Ecodevices RT2", "domain": "ecodevices_rt2", "etag_repository": "W/\"636a201ce28fd3000961b2318bd4a0ba24dc141d01dd624e494c8d52d048d075\"", "full_name": "pcourbin/ecodevices_rt2", "last_updated": "2022-01-06T09:15:40Z", "stargazers_count": 1, "last_fetched": 1641470545.551656, "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"}, "authors": ["@dgomes"], "category": "integration", "description": "Home Assistant custom component for openHASP", "domain": "openhasp", "etag_repository": "W/\"3d14823e2b7b4c596e6273dcbe7136a08bfd008efaf550ed1bdba8500625b7c1\"", "full_name": "HASwitchPlate/openHASP-custom-component", "last_updated": "2022-08-21T20:06:08Z", "stargazers_count": 30, "topics": ["openhasp"], "last_fetched": 1665325558.896664, "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}, "authors": ["@mbillow"], "category": "integration", "description": "RedPocket Integration for Data Usage Monitoring", "domain": "redpocket", "etag_repository": "W/\"ce7413940602c45623e9e7ea57b9585bd5b1ca0f6cf224244632c2685135840e\"", "full_name": "mbillow/ha-redpocket", "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}, "authors": ["@AlexxIT"], "category": "integration", "description": "Home Assistant custom component for viewing IP cameras RTSP stream in real time using WebRTC and MSE technology", "domain": "webrtc", "etag_repository": "W/\"c16e942eb59c504783c77c0074ff96562d90c2e3e3b21d91e658abd5f00f9066\"", "full_name": "AlexxIT/WebRTC", "last_updated": "2022-08-24T17:51:49Z", "stargazers_count": 684, "topics": ["ip-camera", "mediasource-extensions", "rtsp", "webrtc"], "last_fetched": 1666451171.530136, "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}, "authors": ["@bahorn", "@koying"], "category": "integration", "description": "OpenRGB integration for Home Assistant", "domain": "openrgb", "etag_repository": "W/\"122d8f251d27d1194600e31a50997434f240a7b04c75cdd8648b88eb129fec36\"", "full_name": "koying/openrgb_ha", "last_updated": "2022-06-18T12:53:49Z", "stargazers_count": 53, "topics": ["light", "openrgb"], "last_fetched": 1665325622.719798, "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"}, "authors": ["@krahabb"], "category": "integration", "description": "Home Assistant integration for Meross devices", "domain": "meross_lan", "etag_repository": "W/\"fecc73c600721fb622fa7dedab5eea09dd017530a8bfd9ba67bcb39b431821ed\"", "full_name": "krahabb/meross_lan", "last_updated": "2022-10-10T19:56:57Z", "stargazers_count": 160, "topics": ["meross", "meross-devices", "meross-homeassistant", "meross-lan"], "last_fetched": 1666451390.745734, "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"}, "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/\"8dc9d765854420c0c7061ce7ca0ab3a722bde4d2fa938c06ded3e391a416de43\"", "full_name": "AlexxIT/YandexStation", "last_updated": "2022-09-13T05:54:46Z", "stargazers_count": 802, "topics": ["tts", "yandex-station"], "last_fetched": 1666451171.642204, "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"}, "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\"", "full_name": "sprocket-9/hacs-nuvo-serial", "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}, "authors": ["@viktak"], "category": "integration", "description": "Home Assistant custom component combining multiple OpenWeatherMap API calls", "domain": "openweathermap_all", "etag_repository": "W/\"63df213300253a3d96932bd07d4520821cfe7a6382a67aab3ab2fba9146c1a55\"", "full_name": "viktak/ha-cc-openweathermap_all", "last_updated": "2022-02-24T04:49:46Z", "stargazers_count": 15, "topics": ["openweathermap"], "last_fetched": 1661585346.936789, "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}, "authors": ["@viktak"], "category": "integration", "description": "Home Assistant custom component for the abalin name day API", "domain": "abalin_nameday", "etag_repository": "W/\"596b1fb78d314a62b50fd9a670b6b9f809522f6936b886f314721e91e3ec50fd\"", "full_name": "viktak/ha-cc-abalin-nameday", "last_updated": "2022-02-24T10:30:22Z", "stargazers_count": 5, "topics": ["namedays"], "last_fetched": 1646497130.873351, "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"}, "category": "plugin", "description": "Custom brand icons for Home Assistant", "domain": "", "etag_repository": "W/\"b6a999cbcf7d845b72db8c4c40e76688111d56cd1e0732742182a02eaedb3a1d\"", "full_name": "elax46/custom-brand-icons", "last_updated": "2022-10-07T20:17:43Z", "stargazers_count": 179, "topics": ["custom-icons", "icons", "icons-pack", "iconset", "ikea", "philips-hue", "xiaomi"], "last_fetched": 1665325228.137053, "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"}, "category": "plugin", "description": "Meteoalarm, M\u00e9t\u00e9o-France and DWD severe weather warnings card for Home Assistant Lovelace UI \u26c8\ufe0f", "domain": "", "downloads": 1053, "etag_repository": "W/\"82bbe939b523f08fbf6ebe0cb35d85b3edf52e70fbf6ba8cd4eec121df10917a\"", "full_name": "MrBartusek/MeteoalarmCard", "last_updated": "2022-08-29T10:45:59Z", "stargazers_count": 48, "topics": ["deutscher-wetterdienst", "dwd", "lovelace-card", "meteo-france", "meteoalarm", "meteoalarmeu", "nina", "nws", "weather"], "last_fetched": 1662801567.990478, "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"}, "category": "plugin", "description": "Frontend plugin to control fans in Home Assistant using preset modes for speeds", "domain": "", "etag_repository": "W/\"f448bd6aba6664bf97f807f31f5cbf8adb105d1c76d68e821123f7e7b7795e7c\"", "full_name": "finity69x2/fan-mode-button-row", "last_updated": "2022-03-25T18:34:55Z", "stargazers_count": 8, "topics": ["fan", "plugin", "preset"], "last_fetched": 1662801514.516803, "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"}, "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/\"abe06cf8ab3dc6cfa64a3ca30a54fc7d7f24ca699f4393bb6bbba84c90eca098\"", "full_name": "JurajNyiri/PlexMeetsHomeAssistant", "last_updated": "2022-03-23T18:42:53Z", "stargazers_count": 67, "topics": ["adb", "androidtv", "hacktoberfest2021", "homeassistant-custom-component", "kodi", "plex", "plexmediaserver", "tv"], "last_fetched": 1666451590.242277, "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"}, "authors": ["@ec-blaster"], "category": "integration", "description": "Magic Switchbot integration component for Home Assistant", "domain": "magicswitchbot", "etag_repository": "W/\"60bdaa7cccd6c44727a59463bf1ab96451679e4b4f2429263abe6cf8dd7f368e\"", "full_name": "ec-blaster/magicswitchbot-homeassistant", "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}, "authors": ["@GuilleGF"], "category": "integration", "description": "OVH DynHost Updater Component for https://www.home-assistant.io/", "domain": "ovh", "etag_repository": "W/\"3c5fa8eb9691fedd4538c75474d43e29717220ae8b56804fda862c1c95228d96\"", "full_name": "GuilleGF/hassio-ovh", "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}, "authors": ["@midstar"], "category": "integration", "description": "Heatmiser Wifi Home Assistant Component", "domain": "heatmiser_wifi", "etag_repository": "W/\"c44fc0fdf4623900ed3fc19ec6a49a01d9896adec3625ea853cd172416158cd9\"", "full_name": "midstar/heatmiser_wifi_ha", "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}, "authors": ["@koying"], "category": "integration", "description": "Jellyfin integration for Home Assistant", "domain": "jellyfin", "etag_repository": "W/\"586989639b011612f2ee18ceaeb9dbac1a2a7e88ae51955f38d23c87069602b3\"", "full_name": "koying/jellyfin_ha", "last_updated": "2022-07-06T08:53:18Z", "stargazers_count": 66, "topics": ["jellyfin"], "last_fetched": 1665938924.493709, "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}, "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\"", "full_name": "Mr-Groch/HA-Emulated-Color-Temp-Light", "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}, "authors": ["@slashback100"], "category": "integration", "description": "Home Assistant Presence Simulation", "domain": "presence_simulation", "etag_repository": "W/\"904941b71a1010c4c417299f8528986f4cc4dabc27b702316ce7fda268485c07\"", "full_name": "slashback100/presence_simulation", "last_updated": "2022-08-04T18:56:44Z", "stargazers_count": 141, "topics": ["historic", "presence", "presence-simulation", "simulation"], "last_fetched": 1666451517.497918, "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}, "authors": ["@thebytestuff"], "category": "integration", "description": "Home Assistant Custom Component - send Syslog message to remote server.", "domain": "remote_syslog", "etag_repository": "W/\"e86fcb6a5f3ed1599b6e0f4bcfba2fdd3595a453504cf2f4fff9d9cfc6c5c627\"", "full_name": "TheByteStuff/RemoteSyslog_Service", "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}, "authors": ["@myhomeiot"], "category": "integration", "description": "Control Dahua VTO/VTH devices from Home Assistant", "domain": "dahua_vto", "etag_repository": "W/\"c71aa22bfa0018e8929db63d2283955f203a06cbece5e0d4e375672709ddc201\"", "full_name": "myhomeiot/DahuaVTO", "last_updated": "2022-08-14T08:16:15Z", "stargazers_count": 77, "topics": ["dahua"], "last_fetched": 1665325676.482962, "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}, "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\"", "full_name": "shaiu/technicolor", "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"}, "category": "plugin", "description": "Home assistant sun card based on Google weather design", "domain": "", "downloads": 43278, "etag_repository": "W/\"3d88f5d2f69c55a563b85be1907425204b20d9b4e891dc0a0903eb170b5378bf\"", "full_name": "AitorDB/home-assistant-sun-card", "last_updated": "2022-10-16T18:51:01Z", "stargazers_count": 324, "topics": ["sun", "sun-card"], "last_fetched": 1666451582.945793, "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"}, "authors": ["@osk2"], "category": "integration", "description": "\ud83d\udd1b Panasonic Smart App integration for Home Assistant.", "domain": "panasonic_smart_app", "etag_repository": "W/\"c9b29432c0ee0ce1ebbc3c80a2dfc5344edb246f8845f14c4e60b6ff9f48dfc2\"", "full_name": "osk2/panasonic_smart_app", "last_updated": "2022-08-28T08:50:30Z", "stargazers_count": 36, "topics": ["panasonic"], "last_fetched": 1665325688.889083, "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}, "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/\"c810548139e708a990f127d3676fa7ebe019529a9bff6252c1e65c0825149a50\"", "full_name": "Petro31/ha-integration-multizone-controller", "last_updated": "2021-06-09T21:34:52Z", "stargazers_count": 11, "topics": ["media-players", "multizone-controller", "volume-increment", "zone-volume"], "last_fetched": 1666451461.942219, "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}, "category": "plugin", "description": "Type on your WebOS TV using this lovelace card", "domain": "", "etag_repository": "W/\"8fa3e87739397ab0cb94b83b0b20d26ee836657b9ff3ca5be84347b06732e3c3\"", "full_name": "bernikr/lovelace-webos-keyboard-card", "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}, "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": 1814, "etag_repository": "W/\"e1b191d7bfaddf83c2091501a7958f4ed1adbb17af1fd2847212188655f4faf6\"", "full_name": "adizanni/floor3d-card", "last_updated": "2022-09-23T21:17:35Z", "stargazers_count": 258, "topics": ["3d-models", "card", "entity-bindings"], "last_fetched": 1666451583.18184, "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}, "category": "plugin", "description": "A custom digital clock card for Home Assistant", "domain": "", "downloads": 11142, "etag_repository": "W/\"b8e789a746099e61a0a453655b880bbeef46b5f93f790ae60fa2bce1904035ec\"", "full_name": "wassy92x/lovelace-digital-clock", "last_updated": "2022-05-15T21:00:25Z", "stargazers_count": 28, "topics": ["lovelace-card"], "last_fetched": 1661584925.883296, "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}, "category": "plugin", "description": "A custom dashboard for Home Assistant with sidebar", "domain": "", "downloads": 4430, "etag_repository": "W/\"37ad2592cba208002b83cd9cd397dda1ced10f5b765f8808bc2f8a2ce95c8f0a\"", "full_name": "wassy92x/lovelace-ha-dashboard", "last_updated": "2022-05-15T20:59:27Z", "stargazers_count": 15, "last_fetched": 1666451596.016023, "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}, "category": "plugin", "description": "A custom card for Home Assistant to group multiple buttons", "domain": "", "downloads": 3631, "etag_repository": "W/\"8edc0862e19ad207cf560f3058f7cd9925a40d84f1649670ef742e508ef65274\"", "full_name": "wassy92x/lovelace-entities-btn-group", "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}, "authors": ["@rroller"], "category": "integration", "description": "Dahua Camera and Doorbell Home Assistant Integration", "domain": "dahua", "etag_repository": "W/\"587c96041574c9bf73b65732e85164bea6e393d43ecda38a29b4942b89960468\"", "full_name": "rroller/dahua", "last_updated": "2022-10-21T15:15:59Z", "stargazers_count": 192, "topics": ["amcrest", "camera", "dahua", "doorbell", "ipcam", "lorex"], "last_fetched": 1666451496.779172, "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"}, "authors": ["@make-all"], "category": "integration", "description": "Metlink Wellington Public Transport integration for Home Assistant", "domain": "metlink", "etag_repository": "W/\"807a85dc3c187d0ba3ee8d8a13fd85a208e1a1f2763037983fdd2c2498c8ee63\"", "full_name": "make-all/metlink-nz", "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"}, "authors": ["@jadson179"], "category": "integration", "description": "home-assistant service for control the consul \ud83d\udd34", "domain": "consul", "etag_repository": "W/\"b317a562e212cff043d79b3eeba8767a633e155befc76e1c6907aa9199829d94\"", "full_name": "jadson179/consul", "last_updated": "2021-10-09T12:30:45Z", "stargazers_count": 2, "topics": ["consul"], "last_fetched": 1657362784.071772, "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}, "authors": ["@rsnodgrass"], "category": "integration", "description": "Helium blockchain sensors for Home Assistant", "domain": "helium", "etag_repository": "W/\"83ad4bd6d43e2251491001e36816c76cdcde5a67a262b0c5479a7cfb48297cbe\"", "full_name": "rsnodgrass/hass-helium", "last_updated": "2022-03-21T05:12:01Z", "stargazers_count": 33, "topics": ["helium", "helium-blockchain", "lorawan", "lorawan-network"], "last_fetched": 1662801945.264775, "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"}, "authors": ["@h4de5"], "category": "integration", "description": "VIMAR by-me integration into home-assistant.io", "domain": "vimar", "downloads": 11, "etag_repository": "W/\"ef67f3401cfc28ef9c9b0a2cda710729f37369f874469744306bfcc4d5cd9598\"", "full_name": "h4de5/home-assistant-vimar", "last_updated": "2022-07-25T16:29:19Z", "stargazers_count": 33, "topics": ["vimar", "vimar-platform"], "last_fetched": 1665325554.716698, "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"}, "authors": ["@amaximus"], "category": "integration", "description": "Meteo alerts for Hungary", "domain": "met_alerts_hu", "etag_repository": "W/\"e6f8b404f3970822b48e5e945413da622a9c6de1818ceb416eefb5f8b75403c5\"", "full_name": "amaximus/met_alerts_hu", "last_updated": "2021-12-10T12:23:17Z", "stargazers_count": 8, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1646496758.52727, "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}, "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\"", "full_name": "Mr-Groch/ambihue", "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": "SL Integration (HASL)", "country": "SE", "homeassistant": "2021.12.0"}, "authors": ["@DSorlov"], "category": "integration", "description": "Swedish Public Transport Sensor (HASL). Formerly named HomeAssistant SL Sensor", "domain": "hasl3", "etag_repository": "W/\"f2b290deee990fca7d4b159ba6fd956a3965b0186b266df465a800e020d42891\"", "full_name": "hasl-sensor/integration", "last_updated": "2022-08-18T08:55:26Z", "stargazers_count": 22, "topics": ["ha-sensor-sl", "hasl", "hasl3", "haslv3", "sl-sensor", "stockholms-lokaltrafik"], "last_fetched": 1661585111.407266, "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}, "authors": ["@yuval_mejahez"], "category": "integration", "description": "Jewish Shabbat Yomtov and Holidays times and event", "domain": "hebcal", "etag_repository": "W/\"04fb3cfea628d87d6d52667307a44c0cf0dc3b3bf751e912508bb313d74ddfc4\"", "full_name": "rt400/Jewish-Sabbaths-Holidays", "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}, "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Electric Rice Cooker integration for Home Assistant", "domain": "xiaomi_miio_cooker", "etag_repository": "W/\"471febcdcbef5af3365318710e9828ba54b31c1ef56d36f6c8349bc26e1df404\"", "full_name": "syssi/xiaomi_cooker", "last_updated": "2022-08-10T18:47:41Z", "stargazers_count": 115, "topics": ["miio", "miio-protocol", "rice-cooker", "xiaomi", "xiaomi-cooker"], "last_fetched": 1665325766.727796, "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"}, "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Smart Fan integration for Home Assistant", "domain": "xiaomi_miio_fan", "etag_repository": "W/\"4e029ba67a3542422392dbc7f32ffec3b39c31bf416463af22056524a1911916\"", "full_name": "syssi/xiaomi_fan", "last_updated": "2022-08-15T13:47:04Z", "stargazers_count": 311, "topics": ["fan", "miio", "miio-protocol", "miot", "xiaomi"], "last_fetched": 1666451530.180282, "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"}, "authors": ["@bramstroker"], "category": "integration", "description": "Custom component to calculate estimated power consumption of lights and other appliances", "domain": "powercalc", "downloads": 5278, "etag_repository": "W/\"7665421deb35a5cf4bf28889c93e240c998b0de299e1d1a83a1e927455a6fcd5\"", "full_name": "bramstroker/homeassistant-powercalc", "last_updated": "2022-10-22T14:49:40Z", "stargazers_count": 444, "topics": ["consumption", "energy-monitor", "hue-lights", "metering", "power"], "last_fetched": 1666451209.387441, "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}, "authors": ["@PaulAnnekov"], "category": "integration", "description": "Device tracker component that uses Padavan-based router", "domain": "padavan_tracker", "etag_repository": "W/\"9c393d48f55e94da6139979905f93062edbdcd00f40d9a52707385854960ed91\"", "full_name": "PaulAnnekov/home-assistant-padavan-tracker", "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"]}, "authors": ["@Racailloux"], "category": "integration", "description": "Home Assistant integration to support PiJuice UPS Hat and retrieve values to sensors.", "domain": "pijuice", "etag_repository": "W/\"bf1b69d89f77c336a0191fc3901fc893870964d7b3cc76eb2f0824592771e8c2\"", "full_name": "Racailloux/home-assistant-pijuice", "last_updated": "2022-10-18T16:59:55Z", "stargazers_count": 10, "topics": ["battery", "hat", "integrations", "pijuice", "raspberry-pi", "sensors", "ups", "voltage"], "last_fetched": 1666451477.360296, "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}, "category": "plugin", "description": "Minimalistic graph card for Home Assistant Lovelace UI", "domain": "", "downloads": 89314, "etag_repository": "W/\"8e2321c4a958ccc065f75cb2047e47c5ae0618beadaa7c4f8cc13b9687cef7a7\"", "full_name": "kalkih/mini-graph-card", "last_updated": "2022-10-17T02:04:02Z", "stargazers_count": 2067, "topics": ["automation", "custom", "graph"], "last_fetched": 1666451590.290029, "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"}, "authors": ["@ludeeus"], "category": "integration", "description": "Use Jinja and data from Home Assistant to generate your README.md file", "domain": "readme", "downloads": 28, "etag_repository": "W/\"e9aa7f16df7d6e7cece3119e68f843cc0c97b77112db4924958c9603b9ca7cd0\"", "full_name": "custom-components/readme", "last_updated": "2022-05-28T08:50:23Z", "stargazers_count": 19, "topics": ["automation", "jinja", "readme"], "last_fetched": 1653847891.395102, "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}, "authors": ["@xilense"], "category": "integration", "description": "AIMP custom component for \ud83c\udfe0 Home Assistant using web remote", "domain": "aimp", "etag_repository": "W/\"1a9c5c5423e2aa39ffec21ee341f2214d9a90a7bc77bfe9c60cd5533cccb0a09\"", "full_name": "xilense/aimp_custom_component", "last_updated": "2021-06-21T18:20:20Z", "stargazers_count": 4, "topics": ["aimp", "internet-of-things", "iot", "iot-automation", "mediaplayer", "raspberry-pi", "remote-control", "smarthome"], "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"}, "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\"", "full_name": "GuyLewin/home-assistant-crunch-o-meter", "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"}, "category": "plugin", "description": "A progress bar display for Home Assistant timers", "domain": "", "downloads": 4710, "etag_repository": "W/\"b5ef83f71474a7aa2094c613f7319dce6f39c79dad03d385cafc18c6a998eda9\"", "full_name": "rianadon/timer-bar-card", "last_updated": "2022-08-25T17:25:03Z", "stargazers_count": 124, "last_fetched": 1665938667.329845, "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"}, "category": "plugin", "description": "Home Assistant card for collecting OpenSprinkler status", "domain": "", "downloads": 1133, "etag_repository": "W/\"f3f90647ee4713315d2c18782598e2ddea1726fd4a33a265fc0afcf8fe05dfa9\"", "full_name": "rianadon/opensprinkler-card", "last_updated": "2022-07-09T18:00:45Z", "stargazers_count": 46, "topics": ["opensprinkler"], "last_fetched": 1665325307.333806, "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"}, "authors": ["@rogro82", "@wibias"], "category": "integration", "description": "Home Assistant variables component", "domain": "variable", "etag_repository": "W/\"f9278a4887b742857d5eef8dfeda47b92624508d379c556a446e7c6f6c94f9a0\"", "full_name": "Wibias/hass-variables", "last_updated": "2022-09-10T18:22:36Z", "stargazers_count": 36, "topics": ["counter", "keypad", "last-motion", "timer", "variables"], "last_fetched": 1665939065.309521, "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"}, "authors": ["@cjne"], "category": "integration", "description": "Home Assistant customcomponent for SunSpec modbus devices", "domain": "sunspec", "etag_repository": "W/\"825bbb4e5b3ca108065a2957ca82bff02fddb5199483fb67fe523217a4403ad7\"", "full_name": "CJNE/ha-sunspec", "last_updated": "2022-10-19T05:17:20Z", "stargazers_count": 27, "topics": ["sunspec"], "last_fetched": 1666451225.737088, "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}, "authors": ["@Aohzan"], "category": "integration", "description": "Home Assistant custom component for GCE Eco-Devices", "domain": "ecodevices", "etag_repository": "W/\"0e331b722f00fc3bc7ac57f61f1c73a84008b6b32f2164963a1f1f7c4176b704\"", "full_name": "Aohzan/ecodevices", "last_updated": "2022-06-22T21:53:24Z", "stargazers_count": 9, "topics": ["eco-devices", "gce-electronics"], "last_fetched": 1662801639.34043, "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"]}, "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\"", "full_name": "Sha-Darim/brandriskute", "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"}, "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/\"668761b422bfaa2237b46b4180de72baa9f3132b165bef5cb2d2d6a6530ec09b\"", "full_name": "tgcowell/waves", "last_updated": "2022-07-25T05:30:44Z", "stargazers_count": 42, "last_fetched": 1665938541.766557, "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"}, "category": "plugin", "description": "Home Assistant card for controlling the Alarmo component", "domain": "", "downloads": 7725, "etag_repository": "W/\"b637c3339f989c9ad9583479b8a9709b4a1f12bde0d66f0f39e156545586c9da\"", "full_name": "nielsfaber/alarmo-card", "last_updated": "2022-08-17T13:02:54Z", "stargazers_count": 52, "topics": ["alarm", "alarmo", "assistant", "card", "home", "security"], "last_fetched": 1665325293.409741, "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"}, "category": "plugin", "description": "Simple last-updated card for Home assistant lovelace", "domain": "", "etag_repository": "W/\"fbabc715d84dd6195a2b5e1e361dd961460c3e0ceb50a8a5df74097594f73353\"", "full_name": "itobey/update-time-card", "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}, "category": "plugin", "description": "Additional vector icons for home assistant to model Philips Hue bulbs and fixtures. ", "domain": "", "downloads": 2739, "etag_repository": "W/\"f7979074c7b496d3d1174395a4596abc6a7b8a2b1312a69ff7ffcd0c7edf3480\"", "full_name": "arallsopp/hass-hue-icons", "last_updated": "2022-10-11T11:18:28Z", "stargazers_count": 183, "topics": ["custom-icons", "hue", "hue-lights", "icons", "iconset", "philips-hue", "svg"], "last_fetched": 1665938553.283723, "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"]}, "authors": ["@aex351"], "category": "integration", "description": "Neerslag app for Home Assistant. All-in-one package (Sensors + Card).", "domain": "neerslag", "etag_repository": "W/\"024b357b561cfbb97882c6eade5a19b3718cdc30783dc5654b24fdf9f38444e5\"", "full_name": "aex351/home-assistant-neerslag-app", "last_updated": "2022-07-08T17:26:32Z", "stargazers_count": 26, "last_fetched": 1661584932.311773, "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}, "authors": ["@alexander0042"], "category": "integration", "description": "Replacement for the default Dark Sky Home Assistant integration using Pirate Weather ", "domain": "pirateweather", "etag_repository": "W/\"a950bea96ae04765df6421064c576faf5959456b75defc3a12059681412b4c6b\"", "full_name": "alexander0042/pirate-weather-ha", "last_updated": "2022-10-20T19:02:46Z", "stargazers_count": 119, "topics": ["darksky-api", "weather-api"], "last_fetched": 1666451166.278078, "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}, "authors": ["@benleb"], "category": "integration", "description": "SureHA \ud83d\udc3e monitor & control your Sure Petcare devices via Home Assistant", "domain": "sureha", "etag_repository": "W/\"587d7a2637dd0eb8e002c24f330cc446a3acff85e560db4f4b8d05fc34ea613d\"", "full_name": "benleb/sureha", "last_updated": "2021-09-20T15:35:49Z", "stargazers_count": 13, "topics": ["surepet", "surepetcare", "surepy"], "last_fetched": 1661584971.583631, "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"}, "authors": ["@alryaz"], "category": "integration", "description": "TNS Energo Integration", "domain": "tns_energo", "etag_repository": "W/\"300f5943565baed01726bbac5bc969bfaaad922d706d6a76bbcaf74c7fcde7d9\"", "full_name": "alryaz/hass-tns-energo", "last_updated": "2022-04-12T21:11:28Z", "stargazers_count": 9, "topics": ["moscow", "tns-energo"], "last_fetched": 1653229582.420045, "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}, "authors": ["@golles"], "category": "integration", "description": "Custom component that integrates KNMI weather service in to Home Assistant", "domain": "knmi", "etag_repository": "W/\"3f6a7a7918bfb58742b9c3ccc7a50e1e404395b6154a04f1b2776c1085525db6\"", "full_name": "golles/ha-knmi", "last_updated": "2022-07-16T13:21:24Z", "stargazers_count": 17, "topics": ["home-assistant-component", "home-assistant-integration", "knmi", "weather", "weerlive"], "last_fetched": 1662801778.256347, "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}, "authors": ["@dylandoamaral"], "category": "integration", "description": "A Trakt integration for Home Assistant compatible with upcoming media card", "domain": "trakt_tv", "etag_repository": "W/\"040854960bb44d42c247792cac5e96288538c03c21b020da40e7e24a08d63deb\"", "full_name": "dylandoamaral/trakt-integration", "last_updated": "2022-10-14T06:33:32Z", "stargazers_count": 16, "topics": ["custom", "movie", "show", "trakt", "upcoming-media-card"], "last_fetched": 1665938821.304615, "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"}, "authors": ["@edekeijzer"], "category": "integration", "description": "OSRM travel time sensor for Home Assistant", "domain": "osrm_travel_time", "etag_repository": "W/\"f742f4cee51a6083470d534cc6f67a3e1c10639f5c8de8e8cdc5b7818f8e713a\"", "full_name": "edekeijzer/osrm_travel_time", "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}, "authors": ["@basnijholt", "@RubenKelevra"], "category": "integration", "description": "Adaptive Lighting custom component for Home Assistant", "domain": "adaptive_lighting", "etag_repository": "W/\"d339d991e3dd746918c95e3d7be8ee560575b99496eb4d66dfe02c7f542be003\"", "full_name": "basnijholt/adaptive-lighting", "last_updated": "2022-09-01T14:57:51Z", "stargazers_count": 697, "topics": ["adaptive-lighting", "automation", "hue", "iot", "lights", "sunrise", "sunset", "zigbee"], "last_fetched": 1666451198.452017, "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"}, "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/\"1b6eeccddf1419693a0850e2e3108aba3e5a3407df75862812005d5b187c0444\"", "full_name": "alryaz/hass-lkcomu-interrao", "last_updated": "2022-05-17T20:58:09Z", "stargazers_count": 27, "topics": ["altaienergosbyt", "bashelektrosbyt", "energosbyt", "esbvolga", "mosenergosbyt", "sevesk", "tambovenergosbyt", "tomskenergosbyt"], "last_fetched": 1665325392.3008, "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"}, "authors": ["@CreasolTech"], "category": "integration", "description": "Home Assistant integration for Creasol DomBus RS485 modules (inputs, outputs, sensors).", "domain": "creasoldombus", "etag_repository": "W/\"d1fb7d5dbd83ae905361350a184f214c97096227948f1a15648ce1efcfe8eede\"", "full_name": "CreasolTech/home-assistant-creasol-dombus", "last_updated": "2021-09-07T08:23:37Z", "stargazers_count": 1, "topics": ["dombus", "domotic", "rs485", "smart-home", "smarthome"], "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"}, "authors": ["@alryaz"], "category": "integration", "description": "Moscow PGU services for HomeAssistant", "domain": "moscow_pgu", "etag_repository": "W/\"642a9b1f07a1267a71979f5db0e0bc04c53c90ad18be24eff3da371533541be9\"", "full_name": "alryaz/hass-moscow-pgu", "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}, "authors": ["@chouffy"], "category": "integration", "description": "Control a Libratone Zipp speaker within Home Assistant", "domain": "libratone_zipp", "etag_repository": "W/\"291eaf61836c69229654147e6d05057f40a699b92326ffd497a4a92a22d88fd9\"", "full_name": "Chouffy/home_assistant_libratone_zipp", "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"}, "authors": ["@blakeblackshear"], "category": "integration", "description": "Frigate integration for Home Assistant", "domain": "frigate", "etag_repository": "W/\"9e6aac704c9bb5586b3759db86846c0a941fb029741e636428549235d0cdab82\"", "full_name": "blakeblackshear/frigate-hass-integration", "last_updated": "2022-10-21T21:15:32Z", "stargazers_count": 296, "topics": ["ai", "camera", "frigate", "nvr", "object-detection"], "last_fetched": 1666451203.877847, "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}, "authors": ["@Aohzan"], "category": "integration", "description": "IPX800 V4 integration for Home-Assistant", "domain": "ipx800v4", "etag_repository": "W/\"fb1cd9e63e3d717f21649968ad7908fc4bc18b6a8f67d10392a50ba17d1a1498\"", "full_name": "Aohzan/ipx800", "last_updated": "2022-08-31T13:37:52Z", "stargazers_count": 13, "topics": ["gce-electronics", "ipx800"], "last_fetched": 1665325407.911231, "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}, "authors": ["@hwmland"], "category": "integration", "description": "XMR Pool Statistics integration for Home Assistant", "domain": "xmrpool_stat", "etag_repository": "W/\"38e059d78300889d265b8d68e504df5b5022dfe2e2ac98ab10544e7adebbc311\"", "full_name": "hwmland/homeassistant-xmrpool_stat", "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"}, "authors": ["@juacas"], "category": "integration", "description": "Honor X3 router Device tracker for Home Assistant", "domain": "honor_x3", "etag_repository": "W/\"2b425dfe442cfab135920364ccbb94edabe532e640ff0313aa649b5167a1dc0e\"", "full_name": "juacas/honor_x3", "last_updated": "2021-08-24T07:44:17Z", "stargazers_count": 6, "topics": ["device-tracker", "presence-detection", "router"], "last_fetched": 1656859239.42718, "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}, "authors": ["@jcgoette"], "category": "integration", "description": "This custom integration provides sensors for Weight Gurus API endpoints.", "domain": "weight_gurus", "etag_repository": "W/\"29195044d8866964cb3deef90919134fc12a89fdc7c22ade7059ab0c07e3f957\"", "full_name": "jcgoette/weight_gurus_homeassistant", "last_updated": "2021-12-18T04:00:33Z", "stargazers_count": 3, "topics": ["health", "home-assistant-component", "home-assistant-sensor", "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}, "authors": ["@mwestra"], "category": "integration", "description": "niu scooter integration for Home assistant.", "domain": "niu", "etag_repository": "W/\"d407fe1a50e7fe253fb4533d464f9383b91f37312afb23e8dd555025d6eed3aa\"", "full_name": "marcelwestrahome/home-assistant-niu-component", "last_updated": "2022-08-12T19:54:54Z", "stargazers_count": 21, "topics": ["niu", "scooters"], "last_fetched": 1662801869.992623, "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"}, "authors": ["@madpilot"], "category": "integration", "description": "Home Assistant Component to pull the latest energy prices from Amber Electric", "domain": "amberelectric", "etag_repository": "W/\"21d4f432318b1a16c167bc1a6b8fb28738365886c472f066d10c7f13e5dfc1e8\"", "full_name": "madpilot/hass-amber-electric", "last_updated": "2021-10-07T09:01:00Z", "stargazers_count": 24, "topics": ["amber-electric", "electricity-market", "electricity-prices"], "last_fetched": 1656859284.8933, "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"}, "authors": ["@tiemooowh"], "category": "integration", "description": "Teletask (DoIP) Integration for Home Assistant Comunity Store (HACS)", "domain": "teletask", "etag_repository": "W/\"bacbf933b095af6f04141115fde84e40b6da53d230d953cb33e4564294a556df\"", "full_name": "Tiemooowh/homeassistant-teletask", "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}, "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\"", "full_name": "moox-it/hass-moox-track", "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"}, "authors": ["@nyffchanium"], "category": "integration", "description": "Home Assistant integration for Argoclima (Argo) climate control devices", "domain": "argoclima", "etag_repository": "W/\"4418fb90f8f5a1b5d1db27c0ffe273b585bac8dd6237cc41161f3f329195e208\"", "full_name": "nyffchanium/argoclima-integration", "last_updated": "2022-07-10T15:42:09Z", "stargazers_count": 8, "topics": ["argo", "argoclima", "climate-control"], "last_fetched": 1661585234.36526, "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"}, "authors": ["@lbbrhzn"], "category": "integration", "description": "Home Assistant integration for electric vehicle chargers that support the Open Charge Point Protocol (OCPP).", "domain": "ocpp", "downloads": 457, "etag_repository": "W/\"137a91212a69d295310a6d7722d29d6ffbcbe2fcfb97fe4a501ce14a01c9baae\"", "full_name": "lbbrhzn/ocpp", "last_updated": "2022-10-21T15:14:36Z", "stargazers_count": 87, "topics": ["ocpp"], "last_fetched": 1666451398.68431, "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}, "authors": ["@TheRealWaldo"], "category": "integration", "description": "Thermal Vision Sensor and Camera for Home Assistant", "domain": "thermal_vision", "etag_repository": "W/\"3e16d2885638a3d6b207ff43f18cf6f941d11307a6d46ea85414f1703907c4c0\"", "full_name": "TheRealWaldo/thermal", "last_updated": "2022-10-13T15:22:48Z", "stargazers_count": 39, "topics": ["homeassistant-custom-component"], "last_fetched": 1665939062.234462, "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"}, "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\"", "full_name": "troykelly/homeassistant-au-nsw-covid", "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"}, "authors": ["@JoshuaMulliken"], "category": "integration", "description": "Home Assistant Integration for Wyze devices.", "domain": "wyzeapi", "etag_repository": "W/\"661f2d08ba5db741c0ac7632c0c6d2e9289cdac4aafdb0719fed5eef6fbd72cd\"", "full_name": "JoshuaMulliken/ha-wyzeapi", "last_updated": "2022-10-20T18:40:57Z", "stargazers_count": 478, "topics": ["bulb", "switch", "wyze", "wyze-bulbs", "wyze-switchs"], "last_fetched": 1666451367.767814, "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}, "authors": ["@rroller"], "category": "integration", "description": "Netgear Home Assistant Integration", "domain": "netgear_wax", "etag_repository": "W/\"2d2f71d7118fe00cd4f36fabca562dd885b2551c2275445afc83ba4f068a8b86\"", "full_name": "rroller/netgear", "last_updated": "2022-03-17T18:38:10Z", "stargazers_count": 10, "topics": ["netgear", "wax", "wax-610", "wax-620", "wi-fi"], "last_fetched": 1665325730.752596, "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}, "authors": ["@mullerdavid"], "category": "integration", "description": "Gree Extension for built in integration", "domain": "gree_ext", "etag_repository": "W/\"38a68fce18d221a935824ceb69c065d56d29288c62ffe397861704f55ade245a\"", "full_name": "mullerdavid/hass_GreeExt", "last_updated": "2022-04-18T15:47:02Z", "stargazers_count": 1, "topics": ["gree"], "last_fetched": 1653733515.155596, "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"}, "authors": ["@IATkachenko"], "category": "integration", "description": "Sleep As Android integration for Home Assistant", "domain": "sleep_as_android", "downloads": 1546, "etag_repository": "W/\"803b6a92a3b0875f74dab4ea0dc285cd4c60103f89aea0eaa5fc603c66f0740f\"", "full_name": "IATkachenko/HA-SleepAsAndroid", "last_updated": "2022-09-11T21:04:07Z", "stargazers_count": 76, "topics": ["mqtt", "sleep-analysis", "sleep-as-android", "sleep-tracker"], "last_fetched": 1666451342.50851, "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}, "authors": ["@sillyfrog"], "category": "integration", "description": "Rollease Acmeda Automate Pulse Hub v2 integration for Home Assistant", "domain": "automate", "etag_repository": "W/\"f19b79b2c71051a780c7c24a2d82eb3268f139e123857af67c529fedc4dc5c7e\"", "full_name": "sillyfrog/Automate-Pulse-v2", "last_updated": "2022-08-08T23:07:22Z", "stargazers_count": 22, "last_fetched": 1661585298.5371, "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"}, "category": "plugin", "description": "A Lovelace card for Frigate in Home Assistant", "domain": "", "downloads": 6284, "etag_repository": "W/\"ae954b87b2b21e52bf6508cb1e1b09d2c3a5014b103d202a1ef24e13e6ca5edf\"", "full_name": "dermotduffy/frigate-hass-card", "last_updated": "2022-10-15T22:46:25Z", "stargazers_count": 171, "topics": ["cctv", "frigate", "nvr"], "last_fetched": 1665938586.453431, "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"}, "authors": ["@amaximus"], "category": "integration", "description": "Anniversary integration for Home Assistant", "domain": "anniversary", "etag_repository": "W/\"1515530ba337021ee432264270c06db58d76c85b725e3618327f850f2c014756\"", "full_name": "amaximus/anniversary", "last_updated": "2022-05-02T18:04:16Z", "stargazers_count": 11, "last_fetched": 1653229582.456794, "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.10.0", "zip_release": true, "filename": "tesla_custom.zip"}, "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": 342, "etag_repository": "W/\"9bdf3cfec31391b48103767660599bd21db20f62c96d8da2f956d52933a2f142\"", "full_name": "alandtse/tesla", "last_updated": "2022-10-22T02:12:32Z", "stargazers_count": 193, "topics": ["home-assistant-component", "tesla"], "last_fetched": 1666451166.562407, "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}, "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/\"c800379989d401d08c219a09005d45e56022a934c7a3033d7328c3c4dd643bb0\"", "full_name": "cyberjunky/home-assistant-garmin_connect", "last_updated": "2022-05-24T19:19:04Z", "stargazers_count": 67, "topics": ["garmin-connect", "home-assistant-component"], "last_fetched": 1665938788.515589, "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": "2021.12.0", "zip_release": true, "filename": "toyota.zip"}, "authors": ["@DurgNomis-drol"], "category": "integration", "description": "Toyota Connected Services integration for Home Assistant.", "domain": "toyota", "downloads": 1082, "etag_repository": "W/\"80f74919ca45f59e17028743b95b58ec032bba594085a677a724949ecf03758a\"", "full_name": "DurgNomis-drol/ha_toyota", "last_updated": "2022-10-12T15:37:13Z", "stargazers_count": 60, "topics": ["car", "toyota", "vehicle"], "last_fetched": 1666451287.793987, "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"}, "authors": ["@djansen1987"], "category": "integration", "description": "SAJ eSolar Portal Sensors", "domain": "saj_esolar", "etag_repository": "W/\"5de7b288821227f90e5aff21d3fec63caa8c9f561d80372fb3f18c59a2abcf5a\"", "full_name": "djansen1987/SAJeSolar", "last_updated": "2022-08-23T15:40:20Z", "stargazers_count": 7, "topics": ["esolar", "intergration", "saj", "solar", "solar-system"], "last_fetched": 1662801726.592501, "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"}, "category": "integration", "description": "Add a Webhook service to HomeAssistant, originally designed for use with Discord Webhooks", "domain": "webhook_service", "etag_repository": "W/\"054963c02e08b59521a46327f3853ad28cc1107a7cb731e83babce5670b29b1d\"", "full_name": "HCookie/Webhook-Service-home-assistant", "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.5.0"}, "authors": ["@h4de5"], "category": "integration", "description": "Toshiba AC integration into home-assistant.io", "domain": "toshiba_ac", "downloads": 173, "etag_repository": "W/\"f64a77f7784db34ad089b2bd311e86a5fb6b75ded921ecf1d6ca4e764fc5308d\"", "full_name": "h4de5/home-assistant-toshiba_ac", "last_updated": "2022-08-14T13:40:12Z", "stargazers_count": 55, "topics": ["climate", "toshiba"], "last_fetched": 1665938863.917205, "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"}, "authors": ["@kotborealis"], "category": "integration", "description": "\u231b Time-based cover. Install it via HACS.", "domain": "cover_time_based_synced", "etag_repository": "W/\"90b1543d82b0e9097931a3129cd7d8be1d053cb1dd405b733cdad2147525c872\"", "full_name": "kotborealis/home-assistant-custom-components-cover-time-based-synced", "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"}, "category": "plugin", "description": "Blind card for Home Assistant Lovelace UI", "domain": "", "etag_repository": "W/\"e698d748b1bd293821302ab620ec9a0ccea9e49d0549649184fa78ad79e6d946\"", "full_name": "tungmeister/hass-blind-card", "last_updated": "2022-01-31T18:19:37Z", "stargazers_count": 25, "last_fetched": 1661584920.770177, "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"}, "authors": ["@firstof9"], "category": "integration", "description": "OpenEI integration for Home Assistant", "domain": "openei", "downloads": 90, "etag_repository": "W/\"372be3eb847d99070b53b1f73064613f68cc8a1447862ad24f400471e0ed5fdf\"", "full_name": "firstof9/ha-openei", "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.2.0", "render_readme": true}, "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/\"070d4cc213a0c9f1e27ab64431779474c44ac5f65207e3d6f7e78dea75e0bd9e\"", "full_name": "golles/ha-kamstrup_403", "last_updated": "2022-07-10T12:25:29Z", "stargazers_count": 14, "topics": ["home-assistant-component", "home-assistant-integration", "kamstrup", "kamstrup403", "stadsverwarming"], "last_fetched": 1665325551.306222, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "372795369": {"repository_manifest": {"name": "Arris DCX960 (Ziggo, Telenet, Magenta, UPC, Virgin)", "country": ["NL", "BE", "CH", "GB", "AT"], "render_readme": true, "homeassistant": "2021.5.0"}, "authors": ["@Sholofly"], "category": "integration", "description": "Custom component to integrate Arris DCX960 Horizon EOS Settopbox into Home Assistant", "domain": "arris_dcx960", "etag_repository": "W/\"3872c60f6e3120b147f8a75c89408322441542d63fcf04481448c47e80f748af\"", "full_name": "Sholofly/arrisdcx960", "last_updated": "2022-06-14T04:13:39Z", "stargazers_count": 28, "topics": ["arris", "eos", "horizon", "magenta", "settopbox", "telenet", "telenet-tv", "telenet-tv-boxes", "upc", "virgin", "virgin-media", "vodafone", "ziggo", "ziggo-next"], "last_fetched": 1665939046.661531, "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"}, "authors": ["@eifinger"], "category": "integration", "description": "Custom Home Assistant Integration for the HERE Destination Weather API", "domain": "here_weather", "etag_repository": "W/\"1719870e614464e47b8f2c790661109708899eebfc3e0c43d189ff2d52ec9507\"", "full_name": "eifinger/hass-here-weather", "last_updated": "2022-01-11T07:41:08Z", "stargazers_count": 2, "topics": ["here-maps-api", "herepy", "homeassistant-custom-component", "pyton"], "last_fetched": 1641895983.019757, "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"}, "authors": ["@scottyphillips"], "category": "integration", "description": "A Home Assistant custom component for use with ECHONET enabled Mitsubishi HVAC systems. ", "domain": "echonetlite", "etag_repository": "W/\"c336358e8d2dc5f4ac44e8ca3578091941c5027f3ad60b3c1d5a80419c58d581\"", "full_name": "scottyphillips/echonetlite_homeassistant", "last_updated": "2022-10-10T08:56:25Z", "stargazers_count": 66, "last_fetched": 1665939042.139458, "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}, "category": "plugin", "description": "Bootstrap grid in Lovelace UI", "domain": "", "downloads": 5059, "etag_repository": "W/\"e7f1f2ab68d4a50068e3fc6108a06eabcdb510de0dd37d3d570560e193b02e8c\"", "full_name": "ownbee/bootstrap-grid-card", "last_updated": "2022-03-19T12:02:28Z", "stargazers_count": 24, "topics": ["bootstrap", "bootstrap-grid-card", "card", "grid", "layout"], "last_fetched": 1662898070.950537, "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"}, "category": "theme", "description": "Noctis theme made Solarized", "domain": "", "etag_repository": "W/\"f47981d81251d2ab2bddf1b5ff4caa14ef05d6848055104148d3f983e967a5c6\"", "full_name": "williamahartman/noctis-solarized", "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}, "authors": ["@barleybobs"], "category": "integration", "description": "A Homeassistant custom component to integrate Ecowater water softeners", "domain": "ecowater_softener", "etag_repository": "W/\"368c49a7acefe6c5658d5e942288f03d6319f936a17d431b1c9244bba47d47d7\"", "full_name": "barleybobs/homeassistant-ecowater-softener", "last_updated": "2022-09-18T09:11:51Z", "stargazers_count": 12, "topics": ["ecowater"], "last_fetched": 1665325421.902027, "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}, "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\"", "full_name": "aceindy/Duepi_EVO", "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"}, "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\"", "full_name": "alryaz/hass-energosbyt-plus", "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}, "category": "theme", "description": "A fork of popular Home Assistant Google dark theme with animated icons", "domain": "", "etag_repository": "W/\"ed419db2b426cee9d55eb14499bdb3239d4ee769f3762fac2539d83607fb7446\"", "full_name": "pacjo/google_dark_animated", "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}, "212657669": {"repository_manifest": {"name": "\u26cf\ufe0f Minecraft Version", "render_readme": "true"}, "authors": ["@xMrVizzy"], "category": "integration", "description": "\ud83c\udf3f Minecraft Version Checker for Home Assistant.", "domain": "minecraft_version", "etag_repository": "W/\"958e918392b7446c17d9a31201268a4316716e2bfcac9b4617f2350ae60476dd\"", "full_name": "Kraineff/minecraft-version", "last_updated": "2020-01-16T12:36:24Z", "stargazers_count": 4, "last_fetched": 1653229796.133733, "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"}, "authors": ["@jugla"], "category": "integration", "description": "Home Assistant Component to compute battery consumption", "domain": "battery_consumption", "etag_repository": "W/\"dac8c65955fae9bf061d54c3aaacd2bf143f4a2d9329170a80e6083c7d012e74\"", "full_name": "jugla/battery_consumption", "last_updated": "2021-12-11T21:53:46Z", "stargazers_count": 8, "topics": ["battery", "consumption"], "last_fetched": 1648399994.935852, "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}, "authors": ["@koying"], "category": "integration", "description": "Extension of HA mqtt_statestream integration with discovery config publishing", "domain": "mqtt_discoverystream", "etag_repository": "W/\"f0ffe8f5a6fad126fefdb9f71a0a9aba82019e32ee7969baa3fe26fcc4a012b0\"", "full_name": "koying/mqtt_discoverystream_ha", "last_updated": "2022-05-05T12:55:12Z", "stargazers_count": 6, "topics": ["mqtt"], "last_fetched": 1653229789.778313, "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}, "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/\"b77bcd07f070255ebd03fdb1b4c3a92614b7c496306e7083be3e1f49c6fa6cbe\"", "full_name": "hif2k1/battery_sim", "last_updated": "2022-10-03T21:37:14Z", "stargazers_count": 40, "topics": ["energy-storage", "environmental"], "last_fetched": 1665938872.251293, "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}, "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/\"0ffc7cd56be0f481f2a5d16e951df6bf8c40ebe060337fb00f038bbbb7748249\"", "full_name": "dckiller51/bodymiscale", "last_updated": "2022-10-21T22:32:48Z", "stargazers_count": 114, "topics": ["ble-monitor", "esphome", "miscale", "mitemp-bt", "xiaomi"], "last_fetched": 1666451265.415176, "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"}, "authors": ["@cjne"], "category": "integration", "description": "Home Assistant integration for MyEnergi devices", "domain": "myenergi", "etag_repository": "W/\"4f984a3898ab04d31e6c9cdc0f27ae152007fb27c1f63151648a063cccad354b\"", "full_name": "CJNE/ha-myenergi", "last_updated": "2022-10-14T07:14:44Z", "stargazers_count": 63, "topics": ["ev-charging", "green-energy", "myenergi"], "last_fetched": 1665938761.699247, "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"}, "authors": ["@jobvk"], "category": "integration", "description": "Provides Home Assistant sensors for multiple windturbines from the Windcentrale", "domain": "windcentrale", "downloads": 58, "etag_repository": "W/\"f0c619420436b20cd9b72e3266703fb533c8f66a98902e84641a2317b563fc17\"", "full_name": "jobvk/Home-Assistant-Windcentrale", "last_updated": "2022-10-18T13:06:12Z", "stargazers_count": 8, "topics": ["dutch", "windcentrale"], "last_fetched": 1666451362.755018, "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"]}, "category": "plugin", "description": "An advanced calendar card for Home Assistant Lovelace.", "domain": "", "etag_repository": "W/\"03fc9528df010527ce735e14a5438acdb3bb1f172f591abcaee84e8d9e4b26a7\"", "full_name": "totaldebug/atomic-calendar-revive", "last_updated": "2022-10-21T21:29:58Z", "stargazers_count": 214, "topics": ["calendar", "card", "javascript", "module"], "last_fetched": 1666451595.574572, "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}, "authors": ["@PepegaBruh"], "category": "integration", "description": "Integration for Home Assistant to implement a crypto tracking system", "domain": "cryptostate", "etag_repository": "W/\"969199bb51d37e93f0ce2636deece31679e65497889de6ba5a361b032d44363f\"", "full_name": "BigNocciolino/CryptoTracker", "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}, "authors": ["@chouffy"], "category": "integration", "description": "TooGoodToGo items stock as sensor in Home Assistant", "domain": "tgtg", "etag_repository": "W/\"683d3881cb1b91880b75f0b64c5dd6914004043e2fa4315c3c29940a1001eb15\"", "full_name": "Chouffy/home_assistant_tgtg", "last_updated": "2022-10-08T18:28:33Z", "stargazers_count": 19, "topics": ["home-assistant-integration", "python3", "toogoodtogo"], "last_fetched": 1665325447.924237, "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"}, "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\"", "full_name": "amaximus/water_quality_fvm", "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}, "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\"", "full_name": "giachello/mlgw", "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"}, "category": "plugin", "description": "Improved cover icon for home assistant picture element", "domain": "", "etag_repository": "W/\"b92ba757d750087f6f71b3aeac789089806854a1c17c9555b4f6f724c588ad24\"", "full_name": "queimadus/cover-icon-element", "last_updated": "2021-11-17T20:04:06Z", "stargazers_count": 4, "topics": ["cover"], "last_fetched": 1643571262.256599, "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"}, "category": "plugin", "description": "Flipdown Timer Card for Home Assistant Lovelace", "domain": "", "downloads": 3314, "etag_repository": "W/\"4529dd7cb7b6c046ed2b6f2abee0466ff18d12fd7f3dd441ee4812cc87d062cc\"", "full_name": "pmongloid/flipdown-timer-card", "last_updated": "2022-06-11T12:53:23Z", "stargazers_count": 38, "topics": ["timer"], "last_fetched": 1665938661.000703, "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"}, "category": "plugin", "description": "Display when entity was last changed in home assistant picture element", "domain": "", "etag_repository": "W/\"d44a2de2e9fc4504eaa91b6fbacffb86c3bddb23ac0177865a7b43fef06ecc3a\"", "full_name": "queimadus/last-changed-element", "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"}, "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\"", "full_name": "gerardag/person-entity-card", "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}, "authors": ["@iprak"], "category": "integration", "description": "HomeAssistant custom integration to fetch data from weatherapi", "domain": "weatherapi", "etag_repository": "W/\"d4c88ea21e3e5ef98914261e0c6f839ede59879441a39434ad99eff56398919e\"", "full_name": "iprak/weatherapi", "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}, "authors": ["@mampfes"], "category": "integration", "description": "Adds pollen forecasts from DWD to Home Assistant.", "domain": "dwd_pollenflug", "etag_repository": "W/\"98c0bcf815ac5c3b146d1e6765da797384cca5481d5ccf4c52263f8c6261b49f\"", "full_name": "mampfes/hacs_dwd_pollenflug", "last_updated": "2022-05-28T07:12:57Z", "stargazers_count": 27, "topics": ["dwd", "pollen", "pollenflug"], "last_fetched": 1665325647.19198, "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}, "authors": ["@jjlawren"], "category": "integration", "description": "Sonos cloud API integration for Home Assistant with improved TTS/alerts handling", "domain": "sonos_cloud", "etag_repository": "W/\"b482486c9d769efe294dbb39f383a6de865168aeee86ef8355e98c6db58fa9ce\"", "full_name": "jjlawren/sonos_cloud", "last_updated": "2022-08-10T14:33:25Z", "stargazers_count": 75, "topics": ["sonos"], "last_fetched": 1666451360.368618, "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}, "authors": ["@n0ciple"], "category": "integration", "description": "A Home Assistant integration for the Kef LS50W2", "domain": "kef_connector", "etag_repository": "W/\"ba2029d8d74a83484b2c1cf73b586f0fd9addb438301f604f786dcf703903a18\"", "full_name": "N0ciple/hass-kef-connector", "last_updated": "2022-03-03T14:43:11Z", "stargazers_count": 1, "topics": ["kef", "ls50", "ls50w2", "media-player", "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}, "authors": ["@ofalvai"], "category": "integration", "description": "Unofficial Candy/Haier washing machine integration for Home Assistant ", "domain": "candy", "etag_repository": "W/\"be372dc74394eada5609d8d9c4c781021e8d0ba3e3fb29ea2343d72bde191a7b\"", "full_name": "ofalvai/home-assistant-candy", "last_updated": "2022-10-21T23:28:51Z", "stargazers_count": 51, "topics": ["home-assistant-component", "home-assistant-integration"], "last_fetched": 1666451451.630519, "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}, "authors": ["@kubawolanin"], "category": "integration", "description": "Reaper DAW custom integration for Home Assistant", "domain": "reaper", "downloads": 136, "etag_repository": "W/\"38cde6974ffe2ee4dbc2c4e0711e16a26828a48222ba5eff8b7bd9966d818eb0\"", "full_name": "kubawolanin/ha-reaper", "last_updated": "2021-11-12T16:36:27Z", "stargazers_count": 11, "topics": ["daw", "digital-audio-workstation", "reaper"], "last_fetched": 1666451391.071844, "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}, "authors": ["@travisghansen"], "category": "integration", "description": "pfSense integration with Home Assistant", "domain": "pfsense", "etag_repository": "W/\"3ce920ee679a8a55f1fe111afa162fd094b59a3e51c24d9ded1671042b85cc9f\"", "full_name": "travisghansen/hass-pfsense", "last_updated": "2022-08-16T15:02:29Z", "stargazers_count": 92, "topics": ["hassio-integration", "pfsense"], "last_fetched": 1666451553.104688, "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"}, "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/\"b6c828311b329e68910f9b19d27be97219dda8a848ddd663d02e19b7d6114e24\"", "full_name": "hultenvp/solis-sensor", "last_updated": "2022-10-21T17:11:48Z", "stargazers_count": 75, "topics": ["ginlong", "solarman", "solis", "soliscloud"], "last_fetched": 1666451342.275324, "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"}, "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/\"ccde96543c2459fd28d8f0c22bb31573271168be0ddbda437db092be1d582d3f\"", "full_name": "alryaz/hass-pik-intercom", "last_updated": "2022-09-06T10:04:50Z", "stargazers_count": 21, "topics": ["intercom", "pik-group"], "last_fetched": 1665938708.564447, "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.19.1", "homeassistant": "2021.12.8"}, "authors": ["@sugoi-wada"], "category": "integration", "description": "Acer air monitor for Home Assistant", "domain": "acer_air_monitor", "etag_repository": "W/\"e97e926afec8cfb5d1cdb89c12ea1ea6bc5c98a9800f2d740a2b939de993c540\"", "full_name": "sugoi-wada/acer-air-monitor-2018", "last_updated": "2022-01-09T04:10:18Z", "last_fetched": 1641896031.740965, "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.1"}, "authors": ["@wizmo2"], "category": "integration", "description": "Home-assistant custom component and api wrapper for Zidoo Media Players", "domain": "zidoo", "etag_repository": "W/\"f3affe83a8e90620c43d160939bb07be538af50d129ce0f7d3006890a791e371\"", "full_name": "wizmo2/zidoo-player", "last_updated": "2022-02-19T19:27:10Z", "stargazers_count": 5, "topics": ["media", "media-player", "player", "video-player", "zidoo"], "last_fetched": 1646497148.973434, "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}, "authors": ["@BenPru"], "category": "integration", "description": "Home Assistant HACS component to readout values from a Paul Novus 300 ventilation system", "domain": "novus300bus", "etag_repository": "W/\"28e8bb10e30c02a56763b8cae4717b8c5ce733fac3c05044ee9804211f899a93\"", "full_name": "BenPru/novus300_Rs485", "last_updated": "2021-11-03T20:21:00Z", "stargazers_count": 3, "last_fetched": 1661584972.550744, "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": "2021.12"}, "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/\"34bb6e10a8c0cd564ada88cbb2c9a32da234d6c53c6ac6dfbb34f33a5c688f60\"", "full_name": "fuatakgun/kia_uvo", "last_updated": "2022-10-19T19:48:00Z", "stargazers_count": 175, "topics": ["bluelink", "car", "hyundai", "kia", "uvo"], "last_fetched": 1666451314.662673, "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"}, "authors": ["@ScratMan"], "category": "integration", "description": "Smart Thermostat with PID controller for HomeAssistant", "domain": "smart_thermostat", "etag_repository": "W/\"15f62de8360fb8d165bdf680ecbb73faba0904e250192284ff4f6116754ac1a4\"", "full_name": "ScratMan/HASmartThermostat", "last_updated": "2022-06-03T09:46:17Z", "stargazers_count": 132, "topics": ["air-conditioner", "heater", "heater-control", "heater-controller", "heating", "heating-control", "heating-controller", "pid-controller", "smart-thermostat", "thermostat"], "last_fetched": 1666451508.309817, "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.7.0b0", "name": "Deebot 4 Home Assistant", "render_readme": true, "zip_release": true}, "authors": ["@DeebotUniverse", "@edenhaus"], "category": "integration", "description": "Home Assistant integration for deebot vacuums", "domain": ["binary_sensor", "camera", "select", "sensor", "vacuum"], "downloads": 5824, "etag_repository": "W/\"be2436434f4d00ae614232d2b2c3991f872a428fec51aad1649380060bc38451\"", "full_name": "DeebotUniverse/Deebot-4-Home-Assistant", "last_updated": "2022-10-17T21:11:04Z", "stargazers_count": 88, "topics": ["deebot", "ecovacs", "vacuum"], "last_fetched": 1666451266.048184, "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"}, "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\"", "full_name": "viragelabs/virage_dashboard", "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"}, "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/\"3c70a6250ee2c0ffe129f55ee14d356ca14b0f84f6e53c194aec3079ed3d474b\"", "full_name": "KartoffelToby/better_thermostat", "last_updated": "2022-10-20T20:35:36Z", "stargazers_count": 173, "topics": ["climate", "energy-efficiency", "moes", "sea801", "sea802", "smarthome", "spzb0001", "thermostat", "ts0601", "tuya", "zigbee", "zigbee2mqtt"], "last_fetched": 1666451378.310221, "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"}, "category": "plugin", "description": "a custom card for a better thermostat in home assistant based on ai_thermostat intigration", "domain": "", "downloads": 1519, "etag_repository": "W/\"fa08d3d71040d290db1869921b93b7b29b0d56a08cdabdc5fced843f0a8d388b\"", "full_name": "KartoffelToby/better-thermostat-ui-card", "last_updated": "2022-10-21T10:11:47Z", "stargazers_count": 50, "topics": ["thermostat"], "last_fetched": 1666451590.531998, "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}, "authors": ["@tomasbedrich"], "category": "integration", "description": "A Home Assistant integration to communicate with Hikvision smart doorbells via Hik-Connect cloud.", "domain": "hikconnect", "etag_repository": "W/\"d178f977add05066f83f548141ddeaafff803e19ffb85d60592d8de76e93d022\"", "full_name": "tomasbedrich/home-assistant-hikconnect", "last_updated": "2022-07-28T05:39:36Z", "stargazers_count": 30, "topics": ["hikvision"], "last_fetched": 1665939063.402077, "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}, "category": "plugin", "description": "Home Assistant Configuration Files Editor for Lovelace", "domain": "", "etag_repository": "W/\"6a83652ca19a57961b66e718153776d01512b508572004112d29fc72d68161f4\"", "full_name": "htmltiger/config-editor-card", "last_updated": "2022-10-18T15:49:35Z", "stargazers_count": 27, "topics": ["homeassistant-addons", "homeassistant-config", "homeassistant-configuration", "yaml"], "last_fetched": 1666451588.720136, "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": "2022.7.0"}, "authors": ["@briis"], "category": "integration", "description": "Home Assistant Integration for WeatherFlow Stations", "domain": "weatherflow", "etag_repository": "W/\"764c82845dcc8508fd2433de5a1c88b5e862cb82c4079361e0121a7ea01aac24\"", "full_name": "briis/hass-weatherflow", "last_updated": "2022-09-29T05:57:50Z", "stargazers_count": 41, "topics": ["python3", "weatherflow"], "last_fetched": 1665325436.426104, "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}, "authors": ["@spycle"], "category": "integration", "description": "Home Assistant custom integration for controlling AirPlay devices connected to a TuneBlade server", "domain": "tuneblade", "etag_repository": "W/\"acb0d1effd1c1159af72795a161fdf7326e7972db3f72a101508063e4025ce18\"", "full_name": "spycle/tuneblade", "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"}, "authors": ["@htmltiger"], "category": "integration", "description": "Home Assistant Configuration Editor Helper", "domain": "config_editor", "etag_repository": "W/\"ae08a7de69da98f3aedb7f4446139273026c3a24b116f047a36a297cbb4e7163\"", "full_name": "htmltiger/config-editor", "last_updated": "2022-04-16T22:50:46Z", "stargazers_count": 13, "topics": ["homeassistant-config"], "last_fetched": 1661585117.573458, "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": "2021.12.0", "render_readme": true, "filename": "thermal_comfort.zip"}, "authors": ["@dolezsa"], "category": "integration", "description": "Thermal Comfort sensor for HA (absolute humidity, heat index, dew point, thermal perception)", "domain": "thermal_comfort", "downloads": 3, "etag_repository": "W/\"bfe17e4e93ea22efa7af4684825f627c2e2b7951c02fcae27c060fc4872292b6\"", "full_name": "dolezsa/thermal_comfort", "last_updated": "2022-10-17T12:40:22Z", "stargazers_count": 255, "topics": ["absolute-humidity", "comfort-model", "comfort-zone", "dew-point", "dew-point-perception", "heat-index", "thermal-comfort", "thermal-perception", "thermal-stress"], "last_fetched": 1666451279.028799, "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}, "authors": ["@roslovets"], "category": "integration", "description": "Control SP110E RGB LED BLE Controller from Home Assistant", "domain": "sp110e", "etag_repository": "W/\"1f50ef24fad6ae2710dd8d655b887681203fd5c081ad2fb1ab7c43cd4e82d0f4\"", "full_name": "roslovets/SP110E-HASS", "last_updated": "2022-09-04T12:58:32Z", "stargazers_count": 5, "topics": ["ble", "rgb", "sp110e"], "last_fetched": 1665325729.337655, "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"}, "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/\"0c625b8e7fe3119799fa4a7491236e95509a90e169264415d750de988fbff378\"", "full_name": "dwainscheeren/dwains-lovelace-dashboard", "last_updated": "2022-09-16T19:15:47Z", "stargazers_count": 1189, "topics": ["dashboard", "dwains-lovelace-dashboard", "home-assistant-dashboard"], "last_fetched": 1666451287.656131, "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"}, "category": "integration", "description": "Home Assistant & FoxESS integration. Monitor you photovoltaic installation directly from HA \u2600\ufe0f \u26a1\ufe0f ", "domain": "foxess", "etag_repository": "W/\"c98d4339269b6b4c2adea892a88309119a2a637379964aebf133f75d1b7f7847\"", "full_name": "macxq/foxess-ha", "last_updated": "2022-09-26T13:48:18Z", "stargazers_count": 36, "topics": ["energy-monitor", "foxess", "photovoltaics", "pv", "smarthome"], "last_fetched": 1665938950.642749, "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}, "authors": ["@Aohzan"], "category": "integration", "description": "IPX800 V5 integration for Home-Assistant", "domain": "ipx800v5", "etag_repository": "W/\"f22e16811056152fbd77d835022d001ff2938f3548ffcf6665c99f6b94b5069a\"", "full_name": "Aohzan/ipx800v5", "last_updated": "2022-08-31T18:11:48Z", "stargazers_count": 1, "topics": ["gce-electronics", "home-assistant-integration", "ipx800"], "last_fetched": 1662801639.268094, "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", "render_readme": true}, "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/\"589e9d8f2ad8462eb9a84f5850c97691dbe8e03d551e23d43c2a1a7cb4a82c6f\"", "full_name": "LAB02-Research/HASS.Agent-Notifier", "last_updated": "2022-09-27T11:56:05Z", "stargazers_count": 62, "topics": ["notifications"], "last_fetched": 1666451398.394689, "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"}, "authors": ["@thomasprior"], "category": "integration", "description": "Provides data from Flexpool.io on a specified miner.", "domain": "flexpoolinfo", "etag_repository": "W/\"b787a8a3264128a623b98fcb6fc4407f604d3794b5c7fc0d97c5de1a55c20e45\"", "full_name": "ThomasPrior/FlexpoolInfo", "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"}, "authors": ["@weltenwort"], "category": "integration", "description": "A Home Assistant custom component to integrate with RCT Power inverters.", "domain": "rct_power", "etag_repository": "W/\"e7f7b0aaad5b973a411f34ffa83154fed51ec8ba91fd2b95665ce7f4586c0bb8\"", "full_name": "weltenwort/home-assistant-rct-power-integration", "last_updated": "2022-09-01T17:08:13Z", "stargazers_count": 22, "topics": ["rct-power"], "last_fetched": 1662801952.099639, "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}, "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/\"367315bbcb130f5917deefcf2f9c5364c0cc53b5e2d908438cd8a800e42b3f8d\"", "full_name": "fuatakgun/eufy_security", "last_updated": "2022-10-14T20:48:17Z", "stargazers_count": 342, "topics": ["camera", "eufy", "eufycam", "eufysecurity", "rtsp", "security"], "last_fetched": 1666451313.602851, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "432591899": {"repository_manifest": {"name": "MicroBot Push", "render_readme": true}, "category": "integration", "description": "\u26d4\ufe0f DEPRECATED Home Assistant switch integration to control MicroBot Push", "domain": "microbot_push", "etag_repository": "W/\"97e2e7017b521f593f6617cb13846dbd13776a89f86948b027ce44ea12a53501\"", "full_name": "spycle/microbot_push", "topics": ["archived", "deprecated", "microbot-push", "obselete"], "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "439467929": {"repository_manifest": {"name": "Midea Dehumidifier (LAN)", "homeassistant": "2021.12.0"}, "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/\"efd3137ccf6ea425caffae2938e51ef9a50a9da6bd9834c246def639d886e855\"", "full_name": "nbogojevic/homeassistant-midea-air-appliances-lan", "last_updated": "2022-01-22T01:19:02Z", "stargazers_count": 16, "topics": ["air-conditioner", "airconditioning", "dehumidifier", "midea"], "last_fetched": 1642851542.467849, "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"}, "authors": ["@briis"], "category": "integration", "description": "SecuritySpy Integration for Home Assistant with Camera Streams and Motion Detection", "domain": "securityspy", "etag_repository": "W/\"57293807ce1eac354acf35f34f4a873e7f04dd63fc8cf79cca335d6ae836926a\"", "full_name": "briis/securityspy", "last_updated": "2022-08-28T10:01:08Z", "stargazers_count": 27, "topics": ["home-assistant-component", "securityspy"], "last_fetched": 1666451214.266092, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292390011": {"repository_manifest": {"name": "Peloton"}, "authors": ["@edwork"], "category": "integration", "description": "A platform which allows you to get current and past ride data from Peloton into HomeAssistant", "domain": "peloton", "downloads": 15, "etag_repository": "W/\"ade9f8d9adc5c9e0c85b43c3dac9bcf706b1edfad574ddbdd53fcf0ea913eb43\"", "full_name": "edwork/homeassistant-peloton-sensor", "last_updated": "2022-08-23T18:44:06Z", "stargazers_count": 56, "topics": ["peloton", "peloton-api", "peloton-client"], "last_fetched": 1665938823.532299, "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"}, "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/\"c7fab3f41d4c20eebe2420efbff73f5b6e1eed804a827d78d4f5f8d5ea0a84d2\"", "full_name": "dahlb/ha_kia_hyundai", "last_updated": "2022-08-21T08:28:43Z", "stargazers_count": 12, "topics": ["car", "kia", "python3", "uvo"], "last_fetched": 1661585031.59473, "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"}, "authors": ["@davesmeghead"], "category": "integration", "description": "Visonic Custom Component for integration with Home Assistant", "domain": "visonic", "etag_repository": "W/\"135518091a82a9aef1a1c2df597276c1467531f15a1d62cc27f44f21cf31f2e8\"", "full_name": "davesmeghead/visonic", "last_updated": "2022-09-30T15:50:29Z", "stargazers_count": 63, "topics": ["visonic"], "last_fetched": 1666451263.16812, "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}, "authors": ["@RogerSelwyn"], "category": "integration", "description": "Office 365 integration for Home Assistant", "domain": "o365", "downloads": 1270, "etag_repository": "W/\"0cd6834f72a804c5e87bcabe74c2d7c1d94f9c5dc55a644d59453c928fd47f46\"", "full_name": "RogerSelwyn/O365-HomeAssistant", "last_updated": "2022-09-26T15:34:15Z", "stargazers_count": 56, "topics": ["microsoft", "o365"], "last_fetched": 1666451490.075169, "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"}, "category": "theme", "description": "\ud83c\udfa8 A new, simple soft theme for Home Assistant.", "domain": "", "etag_repository": "W/\"c0aeeaf696c79a1dc4201f2f090247892d15c053eec81d277fe8b1f3cfbce3c6\"", "full_name": "KTibow/lovelace-soft-theme", "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"}, "authors": ["@valleedelisle"], "category": "integration", "description": "Home Assistant Hilo Integration via HACS", "domain": "hilo", "etag_repository": "W/\"d3ce64a8c9df15ff1e44c3ea322ad002ea0664fac232d7682e8b38f8f108ecc0\"", "full_name": "dvd-dev/hilo", "last_updated": "2022-10-19T08:30:36Z", "stargazers_count": 55, "topics": ["hilo", "home-automation-system", "hydro-quebec", "signalr-client"], "last_fetched": 1666451287.794844, "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"}, "authors": ["@9a4gl"], "category": "integration", "description": "Home Assistant custom component integration for Centrometal Boiler System", "domain": "centrometal_boiler", "etag_repository": "W/\"585f24e684a81b9afc21e95387eccc30f47d0458bd79a149367c7d138efc5a17\"", "full_name": "9a4gl/hass-centrometal-boiler", "last_updated": "2022-01-04T19:20:56Z", "stargazers_count": 1, "topics": ["centrometal", "peltec"], "last_fetched": 1641470671.652981, "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"}, "category": "plugin", "description": "Lovelace Centrometal Boiler Card", "domain": "", "etag_repository": "W/\"620418477b3f1e88c83f779cb5ae636acda726b29e8beb927c414ae44a91c36e\"", "full_name": "9a4gl/lovelace-centrometal-boiler-card", "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"}, "authors": ["@widewing"], "category": "integration", "description": "Home Assistant integration for Toyota Motor (North America) connected services", "domain": "toyota_na", "downloads": 474, "etag_repository": "W/\"668df2182d541efa0eb38d1e3f7d37a31ef98b5693a1e209bb90466fb070c4ec\"", "full_name": "widewing/ha-toyota-na", "last_updated": "2022-05-01T23:09:25Z", "stargazers_count": 19, "topics": ["car", "toyota", "vehicle"], "last_fetched": 1665325778.388316, "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}, "authors": ["@klejejs"], "category": "integration", "description": "Thermia Heat Pump Integration for Home Assistant", "domain": "thermia", "etag_repository": "W/\"707e6eda45c0564ebbda2c29725384978bdf38d5fdef1e037eedb9ef8d9a2fd8\"", "full_name": "klejejs/ha-thermia-heat-pump-integration", "last_updated": "2022-06-28T01:01:00Z", "stargazers_count": 8, "topics": ["heat-pump", "thermia"], "last_fetched": 1665325613.565623, "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"}, "authors": ["@jugla", "@baqs"], "category": "integration", "description": "Home Assistant component to handle key atome (linky) -conso live feature-", "domain": "keyatome", "etag_repository": "W/\"7b1b8b088c3fb77389e67253fdbd076f2c9ff7a1a1c74fbffde476ac6adfce52\"", "full_name": "jugla/keyatome", "last_updated": "2022-09-26T22:03:26Z", "stargazers_count": 13, "topics": ["atome", "keyatome", "linky"], "last_fetched": 1665938907.97873, "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"}, "category": "plugin", "description": "A card for Home Assistant Lovelace for exploring the history of your entities interactively and in real time.", "domain": "", "downloads": 4323, "etag_repository": "W/\"2a9d93c2a9474fb635ab0215dcf1f8a0773ac783ea415712dbd180ceaabdbd2a\"", "full_name": "alexarch21/history-explorer-card", "last_updated": "2022-10-07T11:45:04Z", "stargazers_count": 123, "topics": ["history"], "last_fetched": 1666451583.123566, "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}, "category": "theme", "description": "A dark teal theme for HomeAssistant.", "domain": "", "etag_repository": "W/\"fb129ed4ffd3f4be380c15808c71b735acd26067dfe74960bb261f26fde16622\"", "full_name": "Neekster/MidnightTeal", "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"}, "category": "plugin", "description": "Highly customisable Lovelace card to display interactive graphs. Brings scrolling, zooming, and much more!", "domain": "", "etag_repository": "W/\"d92a2a25e41cf0a976cfb27530859a99827c9f7afe706ad58c5ba9d311f40aea\"", "full_name": "dbuezas/lovelace-plotly-graph-card", "last_updated": "2022-10-16T12:30:15Z", "stargazers_count": 81, "topics": ["graphs", "history", "lovelace-custom-card", "navigate", "plotly", "plotlyjs", "plots", "scroll", "zoom"], "last_fetched": 1666451586.533096, "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}, "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/\"53a4e89ca7dba7f0aecf9eefac36d570b32ece286ef4dd16df48ab063d6963b3\"", "full_name": "aneeshd/schedule_state", "last_updated": "2022-10-09T15:50:32Z", "stargazers_count": 20, "topics": ["automation", "scheduler", "timetable"], "last_fetched": 1665938716.982183, "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"}, "authors": ["@Soloam"], "category": "integration", "description": "PID Controller to Home Assistant", "domain": "pid_controller", "downloads": 325, "etag_repository": "W/\"bd1bb752176e970ead3bff1c33f4cf37cb77d5a4bb4ef80a4b55537098fbddcf\"", "full_name": "soloam/ha-pid-controller", "last_updated": "2022-10-17T16:38:03Z", "stargazers_count": 31, "topics": ["pid", "thermostat"], "last_fetched": 1666451522.779341, "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 Sensor for Home Assistant", "render_readme": true}, "authors": ["@ardevd"], "category": "integration", "description": "Home Assistant integration for the Bobcat Helium Miner", "domain": "bobcatminer", "etag_repository": "W/\"6e19fad65f7d056650c02e9a0acc55f149eba48c0ccd44318a5e394fe30b7a6e\"", "full_name": "ardevd/ha-bobcatminer", "last_updated": "2022-04-24T01:16:10Z", "stargazers_count": 9, "topics": ["bobcatminer", "cryptocurrency", "helium", "mining"], "last_fetched": 1656859058.776756, "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.8.0"}, "authors": ["@WillCodeForCats"], "category": "integration", "description": "A Home Assistant integration for SolarEdge inverters using Modbus/TCP. Supports single inverters, multiple inverters, meters, batteries, and many other improvements.", "domain": "solaredge_modbus", "etag_repository": "W/\"42c6fc5d1d96f283638289db16feb8d5f632cf521a413235b8972a5ec6c99045\"", "full_name": "WillCodeForCats/solaredge-modbus-multi", "last_updated": "2022-10-20T18:53:39Z", "stargazers_count": 34, "topics": ["modbus-tcp", "solaredge", "solaredge-inverter"], "last_fetched": 1666451570.406344, "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"}, "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/\"6b115dc19ea80721c045c6158cc8bd5937bb624c846038c888eb22f0362a47b2\"", "full_name": "guerrerotook/securitas-direct-new-api", "last_updated": "2022-10-11T17:36:57Z", "stargazers_count": 29, "last_fetched": 1666451326.19299, "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}, "category": "theme", "description": "Inspired by the color schemes of Xayah & Rakan. Still work-in-progress, feedback is much appreciated!", "domain": "", "etag_repository": "W/\"549af3ee6486c7fbe02957c17e09d3433086c13f6b8560a7160d964ce2d07571\"", "full_name": "SnakeFist007/ha_vastayan_bond", "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"}, "category": "plugin", "description": "Home Assistant custom lovelace sonos card", "domain": "", "downloads": 3286, "etag_repository": "W/\"3fffd171853bbe4fed6d339bad4c7f8fbad360e7448c86e8af01eef54816b2b8\"", "full_name": "johanfrick/custom-sonos-card", "last_updated": "2022-09-04T22:16:19Z", "stargazers_count": 37, "topics": ["lovelace-custom-card", "media-player", "sonos"], "last_fetched": 1666451590.093464, "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"}, "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\"", "full_name": "mathoudebine/homeassistant-browser-control-card", "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": {}, "category": "plugin", "description": "Thermal Comfort custom icons for Home Assistant to accompany the MDI icons", "domain": "", "etag_repository": "W/\"b128f346d8d3c7c8d15f1cae4c5cdf82f799afff8b490547ccff6608bf295142\"", "full_name": "rautesamtr/thermal_comfort_icons", "last_updated": "2022-01-29T15:14:16Z", "stargazers_count": 12, "topics": ["absolute-humidity", "dew-point", "dew-point-perception", "frost-point", "frost-risk", "heat-index", "icons", "iconset", "simmer-index", "simmer-zone", "thermal-perception"], "last_fetched": 1657362533.904398, "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}, "authors": ["@amosyuen"], "category": "integration", "description": "Home Assistant TP-Link Deco Custom Component", "domain": "tplink_deco", "etag_repository": "W/\"a4784e59f9196fb1f17f29e7a52ebb6d0dde5b45b86c3e83fb07c875304cc7c1\"", "full_name": "amosyuen/ha-tplink-deco", "last_updated": "2022-10-19T11:21:31Z", "stargazers_count": 68, "topics": ["router", "tp-link"], "last_fetched": 1666451182.034872, "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}, "authors": ["@augustas2"], "category": "integration", "description": "Home Assistant custom component for Eldes Alarm system", "domain": "eldes_alarm", "etag_repository": "W/\"8a60c526d2846d792121ab8056b4bc088718609e9d8c7d62e4ad8ca4e6c45438\"", "full_name": "augustas2/eldes", "last_updated": "2022-04-07T09:28:12Z", "stargazers_count": 8, "topics": ["alarm", "alarm-panel", "alarm-system", "eldes", "esim364", "esim384", "output", "pitbull-alarm-pro", "switch"], "last_fetched": 1665325413.797443, "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"]}, "authors": ["@clusterm"], "category": "integration", "description": "Redmond SkyKettle integration for Home Assistant", "domain": "skykettle", "etag_repository": "W/\"5cd878e8aa9b70c11aed0966434c198dcd4dc4c8f7d3e204461f99f5000c3897\"", "full_name": "ClusterM/skykettle-ha", "last_updated": "2022-10-11T15:28:20Z", "stargazers_count": 38, "topics": ["kettle", "redmond", "skykettle"], "last_fetched": 1665938765.969208, "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.5.0"}, "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": 2812, "etag_repository": "W/\"5c172daf4057592e969567529c806ea920d5e9e795fc19ee53e8db92501ef953\"", "full_name": "bruxy70/Holidays", "last_updated": "2022-07-31T17:02:12Z", "stargazers_count": 26, "topics": ["calendar", "country-holidays", "garbage-collection", "holidays", "public-holidays"], "last_fetched": 1665325440.734066, "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}, "authors": ["@c-st"], "category": "integration", "description": "\ud83e\udd16 A custom component for Home Assistant which automates your areas.", "domain": "auto_areas", "etag_repository": "W/\"c6e9fc0fd8291ed4336f2e5cc18690bba1ce791c0b6df995521fd34644128098\"", "full_name": "c-st/auto_areas", "last_updated": "2022-07-03T20:04:04Z", "stargazers_count": 15, "last_fetched": 1661584990.46877, "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"}, "category": "plugin", "description": "This card wraps any other cards and renders a fluid background behind them.", "domain": "", "downloads": 1488, "etag_repository": "W/\"1ce3b396a00f2df2e4f5be884e759abc3bbe99350957e6f83886947cf4087bc7\"", "full_name": "swingerman/lovelace-fluid-level-background-card", "last_updated": "2022-10-10T01:36:28Z", "stargazers_count": 15, "topics": ["lovelace-card"], "last_fetched": 1666451594.247614, "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"}, "authors": ["@elahd"], "category": "integration", "description": "Home Assistant integration for NYC trash collection, school, and alternate side parking schedules.", "domain": "nyc311", "etag_repository": "W/\"856f5dac3add4335186f8715d259c81d97f2eafa6902f3898f828cb990996f42\"", "full_name": "elahd/ha-nyc311", "last_updated": "2022-06-27T23:57:42Z", "stargazers_count": 3, "topics": ["community", "government-data", "nyc", "nyc-opendata"], "last_fetched": 1656859168.026541, "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"}, "authors": ["@hultenvp"], "category": "integration", "description": "Home Assistant Omnik Solar sensor component", "domain": "omnik", "etag_repository": "W/\"b14b36c385d342856ddf7583af2f06229004e1b4855a54cf649fdf54f815b363\"", "full_name": "hultenvp/home_assistant_omnik_solar", "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.7.0"}, "authors": ["@IATkachenko"], "category": "integration", "description": "Yandex weather intergration for Home Assistant", "domain": "yandex_weather", "downloads": 487, "etag_repository": "W/\"f1d9e1121a096a825e80d15dbd2e01a25e88722704e1f87da0671b992774734b\"", "full_name": "IATkachenko/HA-YandexWeather", "last_updated": "2022-10-20T15:03:32Z", "stargazers_count": 66, "topics": ["weather", "yandex-weather"], "last_fetched": 1666451342.917579, "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}, "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/\"d8dcf02d02a9dd7f27de7f49d5322b4fb367dfe321bcede44474075b71baef07\"", "full_name": "J-Lindvig/Flagdays_DK", "last_updated": "2022-06-19T09:12:18Z", "stargazers_count": 3, "topics": ["anniversaries", "denmark", "flagdays", "pride"], "last_fetched": 1656859218.343395, "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"}, "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": 358, "etag_repository": "W/\"f66556f0edef0175551bf674202afcac3ba8450ac48b68a07d0417acb91d9888\"", "full_name": "mdeweerd/zha-toolkit", "last_updated": "2022-10-08T21:20:35Z", "stargazers_count": 44, "topics": ["home-assistant-component", "zha", "zigbee", "zigpy"], "last_fetched": 1665325658.044445, "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"}, "authors": ["@MesserschmittX"], "category": "integration", "description": "Home Assistant integration for Nicehash Excavator miner API", "domain": "nicehash_excavator", "etag_repository": "W/\"845b01985cfbc19334531d36e73ae4e3e2a6c4e4f8f3221bf17678c869e39f4d\"", "full_name": "MesserschmittX/ha-nicehash-excavator-monitor", "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}, "authors": ["@peribeir"], "category": "integration", "description": "This custom integration provides access to Rademacher Devices connected to a HomePilot (or Start2Smart) bridge.", "domain": "rademacher", "downloads": 329, "etag_repository": "W/\"b829ccdcc71ae6996592cd5229c1e86a10fab9f16f276a93b21ecbff68f85f2d\"", "full_name": "peribeir/homeassistant-rademacher", "last_updated": "2022-07-19T10:56:35Z", "stargazers_count": 19, "topics": ["homepilot", "iot", "rademacher"], "last_fetched": 1662801915.884096, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269113518": {"repository_manifest": {"name": "xcomfort"}, "authors": ["@plamish"], "category": "integration", "description": "Eaton xComfort SHC integration for Home Assistant", "domain": "xcomfort", "etag_repository": "W/\"bc504462599620e0d12e1fa03f28773d4342eb970bc511f5f09fadc8d9d121fe\"", "full_name": "plamish/xcomfort", "last_updated": "2022-04-02T15:21:34Z", "stargazers_count": 8, "topics": ["eaton", "xcomfort"], "last_fetched": 1665325709.420061, "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.6.0"}, "authors": ["@petretiandrea"], "category": "integration", "description": "A custom integration to control Tapo devices from home assistant.", "domain": "tapo", "etag_repository": "W/\"feae0311e6b7b408568a7ea660ed74997637f83eacd096debcd623652d8f37ce\"", "full_name": "petretiandrea/home-assistant-tapo-p100", "last_updated": "2022-10-22T09:15:33Z", "stargazers_count": 228, "topics": ["energy", "l510", "l530", "l900", "monitoring", "p100", "p105", "p110", "smart-plug", "tapo", "tapo-device", "tapo-light-bulb"], "last_fetched": 1666451462.165189, "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"}, "authors": ["@StephanJoubert"], "category": "integration", "description": "Home Assistant component for Solarman collectors used with a variety of inverters. ", "domain": "solarman", "etag_repository": "W/\"e65e7551fdf8a4724c0b24d6208a585b53b9360ca5a37c4383e66781936f7dd3\"", "full_name": "StephanJoubert/home_assistant_solarman", "last_updated": "2022-10-07T10:06:36Z", "stargazers_count": 113, "topics": ["deye", "energy", "inverter", "sofar", "sol-ark", "solar", "solarman", "solis", "sunsynk"], "last_fetched": 1666451523.769928, "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}, "authors": ["@tadasdanielius"], "category": "integration", "description": "Daikin Altherma custom component for home assistant", "domain": "daikin_altherma", "etag_repository": "W/\"fbc65279871c3580257e7960ebd904f6b9c21ee58ce33ef0cab14f01e1fdd52e\"", "full_name": "tadasdanielius/daikin_altherma", "last_updated": "2022-08-21T05:53:12Z", "stargazers_count": 24, "topics": ["altherma", "brp069a61", "brp069a62", "daikin", "daikin-altherma", "homeassistant-custom-component"], "last_fetched": 1665325773.856926, "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"}, "authors": ["@tombrien"], "category": "integration", "description": "A Home Assistant integration to provide sensors for waste collections in Cardiff, UK", "domain": "cardiffwaste", "etag_repository": "W/\"12727015f8920031c0236547428bc4a087852007c1053900615b94faac8feac1\"", "full_name": "TomBrien/cardiffwaste-ha", "last_updated": "2022-10-01T20:25:11Z", "stargazers_count": 8, "topics": ["cardiff", "waste-collection"], "last_fetched": 1665325775.85585, "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"}, "authors": ["@tykeal"], "category": "integration", "description": "Rental Control system for Home Assistant", "domain": "rental_control", "downloads": 43, "etag_repository": "W/\"4de0e490b5f8d42a0695609f1c0db1e496ac22ebde6a035220788e3cc15b5601\"", "full_name": "tykeal/homeassistant-rental-control", "last_updated": "2022-10-06T20:45:11Z", "stargazers_count": 12, "topics": ["airbnb", "ical", "locks"], "last_fetched": 1665325777.146985, "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"}, "authors": ["@stokkie90"], "category": "integration", "description": "UI-Lovelace-Minimalist is a \"theme\" for HomeAssistant", "domain": "ui_lovelace_minimalist", "downloads": 8822, "etag_repository": "W/\"4d248c35684c8bc6f99117c8c298aa3c94233e80fa7edd6c6a78cabb3dd84b13\"", "full_name": "UI-Lovelace-Minimalist/UI", "last_updated": "2022-10-22T06:30:24Z", "stargazers_count": 905, "last_fetched": 1666451562.522626, "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.4.0", "render_readme": true}, "category": "plugin", "description": "Mushroom Cards - Build a beautiful dashboard easily \ud83c\udf44", "domain": "", "downloads": 51681, "etag_repository": "W/\"0cd8708a08ed296c8f08690b1ef504a46f5f1f16baf2a444648531f0a209f415\"", "full_name": "piitaya/lovelace-mushroom", "last_updated": "2022-10-12T12:48:27Z", "stargazers_count": 1578, "topics": ["card", "mushroom"], "last_fetched": 1666451593.468888, "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}, "authors": ["@mrsleeps"], "category": "integration", "description": "A custom component for Home Assistant to monitor your Juwel HeliaLux light states", "domain": "juwel_helialux", "etag_repository": "W/\"100f86ed036d72ba6ce73255e70938095f40da5d91ddd1537624449edb2193fc\"", "full_name": "MrSleeps/Juwel-HeliaLux-Home-Assistant-Custom-Component", "last_updated": "2022-06-12T11:33:49Z", "stargazers_count": 6, "topics": ["aquarium", "home-assistant-component", "lightning"], "last_fetched": 1665325668.021434, "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"}, "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/\"fa178084b75f554c10db0694bd37c642ac4255691279a6c0bd3a77496c188f50\"", "full_name": "jrfernandes/ontario_energy_board", "last_updated": "2022-06-27T18:56:50Z", "stargazers_count": 13, "topics": ["canada", "electricity", "energy-prices", "hydro", "ontario"], "last_fetched": 1665325601.022295, "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"}, "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": 84, "etag_repository": "W/\"7f097fb02708fcc8ce76c4d8b1941b323f61ecd4ddf97f180443ccd76489c09b\"", "full_name": "ZacheryThomas/homeassistant-smartrent", "last_updated": "2022-09-29T02:57:12Z", "stargazers_count": 26, "topics": ["smarthome", "smartrent"], "last_fetched": 1665939066.340866, "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"}, "authors": ["@youdroid"], "category": "integration", "description": "Gogs component to follow your repositories", "domain": "gogs", "etag_repository": "W/\"05b31b54506f886c3a089cee6719ab0985b318a301c185baa21ece884aff16b8\"", "full_name": "youdroid/home-assistant-gogs", "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"}, "authors": ["@thecode"], "category": "integration", "description": "Home Assistant Raspberry Pi GPIO Integration", "domain": "rpi_gpio", "etag_repository": "W/\"4ca69a943086e635a299fe2ca01bb3393cdabea43880b618ca119e0a771a5d25\"", "full_name": "thecode/ha-rpi_gpio", "last_updated": "2022-10-10T19:19:56Z", "stargazers_count": 90, "topics": ["iot", "raspberry-pi", "rpi-gpio"], "last_fetched": 1666451535.436017, "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"}, "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/\"e183c9bb54572aa068f12df986eadc768330a8f096866dfa1d1f8203d74987a4\"", "full_name": "larry-wong/bemfa", "last_updated": "2022-05-15T01:39:02Z", "stargazers_count": 136, "last_fetched": 1666451398.304053, "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}, "authors": ["@sakowicz"], "category": "integration", "description": "Track your devices via Tenda AC23 router using Home Assistant's device tracker", "domain": "tenda_tracker", "etag_repository": "W/\"401079aad79a18aa5b1765994856178abc5a66cb9fc54fd009f4cb2379b707a8\"", "full_name": "sakowicz/home-assistant-tenda-tracker", "last_updated": "2022-06-01T06:10:25Z", "stargazers_count": 1, "topics": ["device-tracker", "home", "tenda", "tenda-ac23", "tracker"], "last_fetched": 1661585292.240524, "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}, "authors": ["@brianegge"], "category": "integration", "description": "systemd service for Home Assistant", "domain": "sdnotify", "etag_repository": "W/\"a86e73ff91f91b530789fa6acb26d741ff2e2554a81487db49d1de5229827acb\"", "full_name": "brianegge/home-assistant-sdnotify", "last_updated": "2022-05-29T10:15:45Z", "stargazers_count": 8, "topics": ["systemd"], "last_fetched": 1665938750.172793, "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}, "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/\"42bdea413e2ce691f41aff853ea7a3e3067abd32067eb44842b99bd212a9a050\"", "full_name": "Blear/HassLife", "last_updated": "2022-09-28T06:18:36Z", "stargazers_count": 50, "topics": ["miiot", "tmall", "tmall-genie"], "last_fetched": 1665938739.826595, "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"}, "authors": ["@luuuis"], "category": "integration", "description": "Home Assistant: Wibeee energy monitor custom component", "domain": "wibeee", "downloads": 98, "etag_repository": "W/\"bda86ba7e275f03385384e4aa63e83bcabce8c19f2792f6eaf10f9145d49caba\"", "full_name": "luuuis/hass_wibeee", "last_updated": "2022-10-05T10:38:18Z", "stargazers_count": 10, "topics": ["circutor", "mirubee", "wibeee"], "last_fetched": 1665325645.526303, "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": "only-lock-lock-row.js", "render_readme": true}, "category": "plugin", "description": "Only let users lock a lock", "domain": "", "etag_repository": "W/\"842e9c8739295e811ef0ee56f7a71a076a0db59779b75f65bdfe6333f3fbd911\"", "full_name": "frozenwizard/onlylocklock", "last_updated": "2022-04-09T20:44:22Z", "stargazers_count": 4, "topics": ["frontend", "lock"], "last_fetched": 1653230035.708964, "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}, "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- Theme based on the iOS system-wide light and dark mode interface", "domain": "", "etag_repository": "W/\"fcb3812798dab986756680cd5f846ae896112c8774b5bf7179ef737cdd3ae071\"", "full_name": "JuanMTech/ios-theme", "last_updated": "2022-05-03T14:14:53Z", "stargazers_count": 12, "topics": ["darkmode", "darktheme", "lightmode", "lighttheme"], "last_fetched": 1665325361.837924, "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"}, "category": "theme", "description": "Material Design 3 based theme (dark olive green) for Home Assistant", "domain": "", "etag_repository": "W/\"8c47501c38aeeb7e246b001bd70edfc99bfb40f0aba0b7af4a980a59cdddbdbb\"", "full_name": "AmoebeLabs/HA-Theme_M3-07-DarkOliveGreen", "last_updated": "2022-06-15T07:56:39Z", "topics": ["dark-mode", "dark-theme", "home-assistant-theme", "light-mode", "light-theme", "material-3"], "last_fetched": 1656859450.556278, "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": "2021.11", "render_readme": true}, "category": "theme", "description": "Additional themes for Lovelace Mushroom Cards \ud83c\udf44", "domain": "", "etag_repository": "W/\"4eeeda88bcb0bcefaff253e0f1fc74c0fbcab221fb3a47e93224c2d29404f258\"", "full_name": "piitaya/lovelace-mushroom-themes", "last_updated": "2022-07-21T19:05:50Z", "stargazers_count": 81, "topics": ["hackoctoberfest", "mushroom"], "last_fetched": 1666451582.41782, "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"}, "category": "theme", "description": "Material Design 3 / Material YOU theme for Home Assistant", "domain": "", "etag_repository": "W/\"9e78952d7b6f519645cc7ed69a1b2a61a7bfbdf1d1333c2d39d946738c353466\"", "full_name": "AmoebeLabs/HA-Theme_M3-04-Magenta", "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}, "category": "plugin", "description": "Home Assistant UI Card for Nicehash Excavator Monitor integration", "domain": "", "etag_repository": "W/\"01f7f45a1708db4f5c7f844ba7a71edd964af811d0121ecad5a11f8861d09766\"", "full_name": "MesserschmittX/lovelace-nicehash-excavator-monitor-card", "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}, "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- Theme based on the Google Android light and dark mode interface", "domain": "", "etag_repository": "W/\"1f115b568994f5790049067449ce410f6fe34f683cf6965ed7b68e68efe64732\"", "full_name": "JuanMTech/google-theme", "last_updated": "2022-05-03T14:11:39Z", "stargazers_count": 38, "topics": ["darkmode", "googletheme", "lightmode"], "last_fetched": 1666451581.791055, "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}, "authors": ["@evilmarty"], "category": "integration", "description": "Mjpeg Timelapse integration for Home Assistant", "domain": "mjpeg_timelapse", "etag_repository": "W/\"9910a4b21b62b64b5160746bebd726df84ab8af4845d6980c08d64e4b5ee3665\"", "full_name": "evilmarty/mjpeg-timelapse", "last_updated": "2022-06-10T09:00:09Z", "stargazers_count": 10, "topics": ["camera"], "last_fetched": 1661585072.740926, "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}, "authors": ["@hostcc"], "category": "integration", "description": "Custom Home Assistant integration for G90 security systems", "domain": "gs_alarm", "etag_repository": "W/\"c2fca6a67beaded207f533aacb27ef3baef8995ad1f9fd3a041c1d67722f1548\"", "full_name": "hostcc/hass-gs-alarm", "last_updated": "2022-06-21T10:19:36Z", "stargazers_count": 1, "last_fetched": 1662801791.163384, "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": "2021.12.0"}, "authors": ["@dsorlov"], "category": "integration", "description": "Swedish Post Delivery integration for Home Assistant", "domain": "swemail", "etag_repository": "W/\"6f4ca71404026ebd6868f81ae2f07e603c481d7d4a4ea3e458f6718d0f9bfa1d\"", "full_name": "DSorlov/swemail", "last_updated": "2022-02-26T09:59:28Z", "stargazers_count": 13, "topics": ["citymail", "postnord"], "last_fetched": 1653229693.069868, "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}, "authors": ["@hwmland"], "category": "integration", "description": "XMRIG integration for homeassistant", "domain": "xmrig", "etag_repository": "W/\"b37a16317da0f8b09e27054669e0f4a1433f51b3a5704db9e6c42b7dc3bb8c5c\"", "full_name": "hwmland/homeassistant-xmrig", "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"}, "authors": ["@wlcrs"], "category": "integration", "description": "Home Assistant integration for Huawei Solar inverters via Modbus", "domain": "huawei_solar", "etag_repository": "W/\"d1e89b3601fc9dc60e43a002faea8a9e8981d7aa7f26755d5953b37c9912f5f5\"", "full_name": "wlcrs/huawei_solar", "last_updated": "2022-10-20T07:58:29Z", "stargazers_count": 108, "topics": ["home-assistant-integration", "huawei", "huawei-solar", "modbus", "modbus-rtu", "modbus-tcp", "solar-energy"], "last_fetched": 1666451573.944191, "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"}, "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/\"98d12e073b1d65283ad109eaac94461722a4672f516cbca1b8cca02dc41495a1\"", "full_name": "swingerman/ha-dual-smart-thermostat", "last_updated": "2022-05-27T20:25:22Z", "stargazers_count": 36, "topics": ["thermostat"], "last_fetched": 1665939061.355879, "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}, "category": "plugin", "description": "Header Cards", "domain": "", "etag_repository": "W/\"c0991dc0a8c5568422460e04de56bfeb6ad83795f26477af7fb0c2717fcc4065\"", "full_name": "gadgetchnnel/lovelace-header-cards", "last_updated": "2022-04-11T06:36:27Z", "stargazers_count": 19, "topics": ["cards", "header"], "last_fetched": 1665325241.237362, "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}, "category": "theme", "description": "Home Assistant theme based on Whatsapp's colors", "domain": "", "etag_repository": "W/\"f002af664963b2968c9b6654ee5d91a52a0585331dcd08b93cf348dc9414f460\"", "full_name": "robinwittebol/whatsapp-theme", "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"}, "category": "theme", "description": "Cyberpunk 2077 GUI inspied Home Assistant theme", "domain": "", "etag_repository": "W/\"432274c4deb62b318d65e455bb3924410b83eefe3dcaf3880ed9e244a2dfdc95\"", "full_name": "flejz/hass-cyberpunk-2077-theme", "last_updated": "2022-09-12T22:37:55Z", "stargazers_count": 15, "topics": ["cyberpunk", "cyberpunk-2077"], "last_fetched": 1665938514.775902, "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"}, "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\"", "full_name": "amaximus/fire_protection_hu", "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}, "authors": ["@bouni"], "category": "integration", "description": "AbfallPlus component for Home Assistant ", "domain": "abfallplus", "etag_repository": "W/\"6d7ba0192c7c35974a1abe246e2790f5eaf38f68267e50629371b731802e4abf\"", "full_name": "Bouni/abfallplus", "last_updated": "2022-06-27T13:14:57Z", "stargazers_count": 5, "topics": ["abfallplus"], "last_fetched": 1661584978.14801, "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"}, "authors": ["@dahlb"], "category": "integration", "description": "Home Assistant Integration for Hatch Rest Mini", "domain": "ha_hatch", "etag_repository": "W/\"4572e1a4b95643828a8cb7e4f20c227fa671b92388b9dcbf2b2adc26217c8a66\"", "full_name": "dahlb/ha_hatch", "last_updated": "2022-10-17T16:28:27Z", "stargazers_count": 10, "topics": ["hatch-baby-rest", "python3"], "last_fetched": 1666451256.595984, "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}, "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/\"e3cda7d1ee92d451a3f2d3aa254f5059fbef416fc45a4ff4bcbde8cb9fea2e5f\"", "full_name": "dummylabs/thewatchman", "last_updated": "2022-10-14T18:51:58Z", "stargazers_count": 149, "topics": ["automation"], "last_fetched": 1665938820.144445, "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"}, "authors": ["@GuyLewin"], "category": "integration", "description": "Life Time Fitness integration for Home Assistant", "domain": "lifetime_fitness", "etag_repository": "W/\"59b9690605bc869d6a097e087db1cfea099feeee0b1144ef36ea38d145458e6b\"", "full_name": "GuyLewin/home-assistant-lifetime-fitness", "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.6", "render_readme": "true"}, "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/\"cfe047b2f85f10b3f9ee1ebce07e92930f4e892a93109d77dfcd7a712610797c\"", "full_name": "iMicknl/ha-nest-protect", "last_updated": "2022-07-24T13:40:31Z", "stargazers_count": 155, "topics": ["google", "nest", "nest-protect"], "last_fetched": 1665938879.372904, "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"}, "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/\"93fbb97e577682d53a2fbe765018e6ce16eaf1011c8d3fff1b4e4429b038f81e\"", "full_name": "jnxxx/homeassistant-dabblerdk_powermeterreader", "last_updated": "2022-05-29T14:33:43Z", "stargazers_count": 9, "topics": ["83331-3i", "dabbler-dk", "echelon", "energy", "nes", "powermeter"], "last_fetched": 1665938896.836474, "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"}, "authors": ["@markvader"], "category": "integration", "description": "Home Assistant Raspberry Pi GPIO RF Integration", "domain": "rpi_rf", "etag_repository": "W/\"d8d8c925fefd007ba38c24b4300e3a9bf7e1ea57a756d7813501f7e4edb62f90\"", "full_name": "markvader/ha-rpi_rf", "last_updated": "2022-10-05T13:19:16Z", "stargazers_count": 19, "topics": ["home-assistant-component", "rpi-gpio", "rpi-rf"], "last_fetched": 1665325651.688042, "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}, "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\"", "full_name": "morosanmihail/HA-LondonTfL", "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"}, "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/\"708cebf1b256d2bc68fac853a7398f97295342e2c180c186f66bff66aab11366\"", "full_name": "mattrayner/pod-point-home-assistant-component", "last_updated": "2022-05-28T08:50:10Z", "stargazers_count": 17, "topics": ["energy-consumption", "ev-charging"], "last_fetched": 1662801875.116196, "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}, "category": "integration", "description": "This sensor is gathering gas usage data from PGNIG ebok page.", "domain": "pgnig_gas_sensor", "downloads": 4, "etag_repository": "W/\"2a1b14df391fdc936751bb6bd1d0f6d0d9dc587c1841e71918cf64fbecd1d3dd\"", "full_name": "pawelhulek/pgnig-sensor", "last_updated": "2022-09-19T05:48:29Z", "stargazers_count": 18, "topics": ["gas-sensor"], "last_fetched": 1665938992.816323, "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}, "authors": ["@patrickhilker"], "category": "integration", "description": "Control your tedee smart lock from Home Assistant", "domain": "tedee", "etag_repository": "W/\"6461ac261a0d69860f8d666e888c2240cc06b5f72f838976ac9e242f587c7fe8\"", "full_name": "patrickhilker/tedee_hass_integration", "last_updated": "2022-03-14T16:16:35Z", "stargazers_count": 6, "topics": ["customcomponent", "lock", "security", "smart-lock", "smartlock", "tedee"], "last_fetched": 1662801909.520425, "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.9.0"}, "authors": ["@RobertD502"], "category": "integration", "description": "Home Assistant custom component for monitoring and controlling Coway Airmega Purifiers", "domain": "coway", "etag_repository": "W/\"13d22c52cde2f0101e3583fe95891d4375c22d55f8ea28ff82a4c499b6c9138a\"", "full_name": "RobertD502/home-assistant-iocare", "last_updated": "2022-10-07T21:46:49Z", "stargazers_count": 13, "topics": ["coway", "coway-iocare", "home-assistant-component", "iocare"], "last_fetched": 1665325723.107003, "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 Usage Sensor for Home Assistant", "render_readme": true, "country": "DE"}, "authors": ["@Raukze"], "category": "integration", "description": "\ud83c\udfcb\ufe0f FitX Gym Usage Sensor for Home Assistant", "domain": "fitx", "downloads": 4, "etag_repository": "W/\"90876cbfcfaf72664d378874602e2f98c0c81fa179f4dcc7db96949c9d45983d\"", "full_name": "Raukze/home-assistant-fitx", "last_updated": "2022-03-04T15:23:20Z", "stargazers_count": 7, "topics": ["fitx", "gym"], "last_fetched": 1662801933.781137, "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.5.0", "filename": "skyq.zip", "render_readme": true}, "authors": ["@rogerselwyn"], "category": "integration", "description": "Home Assistant SkyQ Media player component", "domain": "skyq", "downloads": 1892, "etag_repository": "W/\"9218f9a5a48d4025f1e2e99c7ef6b599d5bcd80f1d7f6ec830d53e2945faee65\"", "full_name": "RogerSelwyn/Home_Assistant_SkyQ_MediaPlayer", "last_updated": "2022-10-21T13:52:33Z", "stargazers_count": 68, "topics": ["sky", "skyq"], "last_fetched": 1666451489.310832, "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"}, "authors": ["@syssi"], "category": "integration", "description": "go-eCharger integration for Home Assistant using the MQTT API", "domain": "goecharger_mqtt", "etag_repository": "W/\"dd5ebaaf45e24b375508a301868185af0ff631e54151c5c9f54a576190f4100b\"", "full_name": "syssi/homeassistant-goecharger-mqtt", "last_updated": "2022-10-16T17:32:28Z", "stargazers_count": 18, "topics": ["go-echarger", "goe-charger"], "last_fetched": 1666451527.899473, "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}, "authors": ["@wills106"], "category": "integration", "description": "SolaX Power Modbus custom_component for Home Assistant", "domain": "solax_modbus", "etag_repository": "W/\"6ffd468acaafda87e4eb87bcb478b6d8abc04343f828553c762eda469485017c\"", "full_name": "wills106/homeassistant-solax-modbus", "last_updated": "2022-07-03T11:07:59Z", "stargazers_count": 27, "topics": ["modbus", "modbus-serial", "modbus-tcp", "rs485", "solax", "solax-inverter"], "last_fetched": 1656859438.883528, "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"}, "authors": ["@toringer"], "category": "integration", "description": "Sbanken sensor for Home Assistant", "domain": "sbanken", "etag_repository": "W/\"921873adcd5a4e64298d7db8a57e19bcaad47350f57c5c4cf84a75259b1d7778\"", "full_name": "toringer/home-assistant-sbanken", "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"}, "authors": ["@mauro-midolo"], "category": "integration", "description": "Get the status from your Electrolux Care devices", "domain": "electrolux_status", "etag_repository": "W/\"ed20e33c726a686650fae40d910edffb9750a91760825291834ed0cc710cdad3\"", "full_name": "mauro-midolo/homeassistant_electrolux_status", "last_updated": "2022-10-21T13:08:27Z", "stargazers_count": 40, "topics": ["aeg", "electrolux", "home-assistant-integration"], "last_fetched": 1666451421.603629, "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}, "category": "theme", "description": "Nordic theme for home assistant.", "domain": "", "etag_repository": "W/\"df83444286697bddb4df649736d17f8c6ac37d9d0fc3716a92a8aa708237f86d\"", "full_name": "coltondick/nordic-theme-main", "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"}, "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\"", "full_name": "Matt-PMCT/Green-and-Dark-HA-Theme", "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"}, "category": "plugin", "description": "A rain radar card using the new tiled images from the Australian BOM", "domain": "", "downloads": 1097, "etag_repository": "W/\"21bb4bf30fc444ea6920a3eb232e30e465964aa52aa85cc54c19e60900a3c892\"", "full_name": "Makin-Things/bom-radar-card", "last_updated": "2022-09-30T08:07:43Z", "stargazers_count": 68, "topics": ["bom", "frontend", "meteorology", "radar", "weather"], "last_fetched": 1665938640.11124, "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"}, "authors": ["@amaximus"], "category": "integration", "description": "Radioactivity data for Hungary", "domain": "radioactivity_hu", "etag_repository": "W/\"92870eaaa43808c997f26ba05a10b7225e7c5b3dde24607a549bc42822ea24aa\"", "full_name": "amaximus/radioactivity_hu", "last_updated": "2022-05-02T12:51:59Z", "stargazers_count": 1, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1653229588.321087, "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"}, "authors": ["@filipvh", "@joleys"], "category": "integration", "description": "Home Assistant Custom Integration for Niko Home Control II", "domain": "nhc2", "etag_repository": "W/\"9213d72637791076620156c4165028839b7af6f9d20d935a4b8e0960904ef21c\"", "full_name": "joleys/niko-home-control-II", "last_updated": "2022-10-04T13:33:21Z", "stargazers_count": 22, "topics": ["automation", "domotics", "niko"], "last_fetched": 1665325595.817282, "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"]}, "authors": ["@drosocode"], "category": "integration", "description": "Custom component for ile de france mobilit\u00e9s", "domain": "idfm", "etag_repository": "W/\"892014b9ea7d43bc90cea33a80a9f6e7b153931f435b6c607b157e7e6353841a\"", "full_name": "droso-hass/idfm", "last_updated": "2022-09-22T17:39:01Z", "stargazers_count": 4, "topics": ["time", "transports"], "last_fetched": 1665325508.423136, "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.5.0"}, "authors": ["@JohNan"], "category": "integration", "description": "Get the status from your Electrolux devices connected to Wellbeing", "domain": "wellbeing", "downloads": 4, "etag_repository": "W/\"281722d854972642e91c749efdd0c42651d9fe3fbb2033573374ba9136d863f4\"", "full_name": "JohNan/homeassistant-wellbeing", "last_updated": "2022-05-04T18:46:51Z", "stargazers_count": 35, "last_fetched": 1665938899.345391, "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}, "authors": ["@cyr-ius"], "category": "integration", "description": "Climate Home Assistant component for Heatzy Pilot", "domain": "heatzy", "etag_repository": "W/\"d86d34fd7e61860bd4812a382f39ffb6604490308f19fa7c2aa56c340c90b606\"", "full_name": "Cyr-ius/hass-heatzy", "last_updated": "2022-10-22T14:42:32Z", "stargazers_count": 18, "topics": ["heatzy"], "last_fetched": 1666451255.738815, "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"}, "authors": ["@dmamontov"], "category": "integration", "description": "MiWiFi for Home Assistant", "domain": "miwifi", "etag_repository": "W/\"bc02e9ea6ecb356865746ed169ac0daeddbc296ca8833bb9125fc2803e0a84dd\"", "full_name": "dmamontov/hass-miwifi", "last_updated": "2022-09-07T13:17:27Z", "stargazers_count": 109, "topics": ["mi", "miwifi", "redmi", "xiaomi"], "last_fetched": 1666451277.513418, "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}, "authors": ["@sanghviharshit"], "category": "integration", "description": "\ud83c\udfe1 \ud83d\udca8 Home Assistant custom component for Mila Air Purifier (Unofficial)", "domain": "mila", "etag_repository": "W/\"f0a5da4dafccef7cf4b59f5dea0905fb52089a25b7c2aef7ee639f115e7148e0\"", "full_name": "sanghviharshit/ha-mila", "last_updated": "2022-10-19T17:42:12Z", "stargazers_count": 16, "topics": ["air-purifier", "air-quality", "air-quality-sensor", "mila"], "last_fetched": 1666451506.956899, "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"]}, "authors": ["@linsvensson"], "category": "integration", "description": "Custom component to get usage data and prices from Greenely for Home Assistant", "domain": "greenely", "etag_repository": "W/\"f266aa3e016f8e9932ac29d752187190ab452e6984da7f967a6587abef11e9a8\"", "full_name": "linsvensson/sensor.greenely", "last_updated": "2022-07-01T20:39:53Z", "stargazers_count": 39, "topics": ["home-assistant-sensor"], "last_fetched": 1665938945.090843, "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}, "category": "integration", "description": "A sensor that integrates all your bank balance gathered in kontomierz app", "domain": "kontomierz_sensor", "etag_repository": "W/\"a505405bba4e2d378d47bfed61aba1eb1411db0f8292762452875d9f1eab4b2b\"", "full_name": "pawelhulek/kontomierz-sensor", "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"}, "authors": ["@ryanwinter"], "category": "integration", "description": "Intergration for the Rainforest EMU-2 energy monitor", "domain": "rainforest_emu_2", "etag_repository": "W/\"96fecbda3ab4c232b9386955bcbb851811f8afd7601670a2777e35edae88a6cc\"", "full_name": "ryanwinter/hass-rainforest-emu-2", "last_updated": "2022-07-31T21:22:16Z", "stargazers_count": 12, "topics": ["energy"], "last_fetched": 1665325741.874536, "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"}, "authors": ["@MTrab"], "category": "integration", "description": "Fetches spot prices from Energi Data Service", "domain": "energidataservice", "downloads": 905, "etag_repository": "W/\"4d1a98c1ec731ed22895418539b07d29e42425cc0b7590fafe26a0e44f7df122\"", "full_name": "MTrab/energidataservice", "last_updated": "2022-10-20T20:19:22Z", "stargazers_count": 52, "topics": ["energi", "spotprice", "statistics"], "last_fetched": 1666451437.101803, "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"}, "authors": ["@toringer"], "category": "integration", "description": "Met.no Nowcast component for Home Assistant", "domain": "metnowcast", "downloads": 262, "etag_repository": "W/\"a496eb2f55d082580849d0a078bd09c5d59e8e5979dba9c5e7e63cc63c6add3d\"", "full_name": "toringer/home-assistant-metnowcast", "last_updated": "2022-03-17T20:42:49Z", "stargazers_count": 4, "topics": ["metno", "nowcast", "nowcasting-precipitation"], "last_fetched": 1653733616.503787, "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"}, "authors": ["@tomaae"], "category": "integration", "description": "TrueNAS integration for Home Assistant ", "domain": "truenas", "downloads": 2153, "etag_repository": "W/\"e0f1e2b74866d285082afcc27dc75f1e55cad6a1f6611952550d1322e54438cc\"", "full_name": "tomaae/homeassistant-truenas", "last_updated": "2022-08-20T00:58:04Z", "stargazers_count": 43, "topics": ["homeassistant-custom-component", "truenas"], "last_fetched": 1665325775.476128, "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}, "authors": ["@dgomes"], "category": "integration", "description": "Home Assistant Custom Component - Generic Water Heater", "domain": "generic_water_heater", "etag_repository": "W/\"f2f596c6585df53c46e0db9916a6f653a7cfcb73369285ffbfdaa4b2222dce67\"", "full_name": "dgomes/ha_generic_water_heater", "last_updated": "2022-08-16T22:24:26Z", "stargazers_count": 5, "topics": ["home-assistant-integration"], "last_fetched": 1661585043.538055, "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}, "authors": ["@chises"], "category": "integration", "description": "HomeAssistant Sensor for Oilfox ", "domain": "oilfox", "etag_repository": "W/\"ad66386784d44cca116fe36800b90c7858d2d9f8242d4b3648ae0ac0ab59498f\"", "full_name": "chises/ha-oilfox", "last_updated": "2022-10-10T14:47:04Z", "stargazers_count": 7, "topics": ["homeassistant-custom-component", "oiflox"], "last_fetched": 1665938760.620427, "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"}, "authors": ["@dahlb"], "category": "integration", "description": "Home Assistant Integration for Blueair Class Filters", "domain": "ha_blueair", "etag_repository": "W/\"82c3d9e3ac3ec21509001c9a0050d259211dfad2e08de1792151ce0b0d57577a\"", "full_name": "dahlb/ha_blueair", "last_updated": "2022-07-31T01:58:35Z", "stargazers_count": 2, "topics": ["blueair", "hassio-integration", "python3"], "last_fetched": 1665938794.006723, "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"}, "authors": ["@aijayadams"], "category": "integration", "description": "BlueAir sensor integration for HomeAssistant", "domain": "blueair", "etag_repository": "W/\"97d32f6702af9407e84ef6883862c4dadeb15baf9892a858403464cf77b144df\"", "full_name": "aijayadams/hass-blueair", "last_updated": "2022-05-11T15:59:28Z", "stargazers_count": 16, "topics": ["blueair"], "last_fetched": 1665938698.389146, "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}, "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/\"106a87a4d9a7836b622f410db6e5638a99f8f95713ca0b2d129c6ceccaf5f3aa\"", "full_name": "drakhart/ha-super-soco-custom", "last_updated": "2022-09-05T21:03:56Z", "stargazers_count": 9, "topics": ["super-soco"], "last_fetched": 1665325506.682623, "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"}, "authors": ["@ekutner"], "category": "integration", "description": "Alternative (and improved) Home Connect integration for Home Assistant", "domain": "home_connect_alt", "etag_repository": "W/\"a65dbbdbf0b9ea456e2f897b2e0b4bb4918895435c20e196c2ed07f2373c5d80\"", "full_name": "ekutner/home-connect-hass", "last_updated": "2022-10-20T07:30:53Z", "stargazers_count": 56, "topics": ["home-assistant-component", "home-assistant-integration", "home-connect", "homeconnect"], "last_fetched": 1666451292.827671, "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"}, "authors": ["@ddanssaert"], "category": "integration", "description": "IPCamLive integration for Home Assistant", "domain": "ipcamlive", "etag_repository": "W/\"0874376a9e7332e395773befd9feabd5641a6673526d86364a9b1535920c9995\"", "full_name": "ddanssaert/home-assistant-ipcamlive", "topics": ["ipcamera", "ipcamlive"], "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.4.1", "country": ["TW"]}, "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/\"18dc9deef20302d9fcf65d25b9360cb6ee28620d04b602738f771689e68a06ce\"", "full_name": "cnstudio/Taipower-Bimonthly-Energy-Cost-homeassistant", "last_updated": "2022-07-08T09:22:23Z", "stargazers_count": 40, "topics": ["bill", "bimonthly", "power", "taipower"], "last_fetched": 1665325453.235679, "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"}, "authors": ["@jlweston", "@geoffreylagaisse"], "category": "integration", "description": "Microsoft Graph API Presence Integration for Home Assistant", "domain": "microsoft_graph", "etag_repository": "W/\"640781cac973169198dc29cbf204c62bda5d349d5eba83bee0d564295b008c26\"", "full_name": "geoffreylagaisse/Hass-Microsoft-Graph", "last_updated": "2022-08-16T09:43:34Z", "stargazers_count": 16, "topics": ["custom", "graphapi"], "last_fetched": 1661585092.35175, "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.8.0", "country": ["SE", "BE", "NO"], "zip_release": true, "filename": "peaqev.zip", "render_readme": true}, "authors": ["@elden1337"], "category": "integration", "description": "Home Assistant custom component to help ev-chargers stay below peak hourly energy levels.", "domain": "peaqev", "downloads": 31, "etag_repository": "W/\"3d54d20b161b20dd133118355a82ef82be9703f9ac0ec903d5028ac9799bbfcb\"", "full_name": "elden1337/hass-peaq", "last_updated": "2022-10-12T13:19:13Z", "stargazers_count": 31, "topics": ["chargeamps", "easee", "ev-charging", "peak-shaving", "smart-pricing"], "last_fetched": 1665938833.806788, "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}, "authors": ["@kaptensanders"], "category": "integration", "description": "Skolmat Home Assistant custom component for the food menu in Swedish schools", "domain": "skolmat", "etag_repository": "W/\"12e9ba01b3af3709e77c5b1255ff5d6371cd97867cc8217be4eac8e9a1a66004\"", "full_name": "Kaptensanders/skolmat", "last_updated": "2022-05-09T21:01:10Z", "stargazers_count": 2, "topics": ["food", "food-menu", "school", "skola"], "last_fetched": 1656859245.529539, "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}, "authors": ["@kongo09"], "category": "integration", "description": "Support DELL printers in Home Assistant", "domain": "dell_printer", "etag_repository": "W/\"1a12f78f919172a32e72ee67e66d7b52cdcb6a196eb86c33163fe7ee2a363de6\"", "full_name": "kongo09/hass-dell-printer", "last_updated": "2022-06-26T17:26:42Z", "stargazers_count": 3, "topics": ["dell", "printer"], "last_fetched": 1656859254.530698, "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"}, "authors": ["@Kannix2005"], "category": "integration", "description": "Home Assistant Custom component to manage Selve devices", "domain": "selve", "etag_repository": "W/\"dea4cbcead526926e8d40ae6deb9b46f4a4eb0772cfee4c8d538041368b83d52\"", "full_name": "Kannix2005/homeassistant-selve", "last_updated": "2022-09-20T00:46:24Z", "stargazers_count": 1, "topics": ["selve"], "last_fetched": 1665325608.665351, "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", "render_readme": true}, "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/\"790b9681f0961bc4141d745b531420ba4f20bb25d67118e23925f6fb5b0a4f05\"", "full_name": "LAB02-Research/HASS.Agent-MediaPlayer", "last_updated": "2022-06-27T15:08:39Z", "stargazers_count": 13, "topics": ["mediaplayer"], "last_fetched": 1666451391.964799, "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"}, "authors": ["@patrickribbing"], "category": "integration", "description": "Get wind information from the Swedish Sj\u00f6farsverket's ViVa service.", "domain": "sjofartsverket_viva", "etag_repository": "W/\"06aac2da110791dfd17697ba432e1a79fd3f9a4527607cc4161f9221e49cef4e\"", "full_name": "patrickribbing/sjofartsverket_viva-component", "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"}, "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\"", "full_name": "NickM-27/swatch-hass-integration", "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"}, "authors": ["@Ludy87"], "category": "integration", "description": "ecotrend-ista Home Assistant Integration", "domain": "ecotrend_ista", "etag_repository": "W/\"4ce555ec543a7639ad5329f5923e89c81c5c1b004e0b2affffd1eb532fbc6ac8\"", "full_name": "Ludy87/ecotrend-ista", "last_updated": "2022-10-08T06:39:52Z", "stargazers_count": 8, "topics": ["ecotrend", "hassio-integration", "hassos", "home-assistant-component", "ista"], "last_fetched": 1665325643.807586, "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}, "authors": ["@mbillow"], "category": "integration", "description": "Home Assistant ChargePoint EV Charger Integration", "domain": "chargepoint", "etag_repository": "W/\"6c628b98662775a28c16384362e7668f63c5f2de9715d4f404a6690ba28ea8bd\"", "full_name": "mbillow/ha-chargepoint", "last_updated": "2022-08-14T20:01:46Z", "stargazers_count": 14, "topics": ["chargepoint", "hassio-integration"], "last_fetched": 1665325656.724197, "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"}, "authors": ["@mtarjoianu"], "category": "integration", "description": "Manage your Lektrico EV Charger", "domain": "lektrico_custom", "etag_repository": "W/\"9f4cca3700dc55b39be1a69ab665a88bdcaed10a48e308e9fce30a8dbf3aebb1\"", "full_name": "mtarjoianu/ha_lektrico", "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": "2022.10.0", "hacs": "1.28.0"}, "authors": ["@Ludy87"], "category": "integration", "description": "Xplora\u00ae Watch Home Assistant Integration", "domain": "xplora_watch", "etag_repository": "W/\"c7d7531e1b6e7fe44c3d88153034527369ed2b2ff6a4c614b75f1928eaa7f6cf\"", "full_name": "Ludy87/xplora_watch", "last_updated": "2022-10-11T17:51:45Z", "stargazers_count": 24, "topics": ["devicetracker", "hassio-addons", "hassio-integration", "hassos", "homeassistant-custom-component", "notify", "watch", "xplora", "xplora-watch"], "last_fetched": 1665938949.022079, "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.7.0"}, "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": 8750, "etag_repository": "W/\"3775409a61efc52643d89cd240a01e3d1b8f3c48461d050b8ba659f6c6fa01c8\"", "full_name": "music-assistant/hass-music-assistant", "last_updated": "2022-10-17T12:31:03Z", "stargazers_count": 369, "topics": ["music-library", "music-player"], "last_fetched": 1666451440.21606, "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}, "authors": ["@regulad"], "category": "integration", "description": "La Crosse view for Home Assistant", "domain": "lacrosseview", "etag_repository": "W/\"75f67634f00c586814c3853f13483fcbf24fe16812a4f2b382e97876b98ac067\"", "full_name": "regulad/hass-lacrosseview", "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"}, "authors": ["@PimDoos"], "category": "integration", "description": "Home Assistant Custom Component: MijnKia Connected Services", "domain": "kia_connect", "etag_repository": "W/\"a64f8007eeb511a443c91f7eba465db2dfc8266e8952ec5966ba3285122dcebb\"", "full_name": "PimDoos/kia_connect", "last_updated": "2022-08-27T23:30:24Z", "stargazers_count": 5, "topics": ["api-wrapper", "connected-vehicle", "home-assistant-custom-component", "kia"], "last_fetched": 1662801920.576922, "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}, "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/\"f252da3de7ec2dcce149971f19beee69abd58674e35edcae35633ee81caf01ca\"", "full_name": "roleoroleo/yi-hack_ha_integration", "last_updated": "2022-10-07T14:14:02Z", "stargazers_count": 121, "topics": ["camera", "custom", "firmware", "hack", "rtsp", "yi"], "last_fetched": 1666451490.261111, "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"}, "authors": ["@thomasprior"], "category": "integration", "description": "Provides data from 2miners.com on a specified miner.", "domain": "2minersinfo", "etag_repository": "W/\"420e8696501fa2318e9ad2ae9a9542b3439354aedccd2c088a30f92af8c674c2\"", "full_name": "ThomasPrior/2minersInfo", "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}, "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": 1120, "etag_repository": "W/\"6eea264fca785717e52d8af80a7c7da559860410332032a48d84dd9cdaef040e\"", "full_name": "a-p-z/datetime-card", "last_updated": "2022-07-26T00:26:21Z", "stargazers_count": 12, "topics": ["lovelace-custom-card", "svelte"], "last_fetched": 1661584772.582099, "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"}, "authors": ["@wernerhp"], "category": "integration", "description": "A Home Assistant integration to track your load schedding schedule.", "domain": "load_shedding", "etag_repository": "W/\"d7eb103895130eff8cdb0d9a9ea8116fb5098ed25ec686c79e84a1a1f3141a34\"", "full_name": "wernerhp/ha.integration.load_shedding", "last_updated": "2022-07-13T18:59:00Z", "stargazers_count": 20, "topics": ["eskom", "load-shedding"], "last_fetched": 1657789194.230064, "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": "2022.5.0"}, "authors": ["@vaskivskyi"], "category": "integration", "description": "Monitor and control your AsusWRT-powered router from Home Assistant", "domain": "asusrouter", "etag_repository": "W/\"f43ebb27fcb9af47945f7593ff648034000be2219d715ad9d43b1279a0d6f496\"", "full_name": "Vaskivskyi/ha-asusrouter", "last_updated": "2022-10-22T15:02:36Z", "stargazers_count": 59, "topics": ["asus", "asuswrt", "asuswrt-merlin", "router"], "last_fetched": 1666451563.518713, "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.5.0"}, "authors": ["@WillCodeForCats"], "category": "integration", "description": "Home Assistant integration for the Tekmar Gateway 482", "domain": "tekmar_482", "etag_repository": "W/\"2e09239b92d690e09728ad6dd73bfb30dba84c2af85c3a967ff5149345bbdac1\"", "full_name": "WillCodeForCats/tekmar-482", "last_updated": "2022-07-04T15:52:49Z", "stargazers_count": 1, "topics": ["tekmar"], "last_fetched": 1657362984.97091, "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}, "category": "plugin", "description": "Moves the Home Assistant dashboard navigation bar to the bottom of the screen", "etag_repository": "W/\"443e961bd242da29bc3faa78a1a10fff6a69dcc710593ad1aa0c5245fad1ed1d\"", "full_name": "javawizard/ha-navbar-position", "last_updated": "2022-05-08T08:28:38Z", "stargazers_count": 8, "last_fetched": 1666451589.31259, "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}, "category": "plugin", "description": "Home Assistant Lovelace card to display the food menu in Swedish schools.", "etag_repository": "W/\"88349df85b85063f04d68b534eeba7f021b42605bd6ce964adbafdcc03e157d7\"", "full_name": "Kaptensanders/skolmat-card", "stargazers_count": 3, "topics": ["home-assistant-component", "lovelace-card", "lovelace-custom-card", "skola", "skollunch", "skolmat"], "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"}, "category": "plugin", "description": "A rain radar card using the tiled images from RainViewer", "downloads": 3337, "etag_repository": "W/\"6522fa4259c0d9996e8357e7d1d1f2373e4fa17a9de9efbc4663a675c8d073b7\"", "full_name": "Makin-Things/weather-radar-card", "last_updated": "2022-09-27T01:59:00Z", "stargazers_count": 40, "topics": ["frontend", "home-assistant-config", "meteorology", "radar", "rainviewer", "weather"], "last_fetched": 1665325279.331299, "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}, "category": "plugin", "description": "Adapted Custom-ui for HA 110+ / HA 2021.6", "downloads": 3089, "etag_repository": "W/\"4d4755cf626cd5ddd63a5dd8d9719ee649c965f0cec366b8c5f3fb48f642995b\"", "full_name": "Mariusthvdb/custom-ui", "last_updated": "2022-05-23T07:44:43Z", "stargazers_count": 106, "topics": ["customization", "icon-color", "more-info", "templates"], "last_fetched": 1665938643.424712, "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"}, "category": "plugin", "description": "A minimalistic area card with sensors and buttons.", "downloads": 3464, "etag_repository": "W/\"6456b62acd57fe8dbd364bc2077b6126ca70e51c395f4b130543223f55e02529\"", "full_name": "junalmeida/homeassistant-minimalistic-area-card", "last_updated": "2022-09-07T20:22:10Z", "stargazers_count": 24, "topics": ["area-card"], "last_fetched": 1665938627.665322, "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"}, "category": "plugin", "description": "A Home Assistant lovelace card to display a sankey chart. For example for power consumption", "downloads": 1486, "etag_repository": "W/\"4a26b38041cebe984011ad0a52a207cf61ced28995b4fda2a54ec875a59bcbaa\"", "full_name": "MindFreeze/ha-sankey-chart", "last_updated": "2022-09-19T08:13:17Z", "stargazers_count": 69, "topics": ["energy-consumption", "lovelace-card"], "last_fetched": 1665325288.519699, "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}, "category": "plugin", "description": "Several custom made and legacy icons, and icons collected all over the internet in 1 set, UI selectable.", "downloads": 1374, "etag_repository": "W/\"03237e333b6c6b9162104150267c592ea1f2aeadd9099f68e416f8a12201e56f\"", "full_name": "Mariusthvdb/custom-icons", "last_updated": "2022-10-04T18:02:24Z", "stargazers_count": 11, "topics": ["custom", "customization", "icons", "iphone", "light", "shutter", "vacuum"], "last_fetched": 1665325281.949154, "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"}, "category": "plugin", "description": "A companion card for the Irrigation Unlimited integration", "downloads": 453, "etag_repository": "W/\"b4d0b9066845d9e10254d88a5c0c1befa918301f439e058d565dff418ab52b74\"", "full_name": "rgc99/irrigation-unlimited-card", "last_updated": "2022-10-08T01:44:20Z", "stargazers_count": 5, "topics": ["irrigation", "irrigation-controller", "sprinkler-controller", "watering"], "last_fetched": 1665938666.678776, "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"}, "category": "plugin", "description": "A power distribution card inspired by the official Energy Distribution card for Home Assistant", "downloads": 3884, "etag_repository": "W/\"6c085953fa2823cbba4b0d68216b5cadac2ba12651f8b004ba50bb09a6c3254d\"", "full_name": "ulic75/power-flow-card", "last_updated": "2022-07-05T23:06:25Z", "stargazers_count": 45, "topics": ["dashboard"], "last_fetched": 1666451595.70986, "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"}, "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": 3295, "etag_repository": "W/\"92060b20c7b444cf34eef14307c6ddbd60677d9e9b92741f4dfb5209ef2f4d90\"", "full_name": "Shreyas-R/lovelace-wallpanel-screensaver", "last_updated": "2022-09-08T12:24:08Z", "stargazers_count": 21, "topics": ["configurable", "css", "fullscreen", "hide-side-bar", "hide-top-bar", "javascript", "kiosk", "photo-screensaver", "screensaver", "wallclock", "wallpanel", "weather"], "last_fetched": 1665325312.478379, "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}, "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/\"0c4b20d69bd92feaa135e9a1c912d82b0bb1d4afd7b0612d89e19d642bdc3f4c\"", "full_name": "Madelena/Metrology-for-Hass", "last_updated": "2022-08-19T03:00:17Z", "stargazers_count": 223, "topics": ["home-assistant-config", "lovelace-theme"], "last_fetched": 1665938531.463174, "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}, "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- Theme based on the macOS system-wide light and dark mode interface", "etag_repository": "W/\"b7ef0a4f9a979ce9e1456510c869e08cb03a1988b93af88acd3b94d52f81c56a\"", "full_name": "JuanMTech/macOS-Theme", "last_updated": "2022-05-12T04:26:17Z", "stargazers_count": 24, "topics": ["darktheme", "lighttheme"], "last_fetched": 1665938531.203128, "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"}, "authors": ["@snikch"], "category": "integration", "description": "\ud83c\udfe1Home Assistant Custom Component for Escea Fires \ud83d\udd25", "domain": "escea", "etag_repository": "W/\"e172e6a6d4f9196ab8061ffa1afb5b3df0d3c6adae9343bddfef7727e0758962\"", "full_name": "snikch/climate.escea", "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"}, "authors": ["@amaximus"], "category": "integration", "description": "HomeAssistant custom component for Budapest public transportation", "domain": "bkk_stop", "etag_repository": "W/\"d81f447ef342788321f222b5cab65ed3d58af9cdfa9f9930a276a3857f6c79a0\"", "full_name": "amaximus/bkk_stop", "last_updated": "2022-07-06T17:02:01Z", "stargazers_count": 14, "topics": ["bkk", "budapest", "transportation"], "last_fetched": 1657362619.69223, "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"]}, "authors": ["@jippi"], "category": "integration", "description": "Home Assistant + Nordnet API = awesome sensors with for your investments & holdings", "domain": "nordnet", "etag_repository": "W/\"4cfd16d7c24ad2cedd8756b326fb166e472a5be2de30b337ead8beb711ef4bf3\"", "full_name": "jippi/hass-nordnet", "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.5.0", "country": "CA"}, "authors": ["@danielrivard"], "category": "integration", "description": "Home Assistant Integration for Innova 2.0 Heat Pump", "domain": "innova", "etag_repository": "W/\"9ea5225b7dfcd8f76cb4f838280fbcd2d5701527afd9ca67899cfe6807fb283f\"", "full_name": "danielrivard/homeassistant-innova", "last_updated": "2022-08-26T23:35:45Z", "stargazers_count": 9, "topics": ["climate", "innova", "innovaenergie"], "last_fetched": 1661585034.640209, "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}, "category": "integration", "description": "\ud83d\udde3\ufe0f Microsoft Edge TTS for Home Assistant, no need for app_key", "domain": "edge_tts", "etag_repository": "W/\"09838380d9d5b2e8f4c59818e222197bed0c2d987a5e49ea8ef8bb0bfa67b04e\"", "full_name": "hasscc/hass-edge-tts", "last_updated": "2022-09-27T10:26:56Z", "stargazers_count": 135, "topics": ["tts"], "last_fetched": 1666451332.233594, "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}, "authors": ["@dave-code-ruiz"], "category": "integration", "description": "Home Assistant custom component for LED STRIP NAME ELK BLEDOM", "domain": "elkbledom", "etag_repository": "W/\"047a07b82ce32cd7d81c18b57482421b327a9f472418fc6262ca0bb1f25e4559\"", "full_name": "dave-code-ruiz/elkbledom", "last_updated": "2022-10-05T08:21:11Z", "stargazers_count": 6, "topics": ["hacs-custom", "led-controller", "ledstrips", "light"], "last_fetched": 1665938799.32136, "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"}, "authors": ["@Aohzan"], "category": "integration", "description": "R\u00e9cup\u00e9ration des prix des stations en France", "domain": "prix_carburant", "etag_repository": "W/\"aaed8f3e9b2e6802e746ebc22d9dbd7ae98fc2c3684d5278983ce4800b57ca52\"", "full_name": "Aohzan/hass-prixcarburant", "last_updated": "2022-06-30T06:29:50Z", "stargazers_count": 11, "topics": ["carburant", "gas", "price"], "last_fetched": 1665325407.887304, "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"}, "authors": ["@Kleinrotti"], "category": "integration", "description": "Home Assistant custom component integration for Senertec energy units.", "domain": "senertec", "etag_repository": "W/\"f3475eef51231521cf69ac62d3d40c672fc5d5076c5e80f5391145768677de3d\"", "full_name": "Kleinrotti/hass-senertec", "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}, "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/\"dd690caa324cab4e6f21796cfb38c48059e71ec62ca42ebb44d9fded9311187d\"", "full_name": "J-Lindvig/Fuelprices_DK", "last_updated": "2022-08-22T06:05:02Z", "stargazers_count": 9, "topics": ["denmark", "economy", "fuel-prices", "scraping"], "last_fetched": 1662898287.810606, "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}, "authors": ["@lavermanjj"], "category": "integration", "description": "\ud83c\udfe1 Solarfocus eco manager touch integration for Home Assistant", "domain": "solarfocus", "etag_repository": "W/\"c5b171b25bc78a3982a68e146b7ee81a803700f95e0ee77db1a0b2bdfd7aaa75\"", "full_name": "LavermanJJ/home-assistant-solarfocus", "last_updated": "2022-10-02T19:03:38Z", "stargazers_count": 2, "topics": ["home-assistant-component", "home-assistant-sensor", "solarfocus"], "last_fetched": 1665325629.538313, "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"}, "authors": ["@ryanbateman"], "category": "integration", "description": "A HomeAssistant / HACS integration of Berlin Public Transport (BVG) ", "domain": "bvg_berlin_public_transport", "etag_repository": "W/\"6a3b8f2204659e374de8702132248fa6c1b6462dd4a258793fb243c202c11d42\"", "full_name": "ryanbateman/bvg-sensor", "last_updated": "2022-06-25T09:30:24Z", "stargazers_count": 11, "topics": ["berlin", "bvg", "public-transport"], "last_fetched": 1665939035.193408, "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}, "authors": ["@mchwalisz"], "category": "integration", "description": "SENEC Battery integration for Home Assistant", "domain": "senec", "etag_repository": "W/\"59da5c56d6f7751880e8cb3fcbdb30992dfcdf76e7bc7fbf031f73cacde89c5c\"", "full_name": "mchwalisz/home-assistant-senec", "last_updated": "2022-09-05T21:10:48Z", "stargazers_count": 22, "topics": ["home-assistant-component", "home-assistant-sensor"], "last_fetched": 1665325657.551289, "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}, "authors": ["@maykar", "@NemesisRE"], "category": "integration", "description": "\u25b6\ufe0f Plex component to feed Upcoming Media Card.", "domain": "plex_recently_added", "etag_repository": "W/\"f01f51a349d1c08bdf5a5b82d9ab2acd9c53161ddec4710dcadef3b1321598ee\"", "full_name": "NemesisRE/sensor.plex_recently_added", "last_updated": "2022-05-31T15:39:24Z", "stargazers_count": 2, "last_fetched": 1666451446.005785, "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"]}, "authors": ["@pawkakol1"], "category": "integration", "description": "HACS World's Air Quality Index integration from waqi.info", "domain": "worlds_air_quality_index", "etag_repository": "W/\"df1a5124e62c521b8dfa7e659a9be76486e9ca602518cab43ac9074103325243\"", "full_name": "pawkakol1/worlds-air-quality-index", "last_updated": "2022-10-21T06:30:24Z", "stargazers_count": 9, "topics": ["ha", "pollution", "waqi"], "last_fetched": 1666451457.25841, "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"}, "category": "plugin", "description": "This card provides a Hue-like way to control your lights in Home Assistant.", "downloads": 1866, "etag_repository": "W/\"dce604f8ffc7e6fec4c328ec2c92343aba3cca078fcbfa7048d8ec3ee4caf94b\"", "full_name": "Gh61/lovelace-hue-like-light-card", "last_updated": "2022-09-20T19:02:27Z", "stargazers_count": 5, "topics": ["hue", "hue-lights-control", "light", "lovelace-card", "rgb-lights"], "last_fetched": 1665325244.731404, "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"}, "category": "plugin", "description": "A button card with integrated slider", "downloads": 10178, "etag_repository": "W/\"1d56505b9c1cb55d2c95bce4329b2fb087ccf59ac15558e498179bce60cc6bad\"", "full_name": "custom-cards/slider-button-card", "last_updated": "2022-08-16T19:33:15Z", "stargazers_count": 35, "topics": ["button-card", "card", "lovelace-custom-card", "slider"], "last_fetched": 1666451585.973632, "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"}, "authors": ["@thecode"], "category": "integration", "description": "Home Assistant 1-Wire via sysbus", "domain": "onewire_sysbus", "etag_repository": "W/\"3ecf651ca6da28abc0007745df844f014b384ebdc9383aee990a978434597ef3\"", "full_name": "thecode/ha-onewire-sysbus", "last_updated": "2022-10-18T04:49:10Z", "stargazers_count": 12, "topics": ["1-wire", "raspberry-pi"], "last_fetched": 1666451535.330934, "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"}, "category": "plugin", "description": "Lovelace card for showing Dump1090 data from FR24 in Home Assistant", "etag_repository": "W/\"2a8e675930aa9d94c8ed797e40834fc79a9cb3dc9e0656cc91f66f05e21dc127\"", "full_name": "fratsloos/fr24_card", "last_updated": "2022-09-02T07:08:48Z", "stargazers_count": 9, "topics": ["ads-b", "flightradar24", "lovelace-card", "mode-s"], "last_fetched": 1662801518.138694, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497322497": {"repository_manifest": {"name": "Lovelace Swipe Navigation", "render_readme": true}, "category": "plugin", "description": "\u2194\ufe0f Swipe through Lovelace views on mobile.", "downloads": 3326, "etag_repository": "W/\"ad218ce20dca0345edfe032c2e7c73557b4ce1652a836ead4bb1eff26dd45c80\"", "full_name": "NemesisRE/lovelace-swipe-navigation", "last_updated": "2022-05-31T15:30:18Z", "stargazers_count": 2, "topics": ["customization"], "last_fetched": 1665325290.151091, "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}, "category": "plugin", "description": "\ud83d\ude48 Hides the Home Assistant header and/or sidebar", "downloads": 13712, "etag_repository": "W/\"c9942f71a6262b7107e3a344f900816cd5837f763f0575cf6a38a4067cf0d9e2\"", "full_name": "NemesisRE/kiosk-mode", "last_updated": "2022-05-31T15:30:10Z", "stargazers_count": 28, "topics": ["customization"], "last_fetched": 1666451591.936011, "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"}, "category": "plugin", "description": "\u2194\ufe0f Swipe through Home Assistant Dashboard views on mobile.", "downloads": 2618, "etag_repository": "W/\"590254888b4e5923cfdeb26adb7fbeb449e986a69a34c14ce976cd0e74852fa2\"", "full_name": "zanna-37/hass-swipe-navigation", "last_updated": "2022-10-12T09:56:52Z", "stargazers_count": 56, "topics": ["navigation", "swipe"], "last_fetched": 1666451596.110175, "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"}, "authors": ["@tofuSCHNITZEL"], "category": "integration", "description": "A sensor that give you information about departures from a specified Wiener Linien stop.", "domain": "wienerlinien", "etag_repository": "W/\"8ccb09e65e899fc4968c94bc527e86acab67e276a3be98399813f1597f25b624\"", "full_name": "tofuSCHNITZEL/home-assistant-wienerlinien", "last_updated": "2022-10-08T10:01:58Z", "stargazers_count": 7, "topics": ["wiener-linien"], "last_fetched": 1665939063.057179, "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}, "category": "plugin", "description": "\ud83d\udcfa A card to display upcoming episodes and movies from services like: Plex, Kodi, Radarr, Sonarr, and Trakt.", "downloads": 3170, "etag_repository": "W/\"38889014c517f163e0a653b52a9d6104d6c6780f8862e0138f904c0449c2d6f0\"", "full_name": "NemesisRE/upcoming-media-card", "last_updated": "2022-05-31T15:30:28Z", "stargazers_count": 13, "topics": ["customization"], "last_fetched": 1666451592.126035, "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"}, "category": "plugin", "description": "Hourly weather card for Home Assistant. Visualize upcoming weather conditions as a colored horizontal bar.", "downloads": 2008, "etag_repository": "W/\"10ff514949074b4bab2790fd363a9813f12268d3547947f9ec6a164c272c92ea\"", "full_name": "decompil3d/lovelace-hourly-weather", "last_updated": "2022-10-07T03:30:48Z", "stargazers_count": 30, "topics": ["card", "hourly", "weather"], "last_fetched": 1665325221.243792, "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}, "category": "theme", "description": "Material Design 3 / Material YOU theme for Home Assistant", "etag_repository": "W/\"8ef86abca8dff7420fcb79838c8360430ed3ba83187ecf1764a7c7930950853e\"", "full_name": "AmoebeLabs/HA-Theme_M3-C11-Purple", "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}, "authors": ["@andrzejchm"], "category": "integration", "description": "HACS integration for BleBox shutterBox that adds tilt support", "domain": "blebox_shutterbox_tilt", "etag_repository": "W/\"94cd7287cb1e2391435936946243dad12545bbf324060e3e6bb67bd8d58b6c7a\"", "full_name": "andrzejchm/blebox_shutterbox_tilt", "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}, "authors": ["@elahd"], "category": "integration", "description": "Home Assistant Integration for ESD/Hercules CyclePay Laundry Rooms", "domain": "cyclepay", "etag_repository": "W/\"85e84515a280b7c6917616dd5eb2d77c9db822090826236a254bf248c7584492\"", "full_name": "elahd/ha-cyclepay", "last_updated": "2022-08-23T19:51:44Z", "stargazers_count": 1, "topics": ["laundry"], "last_fetched": 1661585069.47684, "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}, "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/\"822dfef76d67e203b20e5a53ac1c6e7ed4300732a3554d2180598504676677e6\"", "full_name": "georgezhao2010/midea_ac_lan", "last_updated": "2022-10-06T05:00:51Z", "stargazers_count": 250, "topics": ["air-conditioner", "air-purifier", "cooker", "dehumidifier", "dishwasher", "dryer", "fan", "humidifier", "lan", "midea", "refrigerator", "washer", "water-heater"], "last_fetched": 1666451320.851788, "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"}, "authors": ["@godely"], "category": "integration", "description": "Dremel 3D Printer integration for Home Assistant.", "domain": "dremel_3d_printer", "etag_repository": "W/\"dfe4bfaffc6c75cdedc25d2ea58c43ada56c118cea9517be93e2f87120c6c59a\"", "full_name": "godely/ha-dremel-3d-printer", "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}, "authors": ["@ruidias-netsoft"], "category": "integration", "description": "Sodexo - Custom Component for Home Assistant", "domain": "sodexo", "etag_repository": "W/\"a49132e15123253cd8012a605d2c8a6bdb11c340c50cdf91a2ba59832528d86c\"", "full_name": "netsoft-ruidias/ha-custom-component-sodexo", "last_updated": "2022-08-24T08:43:39Z", "stargazers_count": 2, "topics": ["meal-card", "sodexo"], "last_fetched": 1661585229.921265, "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}, "authors": ["@ruidias-netsoft"], "category": "integration", "description": "myEdenred - Custom Component for Home Assistant", "domain": "myedenred", "etag_repository": "W/\"e45f48d8b4ba914924c32db463243d946db29f763111d407b6be110c686a0e9a\"", "full_name": "netsoft-ruidias/ha-custom-component-myedenred", "last_updated": "2022-07-10T11:44:25Z", "stargazers_count": 2, "topics": ["meal-card", "myedenred"], "last_fetched": 1661585228.319288, "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}, "authors": ["@ruidias-netsoft"], "category": "integration", "description": "Coverflex - Custom Component for Home Assistant", "domain": "coverflex", "etag_repository": "W/\"061dc8b339ccb8716c178cee9eeda5167ad41d68b9783af243567359960966ab\"", "full_name": "netsoft-ruidias/ha-custom-component-coverflex", "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}, "authors": ["@matthiez"], "category": "integration", "description": "HACS supporting Home Assistant integration for seven", "domain": "seven", "etag_repository": "W/\"52ee476b4fdec779a4d11cdd872fd96b3be6c2bd4d9f0b11a5fb2efa179769f6\"", "full_name": "seven-io/home-assistant", "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}, "authors": ["@ruidias-netsoft"], "category": "integration", "description": "Pre\u00e7os dos Combust\u00edveis Online - DGEG", "domain": "precoscombustiveis", "etag_repository": "W/\"a6a542867f61e18c597f98a4865ecdd900246a9fd38d97fc138f675200174ddc\"", "full_name": "netsoft-ruidias/ha-custom-component-precoscombustiveis", "last_updated": "2022-07-21T16:09:02Z", "stargazers_count": 11, "topics": ["combustiveis", "dgeg", "fuel-prices", "gas", "portugal"], "last_fetched": 1662801902.731203, "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.0b0"}, "authors": ["@uvjustin", "@elahd"], "category": "integration", "description": "Custom component to allow Home Assistant to interface with Alarm.com", "domain": "alarmdotcom", "etag_repository": "W/\"67f689003f1d9fd6758c853bd9939b1e2a2d8b4dc2c8ebba6ac55dea37efb851\"", "full_name": "pyalarmdotcom/alarmdotcom", "last_updated": "2022-10-03T23:17:25Z", "stargazers_count": 89, "topics": ["alarm"], "last_fetched": 1665325711.794747, "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}, "category": "plugin", "description": "This is the beta version of a HA weather card that is actively being developed.", "downloads": 342, "etag_repository": "W/\"dfd57202ef9b6cdde85baac723baefae03c7c48da8e07e3f163ac21abcb4011b\"", "full_name": "Makin-Things/platinum-weather-card", "last_updated": "2022-10-22T07:19:31Z", "stargazers_count": 32, "topics": ["frontend", "weather", "weather-forecast"], "last_fetched": 1666451592.055309, "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"}, "category": "plugin", "description": "\ud83d\udcfa TV Remote Card (with touchpad and haptic feedback)", "downloads": 3503, "etag_repository": "W/\"1091666884339be935424f423c54bb7e1d9c35113f550499540b89b8dc1288a1\"", "full_name": "usernein/tv-card", "last_updated": "2022-09-24T04:57:17Z", "stargazers_count": 27, "topics": ["automation", "card", "remote", "tv"], "last_fetched": 1666451596.201063, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "495935449": {"repository_manifest": {}, "category": "integration", "description": "Python server to interact with Matter", "domain": "matter_experimental", "etag_repository": "W/\"dd24c43705299cdd67c876cfb929a6a6d964188392c3a9cbee24cc1f7084ad83\"", "full_name": "home-assistant-libs/python-matter-server", "last_updated": "2022-07-07T18:24:53Z", "stargazers_count": 19, "topics": ["matter"], "last_fetched": 1657353289.006767, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "93442181": {"repository_manifest": {"name": "Nibe Uplink", "content_in_root": true, "homeassistant": "2022.5.0"}, "authors": ["@elupus"], "category": "integration", "description": "Home Assistant Nibe Uplink Integration", "domain": "nibe", "etag_repository": "W/\"beb857f43cdc4d94fc1c039458121cae4d5ff944e5f6b57593608347f08a9e4b\"", "full_name": "elupus/hass_nibe", "last_updated": "2022-06-18T18:55:42Z", "stargazers_count": 125, "topics": ["nibe-uplink"], "last_fetched": 1657703228.039281, "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"}, "category": "plugin", "description": "Curtain card for Home Assistant Lovelace UI, to control your motor of cover entities.", "etag_repository": "W/\"5c6b38069c2b15be0a140caad3475249e75afb2b92fbbcc448e707174b8ce702\"", "full_name": "georgezhao2010/lovelace-curtain-card", "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}, "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/\"a14793bc9230aff8a2c000b87bd578a8421f06fa7ffcd3f0c636aaa1946f6f98\"", "full_name": "AmoebeLabs/swiss-army-knife-card", "last_updated": "2022-09-20T02:02:30Z", "stargazers_count": 95, "topics": ["home-assistant-custom-card", "lovelace-custom-card", "material-3", "svg"], "last_fetched": 1665938552.053889, "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"}, "category": "plugin", "description": "An aria2 card for home assistant", "downloads": 60, "etag_repository": "W/\"cbc0f12858fa832b98f29895d9346b4ab9dad45b5f58f0d9c38dc33a059af48d\"", "full_name": "deblockt/aria2-card", "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"}, "category": "plugin", "description": "\ud83d\uddbc\ufe0f Wall panel mode for your Home Assistant Dashboards", "downloads": 2150, "etag_repository": "W/\"d9c1ac3eb86a362c0e8bdc29296cc63b585c5cf45c2560273646665fb90131aa\"", "full_name": "j-a-n/lovelace-wallpanel", "last_updated": "2022-10-03T06:40:55Z", "stargazers_count": 61, "topics": ["dashboard", "fullscreen", "home-assistant-addons", "photo-gallery", "screensaver", "wallpanel"], "last_fetched": 1666451589.397539, "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}, "authors": ["@basilfx"], "category": "integration", "description": "Custom component for the PowUnity BikeTrax integration for Home Assistant.", "domain": "biketrax", "etag_repository": "W/\"f400d962e9590a0b4f5235fb93f69d48f5d6b8ce32b07a53f7cf3ff36872d963\"", "full_name": "basilfx/homeassistant-biketrax", "last_updated": "2022-10-09T10:01:31Z", "stargazers_count": 1, "topics": ["biketrax", "powunity"], "last_fetched": 1665325419.296947, "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}, "authors": ["@Breina"], "category": "integration", "description": "EcoStruxure PowerTag Link Gateway", "domain": "powertag_gateway", "etag_repository": "W/\"3ba806e6765f7d9070d5104043a7b40f102ed210fe2ed877dfb9b3d933796730\"", "full_name": "Breina/PowerTagGateway", "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}, "authors": ["@Breina"], "category": "integration", "description": "NAD Multi-room Audio Controller HomeAssistant Integration", "domain": "nad_controller", "etag_repository": "W/\"5c7ece8cdc3b548fc253d70f93ad5580d0cb683e05edeb311236c5455e5deb84\"", "full_name": "Breina/nad_controller", "topics": ["amplifier-controller", "media-player"], "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}, "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\"", "full_name": "danielsmith-eu/home-assistant-themeparks-integration", "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}, "authors": ["@deblockt"], "category": "integration", "description": "Aria2 integration for home assistant", "domain": "aria2", "downloads": 7, "etag_repository": "W/\"150b0f7a24b9f4c3015c0ce41d96dfc9a50d8572f021abdeb53c2b34b559bb3d\"", "full_name": "deblockt/hass-aria2", "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"}, "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\"", "full_name": "anarion80/sodexo_dla_ciebie", "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}, "authors": ["@fapfaff"], "category": "integration", "description": "AppWash integration for HomeAssistant", "domain": "appwash", "etag_repository": "W/\"a6da21ebe2577336f18a999cbdd5f13d430eb42aeb286202688f7d411491f883\"", "full_name": "fapfaff/homeassistant-appwash", "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"}, "authors": ["@dmamontov"], "category": "integration", "description": "LedFx for Home Assistant", "domain": "ledfx", "etag_repository": "W/\"2459e0007237d6bfd4a5c0e14ec76df9afa2c4703ebe3000afc5b0d0b8383205\"", "full_name": "dmamontov/hass-ledfx", "last_updated": "2022-09-07T13:22:38Z", "stargazers_count": 23, "topics": ["audio-processing", "led-strips", "ledfx", "music-visualizer"], "last_fetched": 1665325502.206961, "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}, "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/\"7021fa279bcce1567cb438cd26a0da3363d4950b51fa2fe9744473188724838a\"", "full_name": "georgezhao2010/fordpass_china", "last_updated": "2022-08-14T05:54:01Z", "stargazers_count": 15, "topics": ["china", "ford", "fordpass", "lincoln", "lincoln-way"], "last_fetched": 1666451319.984774, "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"}, "authors": ["@infradom"], "category": "integration", "description": "Dynamic Grid Prices for Ecopower", "domain": "ecopower_dynamic_grid_prices", "etag_repository": "W/\"bb0f9c34c0a8a43d530464f03c2b616f824ea96a4e42a1c61185e9919486c468\"", "full_name": "infradom/ecopower_dynamic_grid_prices", "last_updated": "2022-09-18T22:29:31Z", "stargazers_count": 6, "topics": ["day-ahead-market", "ecopower", "electricity-market", "electricity-prices", "forecasts"], "last_fetched": 1665325576.854732, "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)"}, "authors": ["@franc6"], "category": "integration", "description": "Provides an ICS (icalendar) platform for the Home Assistant calendar", "domain": "ics_calendar", "etag_repository": "W/\"874e7d4133c9bd88498c87f84d58ba008639526fee08dc98840c92f0ac5f2937\"", "full_name": "franc6/ics_calendar", "last_updated": "2022-10-18T01:44:50Z", "stargazers_count": 50, "topics": ["calendar", "ics"], "last_fetched": 1666451309.619894, "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}, "authors": ["@skarbo"], "category": "integration", "description": "Home Assistant integration for Scinan Thermostats", "domain": "scinan_thermostat", "etag_repository": "W/\"e538881d72002aaed5530b48ca25e31e99f770e9baa390ee064cf121cee2498e\"", "full_name": "Skarbo/hass-scinan-thermostat", "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"}, "authors": ["@tomasmcguinness"], "category": "integration", "description": "Add support for Mixergy's smart water tank into Home Assistant", "domain": "mixergy", "etag_repository": "W/\"49a4197aefd4eaa51072b672f8d59abd97a442edb787c7d99e4cc34aef8dd280\"", "full_name": "tomasmcguinness/homeassistant-mixergy", "last_updated": "2022-10-07T13:55:43Z", "stargazers_count": 16, "topics": ["hotwater", "mixergy"], "last_fetched": 1665939063.292816, "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"}, "authors": ["@tinuva"], "category": "integration", "description": "Fetches loadshedding data from City of Cape Town", "domain": "coct_loadshedding", "etag_repository": "W/\"8b6c0940a704b2fa0b2c67bf698318e40b93d046842c93e8d2a43325b7561878\"", "full_name": "tinuva/ha-coct-loadshedding", "last_updated": "2022-08-17T13:47:37Z", "stargazers_count": 11, "topics": ["cape", "cape-town", "capetown", "eskom", "loadshedding", "south-africa"], "last_fetched": 1665325775.266218, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "517642950": {"repository_manifest": {"name": "Apex"}, "authors": ["@itchannel"], "category": "integration", "description": "Local Neptune Apex HA Integration (Aquarium Controller)", "domain": "apex", "etag_repository": "W/\"e48cb7ee9ef61d056940206a864f648a4a36329fb2647d4faad391815f3621f2\"", "full_name": "itchannel/apex-ha", "last_updated": "2022-09-13T21:06:34Z", "stargazers_count": 4, "topics": ["aquarium", "aquarium-controller"], "last_fetched": 1665325578.033279, "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.1"}, "authors": ["@MislavMandaric"], "category": "integration", "description": "Home Assistant custom component for Vaillant vSMART.", "domain": "vaillant_vsmart", "etag_repository": "W/\"15d1808b42bb0bf126dc7c5d189b85fa6bba5cc3c40e4288d37129300606ebde\"", "full_name": "MislavMandaric/home-assistant-vaillant-vsmart", "last_updated": "2022-10-07T04:38:36Z", "stargazers_count": 27, "topics": ["home-assistant-component", "vaillant"], "last_fetched": 1665325661.479703, "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"}, "authors": ["@xannor"], "category": "integration", "description": "ReoLink Discovery Protocol Integration for Home Assistant", "domain": "reolink_discovery", "etag_repository": "W/\"4e358e4c6822fb0e46328a8a64973009cb8c4635cdf7b13136b28e3bf6d8a94f\"", "full_name": "xannor/ha_reolink_discovery", "last_updated": "2022-09-21T17:38:48Z", "stargazers_count": 2, "topics": ["component"], "last_fetched": 1665325778.61355, "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"}, "authors": ["@xannor"], "category": "integration", "description": "ReoLink REST/Web Camera Integration for Home Assistant", "domain": "reolink_rest", "etag_repository": "W/\"23f55257ffe453ea47ba232a5d80d5f3cd0793e8f3f90e8eb2e966fe7a161527\"", "full_name": "xannor/ha_reolink_rest", "last_updated": "2022-09-21T20:22:49Z", "stargazers_count": 14, "topics": ["component"], "last_fetched": 1665939065.795639, "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}, "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\"", "full_name": "ydogandjiev/hass-sutro", "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}, "authors": ["@0xAlon"], "category": "integration", "description": "Home Assistant Integration for tami4edge", "domain": "tami4edge", "etag_repository": "W/\"4e0c216b400c17a9151ec343fc0d85eb3b1e4326e93969b4e580691f6a1b062c\"", "full_name": "0xAlon/tami4edge", "last_updated": "2022-09-01T12:50:25Z", "stargazers_count": 5, "last_fetched": 1666451161.015416, "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, "country": "AT"}, "authors": ["@DarwinsBuddy"], "category": "integration", "description": "A home-assistant integration supporting WienerNetze Smartmeters as sensors", "domain": "wnsm", "etag_repository": "W/\"4c22d25c5878a0105d7ddd314aff5b0079de3a1274908881d525dd829a06b2bd\"", "full_name": "DarwinsBuddy/WienerNetzeSmartmeter", "last_updated": "2022-09-24T07:28:12Z", "stargazers_count": 21, "topics": ["energy", "hacktoberfest2022", "smartmeter", "wien-energie", "wiener-netze"], "last_fetched": 1666451261.188421, "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"}, "authors": ["@adamoutler"], "category": "integration", "description": "Home assistant integration for Anycubic Printers. ", "domain": "anycubic_wifi", "etag_repository": "W/\"6d2bb6c9bca10fcbbb9e777ddba2b2435078351b227b8d0467d2312f7040bbe0\"", "full_name": "adamoutler/anycubic-homeassistant", "last_updated": "2022-08-28T15:33:38Z", "stargazers_count": 3, "topics": ["3d-printing"], "last_fetched": 1662801614.482386, "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"}, "authors": ["@dmamontov"], "category": "integration", "description": "Seafile for Home Assistant", "domain": "seafile", "etag_repository": "W/\"36dfd08d91978e4ee14da1491f04284d8d0ce1c08a63de578fededa188a3dc98\"", "full_name": "dmamontov/hass-seafile", "last_updated": "2022-09-10T13:18:08Z", "stargazers_count": 5, "topics": ["cloud", "cloud-storage", "file-sync", "files", "seafile", "storage", "sync"], "last_fetched": 1666451277.444093, "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}, "authors": ["@killer0071234"], "category": "integration", "description": "HIQ-Home Integration for Home Assistant HACS Store", "domain": "hiq", "etag_repository": "W/\"9bddc2f6510de08b2985a31f4b212ebbf95cabbfada1706a0da11e2c7a9c6bde\"", "full_name": "killer0071234/ha-hiq", "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"}, "authors": ["@kpoppel"], "category": "integration", "description": "Home Assistant module enabling retrieval of regional heating data from eForsyning.", "domain": "eforsyning", "etag_repository": "W/\"82f8abb2c6ed9f020651afd8100dffcf95cf4fd2d557c7a04858741d1cf95d4b\"", "full_name": "kpoppel/homeassistant-eforsyning", "last_updated": "2022-09-12T21:28:51Z", "stargazers_count": 14, "topics": ["energy", "heating"], "last_fetched": 1665325623.058419, "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}, "authors": ["@markvader"], "category": "integration", "description": "Beta version of the Sonic integration by @markvader", "domain": "sonic", "etag_repository": "W/\"6cda2e793124d435421e4711e606c456dd56c409895f14336ce4fb79a7081735\"", "full_name": "markvader/sonic", "stargazers_count": 5, "topics": ["hero-labs", "herolabs", "leaks", "sonic", "water"], "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"}, "authors": ["@kpoppel"], "category": "integration", "description": "Homeassistant wrapper around the Novafos KMD water metering data warehouse.", "domain": "novafos", "etag_repository": "W/\"a74d6d8bfb9a1221fd7024665852c8dcd311fd7919be361c2379e07560360def\"", "full_name": "kpoppel/homeassistant-novafos", "last_updated": "2022-09-18T14:06:43Z", "stargazers_count": 3, "topics": ["water"], "last_fetched": 1665325623.060148, "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}, "authors": ["@dgomes"], "category": "integration", "description": "RRD Custom Component for Home Assistant", "domain": "rrd_recorder", "etag_repository": "W/\"1a4236e2f4deef8c88c285fdc87ce06346a9bd3c483823314bc12504dfef29ac\"", "full_name": "dgomes/ha_rrd_recorder", "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.8.0b0"}, "authors": ["@henricm", "@argoyle"], "category": "integration", "description": "Ferroamp MQTT Home Assistant sensors for EnergyHub, SSO, ESM and ESO", "domain": "ferroamp", "etag_repository": "W/\"f80646a620a1191fe9921a8fe92c3085ec838ae981b3165ab63a68290a5b0c58\"", "full_name": "henricm/ha-ferroamp", "last_updated": "2022-10-07T07:05:02Z", "stargazers_count": 25, "topics": ["ferroamp", "homeassistant-custom-component"], "last_fetched": 1665325562.987873, "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}, "category": "plugin", "description": "Show multiple entity states, attributes and icons in a single card in Home Assistant's Lovelace UI", "etag_repository": "W/\"d29b3d14f53b84e2d98d5ee661ea1e67ac7e57b5ea2287755464004f7555cb15\"", "full_name": "marcokreeft87/room-card", "last_updated": "2022-10-21T18:06:26Z", "stargazers_count": 60, "topics": ["attribute", "card", "entities", "format", "homeassistant-frontend", "lovelace-custom-card", "room"], "last_fetched": 1666451591.558296, "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}, "authors": ["@perara"], "category": "integration", "description": "Systemair SAVE Connect: custom integration for Home Assistant", "domain": "systemair", "etag_repository": "W/\"bec756db17cc50938658893bee7c32dc4d62a81d78d21c910c5cca43f8413644\"", "full_name": "perara/systemair-save-connect", "last_updated": "2022-08-15T18:38:52Z", "stargazers_count": 2, "topics": ["systemair", "ventilation"], "last_fetched": 1665325695.230376, "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}, "authors": ["@mathieu-mp", "@Elkropac"], "category": "integration", "description": "Home Assistant integration for Intex Spa", "domain": "intex_spa", "etag_repository": "W/\"7959a6681f7e894e2eb74acf1086441c3a391437ec4b3a8fb23a4e1c8f6e1a01\"", "full_name": "mathieu-mp/homeassistant-intex-spa", "last_updated": "2022-08-30T09:11:35Z", "stargazers_count": 10, "topics": ["climate", "intex", "purespa", "spa", "switch"], "last_fetched": 1662801874.739161, "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}, "authors": ["@stephan192"], "category": "integration", "description": "Home Assistant integration for L\u00e4nder\u00fcbergreifendes Hochwasser Portal", "domain": "hochwasserportal", "etag_repository": "W/\"8de59f91beca1e6f46c8ba3c19bcc5d5062fdf856c832e70da07246bf505b696\"", "full_name": "stephan192/hochwasserportal", "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": "2022.8.0"}, "authors": ["@mvdwetering"], "category": "integration", "description": "Home Assistant integration for Yamaha AV receivers that support the YNCA protocol (serial and IP).", "domain": "yamaha_ynca", "downloads": 1, "etag_repository": "W/\"81d7bd764f0877b31bf108d158e54a793a52d3d50674836a03376816e3634302\"", "full_name": "mvdwetering/yamaha_ynca", "last_updated": "2022-10-07T13:48:40Z", "stargazers_count": 8, "topics": ["home-assistant-component", "yamaha-avr", "yamaha-receiver"], "last_fetched": 1665325675.255803, "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"}, "category": "plugin", "description": "Montpellier Lovelace TAM card displays next two crossing times of the tramway or bus in Montpellier, France.", "downloads": 102, "etag_repository": "W/\"6096b1e78cd99b8430cb2d7ea3d1df41892e1cfb742d1fdcf1d1aa844f28cf6c\"", "full_name": "MathisAlepis/lovelace-tam-card", "last_updated": "2022-09-14T11:20:07Z", "stargazers_count": 3, "topics": ["lovelace-custom-card", "montpellier", "public-transport", "tam"], "last_fetched": 1665325284.836249, "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}, "category": "plugin", "description": "Home Assistant Lovelace Shutter Row Card", "downloads": 297, "etag_repository": "W/\"b6cd73312389058c7ba5259d0e881621321cc4f9d4fb4cdc6567eb1089f62641\"", "full_name": "berrywhite96/lovelace-shutter-row", "last_updated": "2022-10-16T16:14:00Z", "stargazers_count": 4, "topics": ["home-assistant-card", "lovelace-card"], "last_fetched": 1665938559.499955, "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}, "authors": ["@amitfin"], "category": "integration", "description": "Home Assistant Daily Schedule Custom Component", "domain": "daily_schedule", "etag_repository": "W/\"b1a07088f88bfdcc91a48a07af46031155b50640c34f9efbfff1bd681adc997d\"", "full_name": "amitfin/daily_schedule", "topics": ["homeassistant-custom-component"], "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}, "authors": ["@bottlecapdave"], "category": "integration", "description": "Home Assistant integration for interacting with Octopus Energy", "domain": "octopus_energy", "etag_repository": "W/\"d02584c5465aa3263788ef720848005d02f406ffd65839538050ba3ca4031730\"", "full_name": "BottlecapDave/HomeAssistant-OctopusEnergy", "last_updated": "2022-10-21T04:28:04Z", "stargazers_count": 98, "topics": ["octopus-energy", "smart-home"], "last_fetched": 1666451204.808049, "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}, "authors": ["@bottlecapdave"], "category": "integration", "description": "Home Assistant integration for determining the time to the next First bus", "domain": "first_bus", "etag_repository": "W/\"89f360c9e5839ba313e6054e093690b5853ebac29de3559deb16325dfdc696da\"", "full_name": "BottlecapDave/HomeAssistant-FirstBus", "stargazers_count": 2, "topics": ["bus-arrival", "first-bus", "smart-home"], "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"}, "authors": ["@modrzew"], "category": "integration", "description": "Home Assistant integration providing support for the FlashForge Adventurer 3 3D printer.", "domain": "flashforge_adventurer_3", "etag_repository": "W/\"63fa6b2fb9f1c6b1e6f929e8100fc5698d6e758be12c5ffb1fa0e860364ec5a4\"", "full_name": "modrzew/hass-flashforge-adventurer-3", "last_updated": "2022-09-24T11:34:54Z", "stargazers_count": 4, "topics": ["flashforge", "flashforge-adventurer"], "last_fetched": 1665325663.806558, "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}, "authors": ["@v1ack"], "category": "integration", "description": "LeLight integration for Home Assistant", "domain": "lelight", "etag_repository": "W/\"fda1a1969e796c3dc11015aef8e5d68bb533e394a79735b3b30d1bf8435e63ea\"", "full_name": "v1ack/lelight", "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}, "authors": ["@faserf"], "category": "integration", "description": "Unofficial HA DB Integration, due to removal as of Home Assistant 2022.11", "domain": "deutschebahn", "etag_repository": "W/\"0a1549dfdf294bf0a69cbca0ff9574c0689b27f506d04b84b92b35421e482900\"", "full_name": "FaserF/ha-deutschebahn", "last_updated": "2022-10-05T12:31:48Z", "stargazers_count": 13, "last_fetched": 1665938838.913621, "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"}, "authors": ["@lewei50"], "category": "integration", "description": "IAMMETER custom component for Home Assistant", "domain": "iammeter_http", "etag_repository": "W/\"8f996b346247839949f03b6e66205860b3799549fdde887b8de788f5dc2cf172\"", "full_name": "lewei50/ha_iammeter", "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}, "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/\"7fe03aea74b9ce1764c58687ca41d19dd2c66555898f1831c60cfaee65945da7\"", "full_name": "trvqhuy/nestup_evn", "last_updated": "2022-09-15T05:45:53Z", "stargazers_count": 23, "topics": ["electricity-meter", "homeassistant-custom-component", "polling-service"], "last_fetched": 1665939064.021771, "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}, "category": "plugin", "description": "Draws the map available from a Xiaomi Vacuum cleaner flashed with Valetudo in a Home Assistant Lovelace card", "etag_repository": "W/\"a2827ddfa5301712a1b9e4aae51a9af62f13a1950773c0e7005b275efa3366eb\"", "full_name": "Hypfer/lovelace-valetudo-map-card", "last_updated": "2022-09-11T13:10:08Z", "stargazers_count": 155, "topics": ["valetudo"], "last_fetched": 1666451588.67332, "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"}, "category": "plugin", "description": "This Lovelace custom card displays downloads information provided by the MyJDownloader Integration", "downloads": 320, "etag_repository": "W/\"89076ef7afd4463a1b66d67a38131092e1f1093e5e4813d5ff12ea0508af90ee\"", "full_name": "Nyaran/myjdownloader-card", "topics": ["hacs-custom", "jdownloader", "myjdownloader"], "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", "render_readme": true}, "authors": ["@alemuro"], "category": "integration", "description": "Cecotec Conga - Custom Component for Home Assistant", "domain": "cecotec_conga", "etag_repository": "W/\"9fc6f8931cdb2f9f096ca7e98b035e17d9138f92ffa143a35feb11a2bb7cea6b\"", "full_name": "alemuro/ha-cecotec-conga", "last_updated": "2022-09-18T08:54:40Z", "stargazers_count": 3, "topics": ["automation", "cecotec", "conga"], "last_fetched": 1666451166.372132, "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}, "authors": ["@0xAlon"], "category": "integration", "description": "Home Assistant Integration for Dolphin Boiler - Smart Water Heating Control", "domain": "dolphin", "etag_repository": "W/\"264ccffd4e7fdd8c01a0ec229f9fd8ff0c384e522b8731318e99959f7cd83a52\"", "full_name": "0xAlon/dolphin", "stargazers_count": 1, "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}, "authors": ["@hardbyte"], "category": "integration", "description": "A cloud-polling Home Assistant component to integrate with an Evnex Charger", "domain": "evnex", "etag_repository": "W/\"4b466fe3a34512458ac340418a776ee5eccab851ad843d6360605b9c6701cdda\"", "full_name": "hardbyte/ha-evnex", "topics": ["charger", "energy-consumption", "homeassistant-custom-component"], "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}, "authors": ["@emes30"], "category": "integration", "description": "Home Assistant custom integration for Facebook Messenger.", "domain": "facebook_messenger", "etag_repository": "W/\"e00f79e9d2d2fda32a48f496c12fbfcd15c1e4d1cbd1a9b4ab2d9e03b3cd298b\"", "full_name": "emes30/facebook_messenger", "last_updated": "2022-09-26T21:07:38Z", "stargazers_count": 7, "topics": ["facebook", "images", "messenger"], "last_fetched": 1665938833.497869, "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"}, "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\"", "full_name": "toringer/home-assistant-met-next-6-hours-forecast", "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}, "authors": ["@cjaliaga"], "category": "integration", "description": "Home Assistant integration for Panasonic Aquarea devices connected to Aquarea Smart Cloud", "domain": "aquarea", "etag_repository": "W/\"f36e2401ac97d89a8cd55b2f624674b7defddd9583ff135bb715cef9af85b71c\"", "full_name": "cjaliaga/home-assistant-aquarea", "last_updated": "2022-10-20T11:19:01Z", "stargazers_count": 17, "topics": ["aquarea", "panasonic", "panasonic-comfort-cloud", "panasonic-smart-cloud"], "last_fetched": 1666451224.707603, "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"}, "authors": ["@juacas"], "category": "integration", "description": "Device tracker for ZTE F6640 Router in Home Assistant", "domain": "zte_tracker", "etag_repository": "W/\"62173a72879d1cdc87278deaa15792dc29ece9d361b44a663e0287d72c2b5194\"", "full_name": "juacas/zte_tracker", "topics": ["device-tracker", "router"], "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"}, "authors": ["@vaskivskyi"], "category": "integration", "description": "Control your Chroma-enabled devices from Home Assistant", "domain": "chroma", "etag_repository": "W/\"df522fbbd1ba616311989639bcacbb27ac71924485f71ef368065d2192774615\"", "full_name": "Vaskivskyi/ha-chroma", "last_updated": "2022-10-13T12:52:49Z", "stargazers_count": 7, "topics": ["chroma", "razer", "razer-chroma"], "last_fetched": 1665939064.825861, "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}, "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/\"4d1f28e7678f81906ef3362ab26d8cba7c6b3c7a71bc16f05b1822288138c6c6\"", "full_name": "DeerMaximum/QR-Code-Generator", "stargazers_count": 7, "topics": ["qrcode-generator"], "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}, "category": "plugin", "description": "a custom card for home assistant that utilizes tabs to segregate individual cards.", "downloads": 1148, "etag_repository": "W/\"0eeae511630ad5dce8a224c1681e0ef6728191973d710fba637381f602b92b28\"", "full_name": "kinghat/tabbed-card", "last_updated": "2022-10-18T18:49:33Z", "stargazers_count": 3, "topics": ["card", "hacs-custom", "home-assistant-component", "lovelace-custom-card"], "last_fetched": 1666451590.647348, "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}, "authors": ["@DeerMaximum"], "category": "integration", "description": "Custom Home Assistant integration to read data from a C.M.I", "domain": "ta_cmi", "etag_repository": "W/\"738984c290022cb34682b6aa313da1293e92cce96f4520caa03b19baf57222a4\"", "full_name": "DeerMaximum/Technische-Alternative-CMI", "last_updated": "2022-10-16T18:40:29Z", "stargazers_count": 3, "last_fetched": 1666451267.541254, "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"}, "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/\"d670c0bd00dc2e9725bafaf63307845200d60d915a41150d263730d45942095e\"", "full_name": "sh00t2kill/dolphin-robot", "stargazers_count": 3, "topics": ["dolphin", "maytronics", "robot"], "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"}, "category": "plugin", "description": "Home Assistant Card showing today's date & time along with a weather forecast for the next days with animated icons", "downloads": 355, "etag_repository": "W/\"21375a79b83a0f299c9c7889292aaedfdb684c76dbbde4d444cec5a485409327\"", "full_name": "pkissling/clock-weather-card", "last_updated": "2022-10-22T15:12:18Z", "stargazers_count": 17, "topics": ["animated", "animation", "bar", "clock", "date", "forecast", "gradient", "icons", "time", "weather"], "last_fetched": 1666451593.543591, "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 +{"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