interface DomainActivity {
    etldPlusOne: string;
    favicon: Favicon;
    favorite: boolean;
    history: HistoryEntry[];
    title: string;
    trackersFound: boolean;
    trackingStatus: TrackingStatus;
    url: string;
}

Properties

etldPlusOne: string

Effective top-level domain plus one (eTLD+1) of the URL. Used to infer colors/fallbacks

favicon: Favicon
favorite: boolean
history: HistoryEntry[]
title: string

Current page title

trackersFound: boolean

Indicates whether trackers were found

trackingStatus: TrackingStatus
url: string

The full URL to be used for the favicon + title link. This is normally just the domain, but a fully qualified URL.