如何访问 Chrome 的用户指标?

如何访问 Chrome 的用户指标?

Chrome 会记录某些用户操作,例如(参见这里完整源代码):

content::RecordAction(UserMetricsAction("NewIncognitoWindow"));

有什么方法可以访问我的 Chrome 用户指标吗?

答案1

尝试访问chrome://stats。如果没有加载,请从命令行运行 chrome,如下所示:

Chrome.exe --enable-stats-table

来源:http://productforums.google.com/forum/#!topic/chrome/e4L14lBF4j8

您可以在这里找到更多有趣的页面:http://lifehacker.com/5045164/google-chromes-full-list-of-special-about-pages

答案2

chrome://stats不再可用。使用chrome://ukm可能会有帮助。可以通过以下方式调用:

chrome.exe --force-enable-metrics-reporting

相关内容