feat: add Safari browser support with history extraction (#564)

* feat: add Safari browser support with history extraction
* fix: use correlated subquery to ensure title matches latest visit
This commit is contained in:
Roger
2026-04-11 23:47:53 +08:00
committed by GitHub
parent 26817b44d5
commit 509cdc2468
11 changed files with 639 additions and 0 deletions
+6
View File
@@ -91,5 +91,11 @@ func platformBrowsers() []types.BrowserConfig {
Kind: types.Firefox,
UserDataDir: homeDir + "/Library/Application Support/Firefox/Profiles",
},
{
Key: "safari",
Name: safariName,
Kind: types.Safari,
UserDataDir: homeDir + "/Library/Safari",
},
}
}