Parachute

Help & how-to

Getting the most out of Parachute

Install in ninety seconds, then route, style, and triage the messages that come in.

Quick start

  1. Sign in to the console and click + New widget. Give it a name (e.g. your site).
  2. Copy the embed code shown on the widget's Setup tab.
  3. Paste it onto your site, just before the closing </body> tag.
  4. A small "Feedback" tab appears in the corner. When a visitor sends a message, it lands in your Inbox in the console (and by email).
That's the whole install. Everything after this — turning it on/off, restyling, changing where messages go, turning on diagnostics — is done in the console, with no change to your site's code.

Installing the snippet

Parachute is one script tag with no dependencies. Drop it before </body>:

<script src="https://parachute.chat/parachute.js"
        data-key="pc_live_your_key" defer></script>

It works anywhere you can add HTML — WordPress, Squarespace, Webflow, Shopify, or a hand-coded site. The widget renders inside a Shadow DOM, so your site's styles can't break it and it can't leak into your page.

Optional attributes

AttributeWhat it does
data-keyRequired. Your widget's public site key (from the console).
data-appOptional tag added to every report — handy if one key covers several apps.

Styling the button

On the widget's Setup tab you can set:

Changes take effect within about a minute — no need to touch the embedded site.

Guided conversation flow

Instead of one blank box, you can open with a friendly question and a few choices — "Something's broken", "I have an idea", "Talk to the team" — each leading to a tailored follow-up. It's optional, set per widget under Conversation flow.

Your inbox

Every message is stored in your console and can be delivered two ways:

In the console's Inbox tab you read each message with its page URL (clickable), browser, and screen size, then give it a disposition: Passed along (you forwarded it), Added to a system (you logged it in your tools), or Done. "New" is the only thing that needs your attention — everything else is a way of clearing it. Links in a message are clickable, and any attached screenshot opens full-size in a click.

Every Monday you also get a weekly digest email — a recap of what came in, leads to chase, and your busiest widgets. Turn it off anytime from the console (or the unsubscribe link in the email).

AI assists Pro

Parachute has a few one-click helpers built into the inbox, so you spend less time on the busywork:

These run on your paid plan; usage is metered and tiny (fractions of a cent per call).

Routing & leads

People take the path of least resistance — so your feedback widget quietly becomes your fastest contact form. Routing rules make sure the right messages reach the right place the second they arrive.

In a widget's Setup tab, turn on Auto-route messages and add rules — each is simply "when a message is X → send it to Y."

The one rule most people want: 🔥 Leads → sales@yourcompany.com. Someone clicks "Talk to the team," and your sales inbox has it instantly. Auto-routed messages are tagged in your inbox so you can see where each one went.

Data capture & privacy

Parachute can gather the context you need to actually reproduce a bug — turned on per widget, and scrubbed for personal data in the visitor's own browser before anything is sent to us.

Privacy is the default. Emails, phone numbers, card numbers and tokens are redacted client-side, and screenshot masking (password/payment fields, or all inputs) is on out of the box. You choose exactly what each widget captures.

Locking to your domains

By default a widget works on any site it's pasted into. To lock it down, add your domains under Allowed domains (e.g. acme.com, shop.acme.com). Then the widget only renders — and only accepts reports — on those domains and their subdomains. This stops anyone who copies your key from using it elsewhere.

Webhooks

Add a Webhook URL to a widget and Parachute POSTs a JSON body for every report:

{
  "event": "report.created",
  "site": "Acme storefront",
  "site_id": "…",
  "report": {
    "id": "…",
    "message": "The checkout button does nothing on Safari",
    "email": "shopper@example.com",
    "url": "https://acme.com/checkout",
    "user_agent": "…", "viewport": "1440x900",
    "referrer": "…", "app": "", "created_at": "2026-07-07T18:34:06Z"
  }
}

On Pro+ widgets with diagnostics on, the report also carries env, metadata (your identify() tags), errors, and breadcrumbs.

Each request includes a signature header so you can verify it really came from us:

X-Parachute-Signature: sha256=<hmac>

The HMAC is SHA-256 of the raw request body, keyed with your widget's signing secret (shown on the Setup tab). Verify it in Node like this:

const crypto = require("crypto");
const secret = process.env.PARACHUTE_SECRET;      // whsec_…
const sig = req.headers["x-parachute-signature"].split("=")[1];
const expected = crypto.createHmac("sha256", secret)
                       .update(rawBody)           // the exact bytes received
                       .digest("hex");
const ok = crypto.timingSafeEqual(
  Buffer.from(sig), Buffer.from(expected));
if (!ok) return res.status(401).end();
Point the webhook at Slack, Linear, a Google Sheet via Zapier, or your own server. Rotate the signing secret any time from the Setup tab.

The kill switch

Every widget has an on/off toggle in the console. Flip it off and the widget disappears from your live site within about a minute — no redeploy of your site needed. Great for pausing during a launch or maintenance window.

Plans & the free tier

PlanIncludes
Free1 widget · email notifications · environment signals · newest messages visible in the console · "Powered by Parachute" badge
Pro · $9/moUp to 5 widgets · full inbox history · full message text by email · webhooks · JS errors, breadcrumbs & screenshots · remove the badge
Agency · $29/moUp to 50 widgets · everything in Pro · manage many client sites · extra widget packs available as an add-on
Nothing is ever lost on Free. We capture and store every message forever — Free just shows you the newest few. The moment you upgrade, your entire backlog is unlocked.

Blocking spam

Parachute defends the form on several layers, most of them invisible:

Troubleshooting

The widget isn't showing up

I'm not getting notification emails

Still stuck?

Use the Parachute tab in the corner of this page to send us a report — it's the same widget, and it comes straight to us. 🪂