mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-25 09:06:02 +03:00
[GH-ISSUE #966] Bug: Chrome history export does not work with synced history entries #2113
Labels
No labels
expected: maybe someday
expected: next release
expected: release after next
expected: unlikely unless contributed
good first ticket
help wanted
pull-request
scope: all users
scope: windows users
size: easy
size: hard
size: medium
size: medium
status: backlog
status: blocked
status: done
status: idea-phase
status: needs followup
status: wip
status: wontfix
touches: API/CLI/Spec
touches: configuration
touches: data/schema/architecture
touches: dependencies/packaging
touches: docs
touches: js
touches: views/replayers/html/css
why: correctness
why: functionality
why: performance
why: security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ArchiveBox#2113
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @avf on GitHub (Apr 18, 2022).
Original GitHub issue: https://github.com/ArchiveBox/ArchiveBox/issues/966
Describe the bug
When exporting the Chrome history using
bin/export_browser_history.sh, any entries that were visited on a different device (and have already been synced to the local history) are not included in the export. Only after visiting the site again on the device where the export script is run, will they be included.This is unfortunate, since I'm running ArchiveBox on a headless server, and I want it to automatically archive my history of websites I visit on other devices, especially mobile devices.
Steps to reproduce
History -> Show Full History). Do not visit the site on device A, only make sure it shows up in the history.ArchiveBox version
I was using the export script included with the following release.
@avf commented on GitHub (Apr 18, 2022):
So, I did a little more digging and it seems that the history stored in
<CHROME_PROFILE_DIR>/Historydoes not contain any synced URLs. In fact, it seems that the synced history from other devices is not persisted in any way. I checked it by doing the following:So this means of course the export script can't extract this data from the SQLite DB that Chrome creates, since it is not stored there.
Is there any workaround so that I can still export the full synced history in a scheduled way?