Thank you @Martineau . I downloaded the WebHistory.db and opened it in "DB Browser for SQLite".
Just a suggestion, instead of using grep, you can apply the filter in SQL query like this:
SELECT
datetime(timestamp, 'unixepoch', 'localtime') AS time, mac, url
FROM
history
WHERE
url REGEXP...