The site http://project-gc.com/Statistics/TopFavWilson views data depending on a set filter via ajax.
I can see this data as bargraphs.(I'm logged in and authenticated)
But I would like to save this data for import into e.g. a spreadsheet program. I need the Fav%Wilson points (also in the ajaxresponde), I can't get them in a different way.
I thought about using a greasemonkey script to fetch the responddata from the after the ajaxcall. Maybe with "waitForKeyElements"?
Can anybody suggest a sollution or give me a hint how to solve the problem?
If you only want to monitor the responses without any interaction, you can replace the XHR constructor with a wrapper function and add an event listener to each newly created instance.
If you also want to manipulate results, you will need a proxy or you have rebuild the entire XHR Object by hand as a wrapper. This is a proxy example:
Be aware that this direct acces only works as long as you do not grant any privileged GM_functions. When you get enclosed into sandbox, you will have to inject the function as sting into the site's scope, e.g. via
setTimeout
.