chromium/tools/mac/power/driver_scripts_templates/idle_on_site

{%- from 'macros' import hash_bang with context -%}
{%- from 'macros' import make_maximized with context -%}
{{ hash_bang() }}

-- Copyright 2021 The Chromium Authors
-- Use of this source code is governed by a BSD-style license that can be
-- found in the LICENSE file.

-- This script navigates to |idle_site| and remains on it for |delay| seconds.

tell application "{{ browser }}"
    -- If {{ browser }} is already started then just bring
    -- it to the forefront otherwise open it.
    if it is running then
      reopen
    else
      activate
    end if

    {{ make_maximized() }}

    delay 10

    open location "{{ idle_site }}"

    {% if send_full_screen_key %}
    delay 10
    tell application "System Events" to keystroke "f"
    {% endif %}

    delay {{ delay }}

    activate

end tell