Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Save or Print Firebug output

Tags:

firebug

I am using firebug to profile our webapp.

I am trying to make changes to speed it up. I want to make sure that each change that I make increases the efficiency of the app.

What I would like to do is save or print the Net tab and the Javascript profile of the site I am viewing. How can I do this?

(I would just take a screenshot but the output spans several pages so taking a screenshot is not practical)

like image 903
sixtyfootersdude Avatar asked May 13 '11 19:05

sixtyfootersdude


2 Answers

Here you go: http://www.softwareishard.com/blog/consoleexport/

like image 72
Matthew Ratzloff Avatar answered Nov 20 '22 09:11

Matthew Ratzloff


Jan Odvarko at Software is Hard has created two firebug plugins that allow you to export the console and the Net tab.

  • The ConsoleExport exports the console tab (including profiling) to html.
  • The NetExport exports the net tab to either the clipboard as an image or to a .har file. A link is provided for Jan's har viewer however I found that this was quite slow and not very useful. However exporting to an image file works great.
like image 33
sixtyfootersdude Avatar answered Nov 20 '22 09:11

sixtyfootersdude