How to hide extension request from chrome inspector?

Is it possible to hide a request made by the chrome extension, for example, "seoquake"? I can not see requests for bing, fb, pinterest, etc. the inspector, for example, has a screenshot below: enter image description here but if I use the "web script debugging" tool, I can see it as a screenshot below: enter image description here

How to do it? and can i display these requests? Does it use super resolution from chrome to seoquake or can all developers do this with our own javascript?

+5
source share
1 answer

Open Chrome DevTools. In the filter field of the network tab, enter the string -scheme:chrome-extension (see screenshot below):

caPlI.png

This is case sensitive, so make sure it is in string format. This will hide all resources requested by the extensions.

+6
source

Source: https://habr.com/ru/post/1265214/


All Articles