How precise are Google Chrome extension statistics?

你离开我真会死。 提交于 2019-12-06 06:00:34

问题


I published a Chrome Extension, but statistics are weird. At first, I realized that it doesn't count inline installation on my custom webpage.

  • Do you think that Total Current Users is precise?
  • For some days I have bigger drop of Total Current Users than number of uninstallations, which is nonsense.

Is there any way how to get precise statistics of total users, installations and uninstallations?


回答1:


I am not sure is how precise stats in the current version of Developer Dashboard. But I know that Google working on a new version and it is already in closed-beta testing.
The new one has more detailed stats about installation sources.

Here also some steps that can help to improve your stats counting:

  1. Add Google Analytics tracking ID to your Chrome Web Store item;
  2. Track 'successCallback' event on the extensions promo website;
  3. Open a "welcome" page, hosted on your website – so you can count those who just installed the extension. Docs: chrome.runtime.onInstalled;
  4. Open a "good bye" page, after users remove your extension from a browser. So you can calc uninstall events. One more benefit - you can ask "what was wrong?". Docs: chrome.runtime.setUninstallURL.

Updated.



来源:https://stackoverflow.com/questions/47330359/how-precise-are-google-chrome-extension-statistics

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!