10

Can i hide request made by chrome extension like 'seoquake'? i can't see the requests to bing, fb, pinterest etc from inspector like screenshot below: enter image description here but if use 'fiddler web debugging' tool i can see it like screenshot below: enter image description here

How to do that? and can i unhide that requests? it's use super permission from chrome to seoquake or all dev can do that with our own javascript?

Community
  • 1
  • 1
Muhammad Dyas Yaskur
  • 6,914
  • 10
  • 48
  • 73

1 Answers1

20

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

This is case-sensitive, so make sure it's lowercase. Doing this will hide all resources which were requested by extensions.

williamukoh
  • 566
  • 6
  • 9
  • 5
    Although this does work and it's the best we've got right now, unfortunately it's unsustainable as I don't really want to type all that in every time I fire up devtools :/ there should be a checkbox for this – tkit Oct 05 '17 at 15:55
  • 1
    Well, it's better than anything else so this option is definitely a godsend! – Nick Dec 08 '17 at 21:22