Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
If you want the solution to be browser agnostic then the inclusion of those tags is confusing. – Lee Taylor Nov 13 '12 at 22:18
2  
"what If I want to implement this for myself in my own browser?" Then use the history tab on your browser. – j08691 Nov 13 '12 at 22:19
Hmmm, you might have better luck posting on the browers specific forums. So for Firefox, you might want to ask the Firefox community. I do not think you are going to find a way for doing this on every browser in one shot. – thatidiotguy Nov 13 '12 at 22:19
Browser history is not accessible from JavaScript. If you're building your own browser, you may expose the history in whatever way you find meaningful, and then it'll be up to you what custom javascript code you support in order to extract such information. – David Hedlund Nov 13 '12 at 22:21
@DavidHedlund is it accessible to a plugin? or to a desktop program? – algorithmicCoder Nov 13 '12 at 22:22

3 Answers

up vote 1 down vote accepted

In general history is protected by the browser against javascript accessing it except through back and forward functionality. There are some hacks that can view some amount of history, but they are just that--hacks.

If you want to view/modify history programatically, you could do so via browser plugins. For example, Chrome plugins can use this API

EDIT

Mozilla also has some info about history modification available to Javascript here.

It also looks like this question talks about some of the same things you need.

share|improve this answer

Short Answer no, you cannot access the history of your browser via common Javascript.

You could create an extension that would be cross browser with something like: http://crossrider.com/

The Docs for accessing the Places storage, which enables you to access the history of the browser is here for firefox: https://developer.mozilla.org/en-US/docs/Using_the_Places_history_service

And for chrome it is here: http://developer.chrome.com/extensions/history.html

There is a file for Places called Places.sqlite is an sqlite database, if you would build a local application that reads from that file, instead of accessing it from your browser, that would be simpler in my opinion.

You could also use the https://addons.mozilla.org/en-us/firefox/addon/sqlite-manager/ sqlite manager and order the history according to dates directly from the database. Here's an ERD for that http://people.mozilla.org/~dietrich/places-erd.png

share|improve this answer

Javascript only offers basic calls once your page takes control of the browser like:

history.length
window.history.back()
history.forward()
window.history.go(-3)

But if you were to write your own browser then you'd be using a 3GL in which case you'd be in total control of what the user has typed in the search or address fields you provided so you shouldn't have any problems there keeping a record of what the user did if you know what you're doing.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.