List resources like css and javascript files of page in Firefox?

3

2

In Firefox, (on normal pages) there is "Page info" in the context menu. It lists images on ("embedded"?) the page along with their full URLs. But other "external" files are not listed.

Can I view a list of other resources, all "page requisites" (as wget calls them), like css files and javascript files, with their full URLs?

EDIT without parsing the source code with my eyes.

n611x007

Posted 2013-03-18T13:22:40.290

Reputation: 5 291

Appears there is a "list resources" option in FF: http://stackoverflow.com/a/18157267/32453

– rogerdpack – 2017-03-15T20:41:18.700

Answers

5

This can be done with the Firebug add-on. If you activate Firebug, click the Net tab and refresh the page it should show requests for the main page and all associated resources. Note that you may sometimes need to hold down Shift when refreshing to ensure that it doesn't use the cache.

enter image description here

James P

Posted 2013-03-18T13:22:40.290

Reputation: 9 542

Just working on adding the same answer. Good job. – Brad Patton – 2013-03-18T14:16:50.733

will this show failed (404, etc.) requests? – n611x007 – 2013-03-18T14:18:15.670

2It should do yes. The Status column will show '404 Not Found' etc. instead of '200 OK' and it will be highlighted red. – James P – 2013-03-18T14:22:00.750

1

One other option would be to use Fiddler. It's a third party program that logs all HTTP(S) traffic between your computer and the Internet. There is a Firefox add-on called FiddlerHook which makes using Fiddler with Firefox easier.

Brad Patton

Posted 2013-03-18T13:22:40.290

Reputation: 9 939

maybe kind of an overkill here, but this is something I was hoping for for a long time! this way I can monitor what my addons are doing (reporting home, etc.) – n611x007 – 2013-03-18T14:54:37.027

Yes overkill for your original question but just another option. – Brad Patton – 2013-03-18T15:02:56.190