Product analytics for browser extensions

Last updated:

|Edit this page

Do you have a Firefox or Chrome browser plugin with a user interface and want to understand how it's being used? PostHog is the perfect way to do just that.

Setup for Firefox & Chrome plugins

Installing PostHog inside your plugin

Open the HTML file used in your default_popup and add the PostHog array.js script. To do this you'll need to either:

  1. Copy the latest version of array.js from: https://app.posthog.com/static/array.js and import it locally using <script src="array.js" /> before the </head> tag
  2. If you're packaging your plugin automatically use the npm module for posthog.js

All you need to do now is initialize PostHog, add the following code to a new js file and import it into your default_popup html file to initiate PostHog.

Web
posthog.init('your_project_token',{api_host:'https://app.posthog.com',persistence:'localStorage'})
  • your_project_token - This is the Project API key which can be found on PostHog under Project Settings
  • api_host - This is the URL to your PostHog instance (if you're not using PostHog Cloud)
  • persistence - This indicates we should store user data in localStorage rather than cookies - there are issues with cookie persistence on Firefox plugins

Tracking events

One of the best things about using PostHog is, all the interactions like clicks will automatically generate events in PostHog, so you don't need to do anything else to start analyzing.

If you'd like to instrument your own custom events, all you need to do is:

Web
posthog.capture('custom_event_name', {})

See our browser JS library guide for more details

Questions?

Was this page useful?

Next article

Product OS

PostHog is a platform of many products: Product analytics to help you quantitatively understand how users behave Web analytics for tracking behavior on your marketing websites Session replay for diagnosing issues and seeing how users use your product Feature flags for testing new features and safely rolling them out A/B testing for scientifically verifying changes to improve conversion Surveys for collecting qualitative feedback running satisfaction surveys PostHog's Product OS is the…

Read next article