Is it possible to simply switch a tab using Fully Kiosk Browser/App?

Yes, this works for me. I used a combination of Fully Kiosk Browser and Browser Mod that together are freak’n powerful!

script:
  browser_mod_switch_to_thermometer:
    alias: 'Switch Kitchen Tablet to thermometer TAB'
    sequence:      
      - service: browser_mod.navigate
        data:
          navigation_path: /lovelace-tablets/thermometer
          deviceID:
            - samsung10_fkb_tabletui

  browser_mod_switch_to_tablets_main:            
    alias: 'Switch Kitchen Tablet to Tablets TAB'
    sequence:          
    - service: browser_mod.navigate
      data:
        navigation_path: /lovelace-tablets/tablets
        deviceID:
          - samsung10_fkb_tabletui

Browser mod also exposes a sensor, sensor.samsung10_fkb_tabletui in my case, that has multiple attributes, one of them being path so that would allow you to detect what each display is currently displaying. If a user changes to a view you can detect this and change it back if you want or after a time limit.

1 Like