搜索 | 用户支持

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

Learn More

How can I view all the times I visited a website in Firefox history, instead of just its most recent visit?

  • 3 个回答
  • 2 人有此问题
  • 825 次查看
  • 最后回复者为 zzt741

more options

Let's say I visit google.com at 6PM, then later at 9PM. Firefox would only in history when I visited the site at 9PM, could I make it show when I visited it at both 6PM and 9PM?

Let's say I visit google.com at 6PM, then later at 9PM. Firefox would only in history when I visited the site at 9PM, could I make it show when I visited it at both 6PM and 9PM?

被采纳的解决方案

I did an add-on search and these have pretty good reviews. Not sure if they are useful for your needs, though:

定位到答案原位置 👍 0

所有回复 (4)

more options

Hi Yousuf, there isn't any built-in feature for that.

You could take a look at add-ons, or you could use an external program such as:

http://www.nirsoft.net/utils/mozilla_history_view.html

more options

Ok thanks.

more options

选择的解决方案

I did an add-on search and these have pretty good reviews. Not sure if they are useful for your needs, though:

more options

I have the same question with you, and I have solved it. The mozilla_history_view in the first respond is useful, and I have ever tried many addons, only "History in Threads" can do this, but it's not very perfect, and "Better History" only shows the first visit in Day view, in Week or Month view, it only shows the latest visit, so I solved it by myself. My method is: Open the history file "places.sqlite" with database softwares such as Navicat or DB Browser for SQLite, then run the query below, then a view called "history" will be created, open it then you can view your histories.

CREATE VIEW history AS SELECT title AS 网页标题, datetime( visit_date / 1000000, 'unixepoch', 'localtime' ) AS 访问时间, url AS 网址, ( CASE visit_type WHEN 1 THEN '链接' WHEN 2 THEN '输入的网址' WHEN 3 THEN '书签' WHEN 4 THEN '嵌入的' WHEN 5 THEN '永久重定向' WHEN 6 THEN '临时重定向' WHEN 7 THEN '下载' WHEN 8 THEN '内嵌框架' WHEN 9 THEN '刷新' ELSE '其他' END ) AS 访问类型, visit_count AS 访问次数, datetime( last_visit_date / 1000000, 'unixepoch', 'localtime' ) AS 上次访问时间, from_visit AS 访问来源 FROM moz_historyvisits, moz_places WHERE moz_historyvisits.place_id = moz_places.id ORDER BY moz_historyvisits.visit_date DESC