initialSetup
"History Messages".InitialSetupRequest
Configures initial history system settings.
Types:
{
"locale": "en",
"env": "production",
"platform": {
"name": "macos"
}
}
getRanges
"History Messages".GetRangesRequest
Retrieves available time ranges for history filtering.
Types:
{
"ranges": ["today", "yesterday", "monday", "recentlyOpened"]
}
query
"History Messages".QueryRequest
Queries history items with filtering and pagination.
Types:
params for a query: (note: can be an empty string!)
{
"query": {
"term": "example.com"
},
"offset": 0,
"limit": 50
}
params for a range, note: the values here will match what you returned from getRanges
{
"query": {
"range": "today"
},
"offset": 0,
"limit": 50
}
Response, note: always return the same query I sent:
{
"info": {
"finished": false,
"query": {
"term": "example.com"
}
},
"value": [
{
"id": "12345",
"dateRelativeDay": "Today - Wednesday 15 January 2025",
"dateShort": "15 Jan 2025",
"dateTimeOfDay": "11:01",
"domain": "example.com",
"etldPlusOne": "example.com",
"title": "Example Website",
"url": "https://example.com/page"
}
]
}
deleteRange
{ action: 'delete' }
{ action: 'none' }
params
{
"range": "today"
}
response
{
"action": "delete"
}
title_menu
"History Messages".TitleMenuRequest
Sent when a right-click is issued on a section title (or when the three-dots button is clicked)
Types:
params
{
"dateRelativeDay": "Today - Wednesday 15 January 2025"
}
response, if deleted
{
"action": "delete"
}
response, otherwise
{
"action": "none"
}
entries_menu
"History Messages".EntriesMenuRequest
Sent when a right-click is issued on a section title (or when the three-dots button is clicked)
Types:
params
{
"ids": ["abc", "def"]
}
response, if deleted
{
"action": "delete"
}
response, otherwise
{
"action": "none"
}
open
example payload
{
"url": "https://example.com/path",
"target": "same-tab"
}
{
"url": "https://example.com/path",
"target": "new-tab"
}
reportInitException
"History Messages".ReportInitExceptionNotification
Reports initialization errors in the history system.
{
"message": "Failed to initialize history database"
}
reportPageException
"History Messages".ReportPageExceptionNotification
Reports errors during page history operations.
{
"message": "Failed to load page history"
}