Question: Full screen (instead of windowed view) of camera stream with single press on picture glance

Hi,
I currently successfully use stream component for my cameras.
I have set in Lovelace to see the camera stream through the “picture-glance”.
When I press on the picture-glance I open a new window with live video, but not in full screen. For full screen view I have to additionally press an icon in the right bottom of the stream window to activate it.

Is there an option the would that show me full screen immediately after i press on the “picture-glance”?

Thank you for any advice.

Would love to have that as well.

Did you ever figure this out? I’m looking to do the same thing.

You can achieve this with the browser_mod HACS plugin.

Example:

camera_view: live
type: picture-glance
entities:
  - entity: binary_sensor.front_door_motion
camera_image: camera.front_door_high
title: Front Door
tap_action:
  action: fire-dom-event
  browser_mod:
    service: browser_mod.popup
    data:
      title: Front Door
      size: fullscreen
      content:
        type: picture-glance
        camera_image: camera.front_door_high
        entities:
          - entity: camera.front_door_high

Ive tried this and it doesnt do anyting for me.