Dan Ramos
Dan Ramos

Reputation: 1102

Browser plugin to analyze Javascript functions

Does anyone know of a browser plugin (Chrome, Safari or Firefox) that would give me a detailed look into Javascript function execution time and resources? I'm aware of Firefox/Firebug's console.profile() but I'm looking for something that can analyze all functions from within the browser vs having to manually enter this code into my scripts. If there is no browser plugin for this, maybe a standalone one similar to dynaTrace but for Mac.

Upvotes: 1

Views: 545

Answers (1)

Andrew
Andrew

Reputation: 13853

This exists in all current browsers already.

In Firebug, select Profile under the console tab.

In any WebKit flavour or IE9, there is a Profiles tab.

Don't know personally about Opera.

Upvotes: 1

Related Questions