🧭 如何匯出 Chrome 的瀏覽紀錄
📁 步驟如下:
1️⃣ 找到檔案路徑
 👉 %LOCALAPPDATA%\Google\Chrome\User Data\Default\History
2️⃣ 下載工具
 🔗 DB Browser for SQLite v3.13.1
3️⃣ 開啟資料庫
 📂 使用 DB Browser for SQLite 開啟「History」這個檔案
4️⃣ 執行 SQL 查詢
 在「執行 SQL」分頁中輸入以下指令 👇
SELECT 
    urls.url,
    urls.title,
    datetime(urls.last_visit_time/1000000-11644473600,'unixepoch','localtime') AS last_visit_localtime,
    urls.visit_count
FROM urls
ORDER BY last_visit_localtime DESC;
5️⃣ 匯出結果
 ✅ 點選「儲存結果顯示」
 💾 選擇格式為 CSV,即可完成匯出。
 
沒有留言:
張貼留言