Reputation: 1102
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
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