搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

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