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!

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

Can I access all dates that a website has been visited?

  • 2 ответа
  • 1 имеет эту проблему
  • 4 просмотра
  • Последний ответ от cor-el

more options

I have been utilizing the History function to see when a page was last visited and how many times it has been visited.

I would like to see every instance of when I have visited a page. For example, I have visited google.com 27 times in the last month; I can see that I last visited google.com yesterday. But, I would like to see a list of every date/time that I visited google.com in the past month.

Is this possible?

Thanks for your help.

I have been utilizing the History function to see when a page was last visited and how many times it has been visited. I would like to see every instance of when I have visited a page. For example, I have visited google.com 27 times in the last month; I can see that I last visited google.com yesterday. But, I would like to see a list of every date/time that I visited google.com in the past month. Is this possible? Thanks for your help.

Все ответы (2)

more options
  1. Go to the History menu and select "Show all History"
  2. In the Library window that opens, select this month on the left side to filter your history items to just those from this month.
  3. Then type google in the search bar (upper-right) to further filter the results to just google visits this month.

I've attached a screenshot of what it looks like on my Mac. It looks basically the same on Windows XP.

more options

Firefox only shows the last time that you've visited an URL and a visit count.

You will have to use the SQLite Manager extension to see all visit dates.

You can use this query and change url LIKE '%google.com%' to the URL that you want to check.
A percent symbol ("%") in the LIKE pattern matches any sequence of zero or more characters in the string.

  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') AS visit_date, url, title
FROM moz_places, moz_historyvisits
WHERE moz_places.id = moz_historyvisits.place_id AND url LIKE '%google.com%'
  • Click Run SQL to generate a results list
  • Click the Action button to Save the results to a CSV file

See also:

  • A percent symbol ("%") in the LIKE pattern matches any sequence of zero or more characters in the string
  • An underscore ("_") in the LIKE pattern matches any single character in the string
  • Any other character matches itself or its lower/upper case equivalent (i.e. case-insensitive matching)

Изменено cor-el