-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert merged data back into sqlite databases browsers can read #16
Comments
Perhaps an alternative is to have a nicer way to view the data? Currently you can dump it to JSON, and thats machine consumable, but end users of this don't have a great way to search this... could create a basic HTML file which searches the JSON using some javascript? |
considering the complications, tentatively consdering this would probably go in another namespace package, at feel free to comment here if this is something you're interested in doing |
For what it's worth, all the Mozilla family browsers have the ability to import a Chrome-format history file. So it would be useful to simply export in one format. |
Hm alright I guess if this was to be implemented we would probably 'force' firefox (or chome?) as the base, and then once you have the merged database you can convert/import it into chrome... I wonder if merged databases can somehow be marked so that the additional dummy data we're writing back isn't merged into 'real data' again by Not against this feature in general, it just adds more complexity and personally isn't a feature I need. I could understand how it would be useful for others though, just not something I'm going to invest days of time in currently |
As far as I can tell, not all Firefox-based browsers support importing Firefox format, but they all support Chrome format. (Don't ask me why.) That's why I suggested Chrome as the most acceptable export format. Marking dummy data I'm not sure about. I imagine the browser's import tool does its own cleanup, if that matters. |
As discussed here, is possible to take the merged data and convert it back into a new database to use, but supporting every browser would probably be a lot of code
Maybe support Chrome/Firefox, so at least you could merge data from browsers you use less into your 'main' (but this also promotes a silo, and pushes you towards firefox/chrome)
However,
browserexport
exists, to save your old data.Relatively low priority as I can interact with this programmatically by writing my own promnesia sources, but I can see this feature being useful for others...
Feels like a pretty difficult problem to solve, adds much more complexity to browserexport, when otherwise this is more functional -- taking databases, merging them and extracting visits
The text was updated successfully, but these errors were encountered: