Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

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

  • 3 risposte
  • 2 hanno questo problema
  • 827 visualizzazioni
  • Ultima risposta di 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?

Soluzione scelta

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

Leggere questa risposta nel contesto 👍 0

Tutte le risposte (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

Soluzione scelta

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