AI 产品解读Chrome extension that captures screenshots and recordings of web applications to build interactive product demos on the Navattic platform
Enables sales, customer success, and product teams to create interactive, no-code product demos from their actual application without requiring engineering resources—used for prospect engagement and customer onboarding
User installs extension → logs into Navattic (app.navattic.com) → clicks extension icon to activate capture mode → navigates through their application while extension captures screenshots/recordings → captures are uploaded to Navattic platform → user builds interactive demo flows, sandboxes, or checklists in the Navattic web app using the captured content
Web page capture (screenshots and recordings) via tab capture and content scriptsIntegration with Navattic platform to save captures to projects, collections, and workspacesImport demos from external platforms (Saleo, Storylane)Sandbox generation from capturesAgent demo creation with environment flowsNarrated demo support with audio recording
- 目标用户
- Sales teams / Customer success teams / Product teams / Marketing teams building product demos
- Source code is heavily minified/bundled, making it difficult to trace exact authentication flows and feature gating logic
- Cannot determine from source alone whether certain capture types are restricted to paid Navattic plans—feature flags exist but their enforcement may happen server-side
- The extension has extensive integrations (Salesloft, Gong, Salesforce, HubSpot) but it's unclear if these are gated by Navattic plan tier
付费分析未识别到付费功能
The extension itself is a free capture tool—no features are gated behind a paywall within the extension code. However, the destination service (Navattic platform) has clear paid tiers evidenced by feature flags like PremiumVoices, StripePlanType, StarterUpgradeDiscount, and upsell slugs (TEAMS_MEMBERS_UPSELL, BOARDS_DEMOS_UPSELL). The extension references STRIPE_PLAN_IDS, STRIPE_MONTHLY_PRICE_IDS, and STRIPE_ANNUAL_PRICE_IDS in its config, but these are for the Navattic SaaS platform billing, not extension-level gating. The extension captures and sends data regardless of the user's Navattic subscription tier.
- 置信度
- 85
- 支付平台
- Stripe (Navattic platform-level)
- 来源
- AI / 中
- 需要登录
- 是
- 登录理由
- The extension captures web pages and sends data to the Navattic SaaS platform (app.navattic.com). The worker.js implements authentication via WorkOS SSO (fetchWorkosToken at api.workos.com/sso/token), session token requests (requestSessionToken), email/account checks (checkSubmittedEmail, checkIfMemberExists), and auth state management (navattic:auth-state messages). The core workflow—capturing screenshots/recordings and saving them to projects/collections in workspaces—requires the user to be authenticated with the Navattic web platform. The extension itself has no standalone login UI; it relies on the destination service's authentication.