Is there a way to generate fake chrome history (it doesn't really have to be in chrome://history/). What I mean is that page should look exactly like chrome://history/
or maybe using chrome.history.addUrl to generate fake history, but the problem with that is there is no way to change the time for each url.
Let's say in history, I want to add url #1 with time 10:21pm, url #2 with time 10:41pm, and url #3 with time 10:51pm.
What I have tried so far?
chrome.history.addUrl -- but this only takes url not the time
chrome_url_overrides -- but if I use this then I have to make history page's html and css all from the scratch.
So how can I do that? or maybe there is an api, external api (not even chrome api but external) which returns html + css or picture in which it shows a custom genereated history for chrome?
Thank you