Is there a way to read the value that is shown in the dev tool window at the bottom of the Network tab ?
The reason I'm asking is that I need to watch some requests download status for a custom progress bar. The issue is that I cannot have access to the method that triggers these requests, because the method is written in a file during the build of our application (here Unity, using WebGL export), and this file cannot (or at least, not meat to) be edited or templated.
I know the request URL so I am able to know the full size of the downloaded file using the headers, but I need to know the state of the download itself so I can build a proper custom loading bar. Since it is shown in the dev tool I though it might not be too hard to read it from a script. But maybe I'm wrong ?
Regards,