I'm trying to develop an extension that detects every connection made by the browser to figure out the URLs being accessed. I know that this is possible via writing an HTTP/SOCKS proxy and configuring the browser to flow traffic via that. However, that's kind of overkill for the application that I'm trying to develop and it's best done as a Firefox Add-on if that's possible. Any clues/pointers would be highly appreciated.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Use nsIHttpActivityDistributor and there is many information about the http transaction and socket transport through observeActivity callback.

Read the official documentation https://developer.mozilla.org/en/Monitoring_HTTP_activity.

link|improve this answer
Thanks winterTTr, this looks promising. Will try this out! – Alex J Mar 23 '11 at 15:33
feedback

Your Answer

 
or
required, but never shown

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