There is this site, which shows some statistical user data, and it creates a HTML5 graph, based on a JSON response that it receives from the server.
I have manually examined the JSON response from the server, and it looks like the following:
{
"points":[
{
"date":"2019-07-29",
"num":"4443"
},
{
"date":"2019-07-28",
"num":"4596"
},
{
"date":"2019-07-27",
"num":"5125"
}
]
}
I would like to "download" this JSON response, and format it in a special way, but I can't make external requests to the endpoint (from an external application)
I would like to do it all, while being on the site.
Would it be possible to "inject" a javascript that would do this, or build a Chrome Extension that is able to read this response, and format it in the way that it's required?
Additionally, is there a way to "extend" the Developer Tools, with a little snippet, that would just format this data in a different way?
(If possible, I would like to do as few clicks as possible, to achieve this)