Skip to main content

Favorites Module

The favorites module manages user's web bookmarks.

Data Structure

interface FavoriteItem {
id: string
name?: string // Custom name
title: string // Page title
url: string // URL
favicon?: string // favicon URL
faviconData?: string // favicon base64
tags?: string[] // Tags
description?: string // Description
createdAt: string
}

IPC Channels

ChannelParametersReturns
get-favorites-FavoriteItem[]
add-favorite-manual{ url, title, name? }FavoriteItem
update-favoriteid, updatesFavoriteItem
remove-favoriteidboolean
get-favorite-tags-string[]
fetch-page-titleurlstring

Features

  • Favicon icon display
  • Tag system
  • Click to open in PC workstation
  • Search filtering