Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check the performance of Chrome Extension

I want to check the performance of Google Chrome extensions of Chrome (like the loading time of backscripts), its loading time, and memory requirements. This means I've added an add-on and want to check after adding it their is a decrease in the performance of Chrome or is same. I there any tool for that.

like image 455
suresharora Avatar asked Feb 01 '14 06:02

suresharora


People also ask

How do I check my Chrome performance?

To access the Performance tab, navigate to the website you want to profile, then open Chrome DevTools by right-clicking and selecting Inspect. Select the Performance tab inside Chrome DevTools. The easiest way to capture a performance profile is by clicking the Start profiling and reload page icon.

Do Chrome extensions affect performance?

Chrome extensions can increase the memory usage of every page being visited, as well as memory being spent on the extension itself. This can hurt performance, especially on low-spec devices.


1 Answers

Chrome provides useful tools to monitor your extension through the built-in Chrome DevTools.

  • If your extension is a popup, right click in it and choose Inspect element.
  • If your extension runs in background, go to the extensions page and click on the link background page of your extension.

In there you can:

  • evaluate network performance
  • profile the application Timeline
  • profile the JavaScript execution

Google Developers' ressources are the best way to learn more about these tools.

like image 144
guillaumekln Avatar answered Oct 03 '22 19:10

guillaumekln