Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

How to find history in specific day?

  • 3 回覆
  • 4 有這個問題
  • 8 次檢視
  • 最近回覆由 cor-el

more options

I want to find history in specific day. But in History window, I only see options such as: Today, yesterday, Last 7 day, Last month.... and have no option for search in specific day. How can I do this?

I want to find history in specific day. But in History window, I only see options such as: Today, yesterday, Last 7 day, Last month.... and have no option for search in specific day. How can I do this?

所有回覆 (3)

more options

Open up your history in the Library, and then select the toolbar button which has four horizontal lines through it. This will then give you the option to show additional columns in the window. Choose "Most Recent Visit".

You can then sort your history by either using the same menu, or just clicking on the header for the "Most Recent Visit" column. This way, you can find your items for a specific date.

more options

Thanks Scott. But it's difficult and time-consuming if I want to search date long ago. Do you have Idea?

more options

A possibility is to use this NirSoft utility.


You can use the SQLite Manager extension to create the list.

  1. Open Profile Directory -> places.sqlite -> Go
  2. Hit the "Execute SQL" tab
  3. Use a Select like this:
SELECT datetime(visit_date/1000000,'unixepoch','localtime') AS visit_date, url, title, visit_count, frecency
FROM moz_places, moz_historyvisits
WHERE moz_places.id = moz_historyvisits.place_id AND visit_date BETWEEN strftime('%s','2014-MM-DD 00:00:00')*1000000 AND strftime('%s','2014-MM-DD 23:59:59')*1000000
ORDER BY visit_date, url

The date/time in strftime needs to be entered in UTC Click Run SQL to generate a results list