mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-01 16:57:34 +00:00

* e.g. to e.g., and proper case for Home Assistant * Instructions how to -> Instructions on how to
40 lines
1.0 KiB
Markdown
40 lines
1.0 KiB
Markdown
---
|
|
layout: page
|
|
title: "Browser"
|
|
description: "Instructions on how to setup the browser component with Home Assistant."
|
|
date: 2015-01-24 14:39
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: home-assistant.png
|
|
ha_category: Utility
|
|
---
|
|
|
|
|
|
The `browser` component provides a service to open URLs in the default browser on the host machine.
|
|
|
|
To load this component, add the following lines to your `configuration.yaml`:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
browser:
|
|
```
|
|
|
|
#### {% linkable_title Service `browser/browse_url` %}
|
|
|
|
| Service data attribute | Optional | Description |
|
|
| ---------------------- | -------- | ----------- |
|
|
| `url` | no | The URL to open.
|
|
|
|
|
|
### {% linkable_title Usage %}
|
|
|
|
To use this service, choose **Call Service** from the **Developer Tools**. Choose the service *browser/browse_url* from the list of **Available services:** and enter the URL into the **Service Data** field and hit **CALL SERVICE**.
|
|
|
|
```json
|
|
{"url": "http://www.google.com"}
|
|
```
|
|
|
|
This will open the given URL on the host machine.
|