AboutSupportDeveloper GuideVersion 41.129.83.3

A script that is run before page load.

interface PreloadScript {
    mandatory?: boolean;
    state?:
        | "load-started"
        | "load-failed"
        | "load-succeeded"
        | "failed"
        | "succeeded";
    url: string;
}

Properties

Properties

mandatory?: boolean
false

Fail to load the window if this preload script fails
state?:
    | "load-started"
    | "load-failed"
    | "load-succeeded"
    | "failed"
    | "succeeded"

Preload script execution state.

url: string

The URL from which the script was loaded.