What a gear icon means in Google Chrome's DevTools' Network Tab?

Viewed 1638

Today I was inspecting the network of a website, and I saw a gear icon besides a network call:

enter image description here

I googled around and couldn't find anything. What does it mean?

1 Answers

The Gear icon in the requests in means the request came from service worker. it generally fetches the same assets for offline cache.

You can refer to this Service worker docs which says

The gear icon signifies that these requests came from the Service Worker itself. Specifically, these are the requests being made by the Service Worker's install handler to populate the offline cache.

Related