Is there an API for creating a Google Chrome extension that reads network resource request activity?

The Google Chrome Developer window has a Network tab that displays all the resources that the web page loads over time. Is there a way to access this data in the Google Chrome extension?

CONFIRMATION: I want to make a Chrome extension that should read this data and do something based on what it reads. So I had to ask: "Is there a Chrome extension API that allows this?"

+6
source share
2 answers

There is an experimental API for accessing network resources. Being experimental means that to use it, users need to enable the experimental API flag in their settings, plus you can’t send such an extension to the gallery.

+3
source

Right-click on the web page, select “View Item”, select the network tab, then refresh

-5
source

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


All Articles