I would like to capture the contents of AJAX requests using Greasemonkey.
Does anybody know how to do this?
|
I would like to capture the contents of AJAX requests using Greasemonkey. Does anybody know how to do this? | |||
|
feedback
|
|
Here's a little snippet that worked in my tests:
I've used addEventListener() as Firefox throws an exception if you want to wrap the onreadystatechange property. This way you can have the cake an eat it too. | |||
|
feedback
|
|
How about modifying the XMLHttpRequest.prototype.open or send methods with replacements which set up their own callbacks and call the original methods? The callback can do its thing and then call the callback the original code specified. In other words:
| ||||
|
feedback
|
|
You can replace the unsafeWindow.XMLHttpRequest object in the document with a wrapper. A little code (not tested):
But this has one little problem: Greasemonkey scripts execute after a page loads, so the page can use or store the original XMLHttpRequest object during it's load sequence, so requests made before your script executes, or with the real XMLHttpRequest object wouldn't be tracked by your script. No way that I can see to work around this limitation. | |||
|
feedback
|
|
Not sure if you can do it with greasemonkey, but if you create an extension then you can use the observer service and the http-on-examine-response observer. | |||
|
feedback
|
|
I have no experience of Greasemonkey (need to sort that out), but I use Fiddler when debugging this sort of thing. | |||
|
feedback
|
|
I wrote some code for intercepting ajax calls, when writing proxy server. It should work on most of the browsers. Here it is: https://github.com/creotiv/AJAX-calls-intercepter | |||
|
feedback
|