This package provides access to local Chrome profiles data, including browsing history, bookmarks, and saved login and web data.
from ChromeReader import UserManager
user_manager = UserManager.get()
user_manager.save("users")from ChromeReader import UserManager
user_manager = UserManager.load("users")
# Get first user
user = user_manager.users[0]
# Get first profile (Default) of first user
profile = user.profiles[0]
print(profile, "\n")
# Print the last 10 visited urls from its history
print(*profile.history.get_recent_urls(10), sep="\n\n")from ChromeReader import Profile, ChromeReaderApp
profile = Profile.load(path="users\username\Default")
app = ChromeReaderApp(profile) # CTk app to visualize a profile
app.mainloop()pip install git+https://github.com/mathisgxd/ChromeReader.git

