Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hide extension's request from chrome inspector? [duplicate]

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?

like image 346
Muhammad Dyas Yaskur Avatar asked Mar 09 '17 03:03

Muhammad Dyas Yaskur


People also ask

How do I hide an extension code in Chrome?

The only way to prevent anyone with your extension from seeing the logic is to move it out of the extension that runs on a user computer and into a web service that the extension accesses. Since this will slow down the works quite a bit, you should only do this for the really valuable parts of your code.

How do I block Chrome requests?

Pressing F5 while in the tab immediately followed by ESC. XHR requests still active by chrome are canceled before the new answer is loaded. You must have very fast fingers! This should be the accepted answer.


Video Answer


1 Answers

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.

like image 74
williamukoh Avatar answered Sep 20 '22 09:09

williamukoh