Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais

i want to save the autocomplete history of websites visited

  • 4 respostas
  • 2 têm este problema
  • 4 visualizações
  • Última resposta por cor-el

It seems that Firefox has stored some of the websites I've visited according to the spelling of each website. I would like to know if it's possible to save the collection of websites that comprise this "autocomplete function."

It seems that Firefox has stored some of the websites I've visited according to the spelling of each website. I would like to know if it's possible to save the collection of websites that comprise this "autocomplete function."

Todas as respostas (4)

Open history in the sidebar by hitting CTRL+H, then right click the bookmark and choose "Bookmark this page".

Does pressing Ctrl+H and right clicking the bookmark save all of the "autocomplete function" of all the collections of all the websites and their URLs, I presume, that have been amassed ( without personal deletion by the user, of course)?

In my version of Firefox (3.6.17), right clicking a bookmark and selecting "Bookmark This Page," brings up the New Bookmark window, which I believe is only for one web page.

When I mention "autocomplete function," I'm referring to the websites that appear in a drop-down box when one starts to type in the name of a webpage (e.g., delta.com) in the box just under the Menu Bar in Firefox 3.6.17.

You can use the SQLite Manager extension to create a list of the history and export that list as a CSV file.

See:


  1. Open Profile Directory -> places.sqlite -> Go
  2. Hit the Execute SQL tab
  3. Use a Select like this:
SELECT datetime(moz_historyvisits.visit_date/1000000,'unixepoch'), moz_places.url, moz_places.title
FROM moz_places, moz_historyvisits
WHERE moz_places.id = moz_historyvisits.place_id

If you only want to see typed entries then use this instead:

WHERE moz_places.id = moz_historyvisits.place_id AND typed LIKE '1'
  • Click the Action button to Save the results to a CSV file

You can also select some records and use the right-click context menu to copy the selected records as CSV to the clipboard.

You can also create a Temporary view:

  1. View > Create View : [X ]Temporary Name: Enter a Name for the view
  2. Use the same Select as above
  3. View > Export View : Database > Temp

Modificado por cor-el a