Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cross browser history sync

Is it possible to have sync browser history in major browsers (Google Chrome, Internet Explorer, Firefox, Safari, etc) continuously. I have looked online for addons or ideas but nothing. I know all browsers have some sort of database that store links visited, how would one sync all in a way if I am in Firefox I am still able to see Internet Explorer history?

like image 982
user3662697 Avatar asked Sep 20 '25 01:09

user3662697


1 Answers

Firefox, Chrome and Safari all use sqlite database files that you can query. Here is a link with a few commands to print browser history. Link

And here is a link to someone who created a script to import Safari history to Chrome. Link

So it should be possible to create a script that could sync at least those browsers.

like image 107
UnknownFrequency Avatar answered Sep 23 '25 12:09

UnknownFrequency