Reputation: 23173
I have some externally referenced images in my CSS:
.something {
background: url('www.example.com/image');
}
How can I see what images are being loaded like this in Chrome dev tools?
Upvotes: 2
Views: 323
Reputation: 28359
The best option I see is to:
sort by domain (if not present, add the Domain column by right-clicking on any column header)
or, better, use the filter box to exclude localhost (or other): -domain:localhost
See capture:
Upvotes: 2