Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set the default filter of network in Chrome Developer Tools?

When debug a web site, the Network pane of Chrome Developer Tools contains networks of Chrome extensions, I want to filter the networks of extensions, but I must input -scheme:chrome-extension everytime. Is there a way to configure the Network filter chrome-extension default?

like image 492
zhouji Avatar asked Jun 02 '16 12:06

zhouji


People also ask

How do I filter in developer tools?

If you open the developer tools, choose network. From the bar at the bottom of the page, choose images if you want to look specifically for image requests. The filters are all exclusive, so you can not filter out just image requests. There you go.


1 Answers

Unfortunately it doesn't looks there is any other way. I did a little investigating to see if I was able to create a Chrome Extension to automate this, but the chrome.devtools.panels API doesn't provide access to the Network panel, only the Elements and Sources panels, and even those only have access in a limited way.

Your best bet currently is to run Chrome in another Profile or in Incognito mode.

like image 89
Gideon Pyzer Avatar answered Oct 14 '22 01:10

Gideon Pyzer