I am trying to make my google chrome extension to track ajax requests while browsing the web. The only way I found is to listen for the DOMSubtreeModified event. An event is fired on every ajax event, but there is no additional information about the request. But in Firebug google chrome extension there is ajax request tracking with many details. I tried to check how they do it in the source code, but it's hard for me to understand.
Do you know how to track these events to get detailed information about the request? Maybe someone can take a look at this firefighter technique or maybe someone knows this and can tell me how they do it?
Luke source share