View page resources Stay organized with collections Save and categorize content based on your preferences.
This guide teaches you how to use Chrome DevTools to view a web page's resources. Resources are thefiles that a page needs in order to display correctly. Examples of resources include CSS,JavaScript, and HTML files, as well as images.
This guide assumes that you're familiar with the basics ofweb development andChromeDevTools.
Open resources
When you know the name of the resource that you want to inspect, theCommand Menu provides afast way of opening the resource.
PressControl+P orCommand+P (Mac). TheOpenFile dialog opens.

Figure 1. TheOpen File dialog
Select the file from the dropdown, or start typing the filename and pressEnter oncethe correct file is highlighted in the autocomplete box.

Figure 2. Typing a filename in theOpen File dialog
Open resources in the Network panel
SeeInspect a resource's details.

Figure 3. Inspecting a resource in theNetwork panel
Reveal resources in the Network panel from other panels
TheBrowse resources section below shows you how to view resources from various parts of theDevTools UI. If you ever want to inspect a resource in theNetwork panel, right-click theresource and selectReveal in Network panel.

Figure 4. TheReveal in Network panel option
Browse resources
Browse resources in the Network panel

Figure 5. Page resources in the Network Log
Browse by directory
To view a page's resources organized by directory:
- Click theSources tab to open theSources panel.
Click thePage tab to show the page's resources. ThePage pane opens.

Figure 6. ThePage pane
Here's a breakdown of the non-obvious items inFigure 6:
- top is the main documentbrowsing context.
- airhorner.com represents a domain. All resources nested under it come from that domain.For example, the full URL of thecomlink.global.js file is probably
https://airhorner.com/scripts/comlink.global.js. - scripts is a directory.
- (index) is the main HTML document.
- iu3 is another browsing context. This context was probably created by an
<iframe>element embedded in the main document HTML. - sw.js is a service worker execution context.
Click a resource to view it in theEditor.

Figure 7. Viewing a file in theEditor
Browse by filename
By default thePage pane groups resources by directory. To disable this grouping and view eachdomain's resources as a flat list:
- Open thePage pane. SeeBrowse by directory.
ClickMore Options
anddisableGroup By Folder.
Figure 8. TheGroup By Folder option
Resources are organized by file type. Within each file type the resources are organizedalphabetically.

Figure 9. ThePage pane after disablingGroup By Folder
Browse by file type
To group resources together based on their file type:
Click theApplication tab. TheApplication panel opens. By default theManifest paneusually opens first.

Figure 10. TheApplication panel
Scroll down to theFrames pane.

Figure 11. TheFrames pane
Expand the sections that you're interested in.
Click a resource to view it.

Figure 11. Viewing a resource in theApplication panel
Browse files by type in the Network panel

Figure 12. Filtering for CSS in the Network Log
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2015-04-13 UTC.
