Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

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

  • 3 trả lời
  • 2 gặp vấn đề này
  • 1068 lượt xem
  • Trả lời mới nhất được viết bởi 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?

Giải pháp được chọn

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

Đọc câu trả lời này trong ngữ cảnh 👍 0

Tất cả các câu trả lời (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

Giải pháp được chọn

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