Join the Mozilla’s Test Days event from Dec 2–8 to test the new Firefox address bar on Firefox Beta 134 and get a chance to win Mozilla swag vouchers! 🎁

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

How do I export my browsing history on firefox and import it on another installation of Firefox?

  • 3 답장
  • 1 이 문제를 만남
  • 11 보기
  • 최종 답변자: cor-el

more options

How do I export my browsing history on firefox and import it on another installation of Firefox?

How do I export my browsing history on firefox and import it on another installation of Firefox?

모든 댓글 (3)

more options

You can copy places.sqlite and favicons.sqlite from your current profile folder to the profile folder on the other device.

You can use the button on the "Help -> Troubleshooting Information" (about:support) page to go to the current Firefox profile folder or use the about:profiles page.

more options

But if I replace the places.sqlite on my new computer with the one from my old computer, It'll replace all the data from the new one with the old one. Is there a way to export my entire firefox history into a file?

more options

If you are on Windows then you can look at this Nirsoft utility.

Otherwise you can copy history items to a bookmarks folder in the Library and export the bookmarks.

Using a SQLite utility to export history data (moz_places and moz_historyvisits) might be possible if you are familiar with working with SQLite databases.

SELECT datetime(visit_date/1000000,'unixepoch','localtime') AS visit_date, url, title, visit_count
FROM moz_places, moz_historyvisits
WHERE moz_places.id = moz_historyvisits.place_id
ORDER BY visit_date DESC, url