I've noticed that chrome has been slowing down requests a ton when sent rapidly from either the console, or from the same extension.
To test, I experimented by sending a request at a 25 millisecond interval in one extension. Sure enough, the requests slowed down majorly from the starting point at taking about 30-60ms to load, to the point where it would just say 'Pending' and take up to 10 seconds to complete the request. However, when I tried splitting this into two identical chrome extensions, both of which sent requests to the same server, but this time, both had a 50ms interval, the requests were much faster, averaging at around 40-70ms per request.
I'm assuming that chrome is throttling requests sent from either the console or from a single extension, is there any way to disable this? I found the command flag --disable-extensions-http-throttling
, but I've had the same issue when using it.