How can I see the number of common installations for my chrome extension?

I distribute the chrome extension through the Chrome Web Store, and I'm having trouble finding any place where the Web Store tells me how many “common settings” I have for my extension. I want to know how many people have installed my extension in total since its first download.

During a quick google search, the following article appeared in the Google Help section, but I can’t find the detailed information page that actually displays the weekly installs metric. Take a look here . In addition, there is no explanation where I can get the “full installation” on this page.

I also found this discussion , which also had no answer.

+7
source share
3 answers

Anonymous is incorrect. This is not a total number of installations. What is it, the number of weekly users (people actively use the extension), and this is calculated weekly.

If you want to see the daily number of people installing the extension , you can see this on the latest statistics page:

recent stats page

You can go to this page from the developer toolbar by clicking "Statistics":

enter image description here

Unfortunately, Google Chrome does not allow you to see the total number of people who installed the extension.

However, I personally came up with a way to know myself:

1) When a user installs the extension, he opens a php page on my server (only once, only for initial installation), which is a php page that I immediately redirect to another page (I redirect it to the welcome page), but to this php page when visiting tablets 1 for every time the page opens.

2) On the second javascript page on my server, he collects these tags and adds them, displaying them in a good format so that I can see and control the number of installations.

You can make it even more complex by updating the javascript page with a new code for each version so you can see how much is installed for each version or even how many are installed every day. It depends on how much time you want to spend on creating javascript (and on the programming level).

Yes, my method is quite complicated and it took a lot of time writing php and javascript code. However, this is the only way.

Here's what my tracking page looks like:

enter image description here

As you can see, this does not mean anything, because only I will ever see it (I’m even protected by the password of the page), but it allows me to easily track my settings at any time.

+12
source

Given that it is not possible to get reliable reporting of new installations from the developer toolbar , you might want to consider tracking the installation using Google Analytics .

Since for best results you should add tracking and get usage information using GA anyway, you can create a custom event or a welcome page that will be launched for users for the first time. You can use the same tactics for those who remove your extension.

Since the official guide has not yet been updated, check out this tutorial by writing well how to add Google Analytics tracking Google Analytics to the Chrome extension .

+4
source

By going to https://chrome.google.com/webstore/ and clicking on the thumbnail (as shown here):

The following screen will appear:

If you look closely in the middle, you will see that it says "408,501 users" - This is the number of installations.

+1
source

All Articles