browser-history-merger/README.md

34 lines
791 B
Markdown
Raw Normal View History

# browser-history-merger
Merge browser histories into a single database.
2024-06-09 17:13:57 +09:00
## Usage
### Initialization
For the first execution on each device and browser, do
```sh
2024-06-09 17:16:46 +09:00
browser-history-merger path/to/merged.db init browser-id /abs/path/to/browser/history/database
```
`browser-id` should be unique to identify browser and machine.
2024-06-09 17:13:57 +09:00
### Add histories
Then add histories to the database by
```sh
browser-history-merger path/to/merged.db add browser-id
```
2024-06-09 17:13:57 +09:00
## Supported environments
Python 3.12 (works with standard libraries only)
- Chromium
- Tested:
- chrome on windows, linux
- brave on windows, linux
- vivaldi on linux
- Firefox
- Tested:
- firefox on windows
## Tips
2024-06-07 19:06:43 +09:00
The program is a single file `./src/browser_history_merger/__init__.py` and can be used as a script.