Reputation: 1845
I am using one of the web application that my friend has made. The webpage automatically make AJAX calls after a regular interval (say 1 second). I want my browser "Chrome" to stop this behaviour and rather let me make AJAX calls manually via Advanced Rest Client Application in Google chrome extensions.
Update 1 : I do not have the administrative access to change the website source code of the web application. I just want to send requests manually to that webapp instead of the underlying javascript or whatever to do that after regular intervals.
Actually I need a kind of filter that capture all the XHR requests and then show them to me, allow me to tweak them and then allow sending it to the server.
Is this possible to do so in Chrome ?
If its not possible, any other browser you would like to suggest where it is possible to do so ?
Upvotes: 0
Views: 928
Reputation: 679
Chrome comes with Developer Tools.
If you look at the network tab, you'll see the request being made. You can then see where in the code the request is being made. You can access that Javascript that is loaded locally and modify the timing between the AJAX calls. However, this will only be done on a one time basis as once you refresh the browser your change will be gone. The only way to make the change permanent is to change the source code on the server.
Upvotes: 1