- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Hướng dẫn xem lịch sử các trang web đã truy cập trên Chrome Browser
Xin chào các bạn, bài viết hôm nay mình sẽ tiếp tục hướng dẫn các bạn cách cách xem lịch sử bạn đã mở các trang web trên trình duyệt Google Chrome C#.
[C#] View History and Search Keyword Chrome Browser
Trong bài viết trước, mình đã có hướng dẫn các bạn các xem mật khẩu được lưu trữ trên các trình duyệt web.
Bài này, mình sẽ nói về lịch sử truy cập website Google Chrome C#.
File History này sẽ lưu trữ những thông tin sau:
- Lịch sử các đường dẫn website bạn đã truy cập.
- Các từ khóa bạn tìm kiếm
- Lịch sử tải dữ liệu download của bạn.
- Đếm số lần truy cập website...
Tập tin History này là tập tin Sqlite, các bạn có thể sử dụng chương trình đọc cơ sở dữ liệu SQLite lên để xem.
Ở dưới mình sử dụng Navicate ở xem.
Lưu ý: Để mở được file các bạn cần tắt trình duyệt Chrome rồi mới xem được nhé.
Vì vậy công việc giờ các bạn muốn xem thông tin thì chỉ cần dùng C# để đọc dữ liệu lên là xong.
Các bạn cũng có thể xóa dữ liệu lịch sử Chrome này bằng code của mình một cách dễ dàng phải không nào.
Giao diện demo ứng dụng xem lịch sử trình duyệt Chrome c#:
Full source code View History Chrome Browser C#:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SQLite;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace HistoryChrome
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnGetHistory_Click(object sender, EventArgs e)
{
List<HistoryItem> allHistoryItems;
string chromeHistoryFile = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)
+ @"\Google\Chrome\User Data\Default\History";
if (File.Exists(chromeHistoryFile))
{
SQLiteConnection connection = new SQLiteConnection
("Data Source=" + chromeHistoryFile + ";Version=3;New=False;Compress=True;");
connection.Open();
DataSet dataset = new DataSet();
SQLiteDataAdapter adapter = new SQLiteDataAdapter
("select * from urls order by last_visit_time desc", connection);
adapter.Fill(dataset);
if (dataset != null && dataset.Tables.Count > 0 & dataset.Tables[0] != null)
{
DataTable dt = dataset.Tables[0];
allHistoryItems = new List<HistoryItem>();
foreach (DataRow historyRow in dt.Rows)
{
HistoryItem historyItem = new HistoryItem()
{
URL = Convert.ToString(historyRow["url"]),
Title = Convert.ToString(historyRow["title"])
};
long utcMicroSeconds = Convert.ToInt64(historyRow["last_visit_time"]);
DateTime gmtTime = DateTime.FromFileTimeUtc(10 * utcMicroSeconds);
DateTime localTime = TimeZoneInfo.ConvertTimeFromUtc(gmtTime, TimeZoneInfo.Local);
historyItem.VisitedTime = localTime;
allHistoryItems.Add(historyItem);
}
dataGridView1.DataSource = allHistoryItems;
}
}
}
}
public class HistoryItem
{
public string URL { get; set; }
public string Title { get; set; }
public DateTime VisitedTime { get; set; }
}
}
Thanks for watching!