Skip to content
Main Project

Install the widget in 60 seconds

Guide Popular

Overview

The Releaseo widget is a single script tag. Once it's installed, your changelog, roadmap, help center, and ideas all show up on every page of your product.

Step 1 — Grab your publish key

Open Settings → Widget in your dashboard. Copy the publish key that starts with pk_.

Step 2 — Drop the snippet in

Paste this inside the <head> of your application:

<script src="https://widget.releaseo.io/v1.js" data-pk="pk_…" defer></script>

That's it — the launcher will appear bottom-right.

Step 3 — Identify your users

So Releaseo knows who's talking, identify users right after they log in:

window.Releaseo?.identify({
  id: user.id,
  email: user.email,
  name: user.name,
  traits: { plan: user.plan }
});

Identified users get personalized release feeds, can submit ideas, and unlock per-user analytics.

What's next