寻找一些 chrome API(用于 chrome 扩展),让我以编程方式执行以下操作:- - 开始分析 - 结束分析 - 获取页面上所有 JS 所用时间的列表
我可以在 Firefox 中实现相同的效果:
jsd = DebuggerService.getService(jsdIDebuggerService)
// start the profiling as
jsd.flags |= COLLECT_PROFILE_DATA;
// stop the profilinf as
jsd.flags &= ~COLLECT_PROFILE_DATA;
// get the details of how much time each JS function took
jsd.enumerateScripts({enumerateScript: function(script)
{
// script object has timings detail
}
甚至一些可以让我从开发人员工具栏中导出分析信息的 API 也会有所帮助