Chrome Extension to send URL to Home Assistant

This is a very simple Chrome Browser Extension to send URL to HomeAssistant.
Great to use with youtube-dl, music player, add to a reading list or create your own amazon price watcher.

I plan to use it in a node-red flow, with a split by domain name.

automation:
- id: webhook_send_url
  trigger:
    platform: webhook
    webhook_id: webhook_send_url
  action:
    service: notify.pushover
    data_template:
      message: "{{ trigger.json.url }}"
      title: "{{ trigger.json.title }}"
1 Like