In Chrome, you can go to developer tools > network tab to see all the requests the website is making.
What would be a good way to get the list of these requests programmatically? I guess I can grab the content of the site, grab all the URLs that are in the page and parse them, but that seems a bit tedious, especially if the requests are being made from a JS file.
Is there an easier way?