A tool to visualize your chrome browsing history with google takeout data.
First follow these instructions and make sure you satisfy all requirements.
Here you can find out how to download your Google data: https://support.google.com/accounts/answer/3024190?hl=en
Here you can download all of the data that Google has stored on you: https://takeout.google.com/
To use this script, you only need to download your the data specified in the repository description, which Google will provide to you.
To use this script, you only need to download your "Chrome BrowserHistory", which Google will provide to you as a JSON file by default.
Make sure to put the file in the same directory with the script.
In the command prompt or Terminal window, type the following, and press enter:
python main.py <file>
Replace <file>
with BrowserHistory.json
file from Google Takeout (the file name might variate, so use the one suitable in your case).
main.py <file> [-h] [-s SIZE] [-d DAYS]
positional arguments:
file Your JSON file downloaded from Google Takeout.
optional arguments:
-h Help option, prints the usage section in the console.
-s, --size Number of sites display (20 by default)
-d, --days Number of last X days to show data for (60 by default)
python main.py BrowserHistory.json
python main.py BrowserHistory.json -d 50
python main.py BrowserHistory.json --size 30
python main.py BrowserHistory.json -s 50 --days 90