If i click on the history tab on my browser I can reach a folder with all of the links ive visited organized by date.
How can I access this programmatically with Javascript? I'm still new to Javascript but I want something like:
var aListOfDateLinkPairs = window.history.some_get_list_function;
I'm sure this is a big privacy issue for some arbitrary entity but what If I want to implement this (programmatically) for myself in my own browser?
Thanks!