【目的】
- 研究 Google Chrome 的書籤(Bookmarks)與歷史記錄(History)。
【環境】
- Windows Vista。
- Sqliteman(http://sqliteman.com/)。
- JSON Editor(http://braincast.nl/samples/jsoneditor/)。
【說明】
- Chrome 將使用者資料以 Sqlite/Json 的格式存在下面資料夾
C:\Users\[User Name]\AppData\Local\Google\Chrome\User Data\Default - History (歷史記錄),利用 Sqliteman 打開 History這檔案,其中的
- urls 代表造訪過的 url。
以其中一筆資料為例,由前兩筆就可看出造訪資料。- id: 編號 (ex. 2 )
- url: 網址 (ex.http://www.google.com.tw/search)
- title: 網址抬頭 (ex.MegaTouch Framework - Google 搜尋)
- visit_count: 造訪次數
- 以下省略
- keyword_search_terms
- Bookmarks(書籤)
- 採用的是JSON格式,請直接將內容貼到 JSON Editor(http://braincast.nl/samples/jsoneditor/)
就可看到比較方便越讀的內容。
- 採用的是JSON格式,請直接將內容貼到 JSON Editor(http://braincast.nl/samples/jsoneditor/)
- Cookies
- Thumbnails(縮圖)
【問題】
- 如何找出 Thumbnails 裡面的網址與說明。
- 如何將圖檔存入與讀出 Sqlite
A: sqlite处理BLOB数据 http://sqlite.com.cn/bbs/topicdisp.asp?tid=34&topage=179
【參考】
- Google Chrome Temporary Files, Bookmarks Location and Others
http://unlockforus.blogspot.com/2008/09/google-chrome-temporary-files-location.html