gbox-sdk
    Preparing search index...

    Interface BrowserSwitchTabResponse

    Browser tab

    interface BrowserSwitchTabResponse {
        active: boolean;
        favicon: string;
        id: string;
        loading: boolean;
        title: string;
        url: string;
    }
    Index

    Properties

    active: boolean

    Whether the tab is the current active (frontmost) tab

    favicon: string

    The tab favicon

    id: string

    The tab id

    loading: boolean

    Whether the tab is currently in a loading state.

    The value is true while the browser is still navigating to the target URL or fetching sub-resources (i.e. document.readyState is not "complete"). It typically switches to false once the load event fires and all major network activity has settled.

    title: string

    The tab title

    url: string

    The tab url