Displaying recent browsing history
Briefly

To read browsing history data from Microsoft Edge and Google Chrome, the database files are located in the user profile's AppData directory, specifically within the History files for each browser.
Both Microsoft Edge and Google Chrome store their browsing history in sqlite3 databases. To access this data, one must utilize the sqlite3 library and understand the underlying database structure.
Finding the user's profile path is a critical step in accessing browsing history files. This can be achieved using the SHGetFolderPathW function in Windows to retrieve the correct path.
Implementing a Console application in Visual Studio provides a structured way to access and manipulate the browsing history data stored in local databases for Edge and Chrome.
Read at CodeProject
[
|
]