How can I see all .js
files which were downloaded while showing my web page? I am using Network for it, but over time it stops showing .js
files which were downloaded.
2 Answers
If you go to the sources tab in Chrome, you'll see the a list of domains. Search for your own domain, for example 'localhost'. If you open the map, you'll see all folders and files that are loaded into your current page.
Example:
You'll also see all other domains where you've used files (like JS, CSS, images, etc.) from.

- 1,282
- 14
- 28
For a quick overview of all JavaScript files
you can untick
✔ Group by folder
to list all files sorted by type, so the .js
filse are in one chunk, listed at or near the top, indicated by a yellow paper sheet icon. (The gray-icon’ed html file, listed above the scripts, usually contains JS code as well, particularly within the <head>
element.)
That option is in the More options menu (click ⋮ button) to the right of the sub-tabs, which start with Page
, within the Sources
tab.

- 1
- 1

- 3,820
- 1
- 37
- 34