How could I block all requests using chrome DevTools?
I already know:
But I want to block the request that doesn't happen. Or is it possible to block all requests?
E.G.:
In the following request, https://stackoverflow.com/posts/...
appears for the first time, but I don't want this request to be sent out (we are limited to the Fetch/XHR type), so I couldn't block this request before (there is a special case here is the above request is the same domain name as this request, so it can be resolved through the block domain name, but there was no request for the same domain name before in my scenario).