AI 产品解读Enterprise browser extension that deploys Pendo's digital adoption platform (DAP) agent across employee browsers to deliver in-app guidance, usage analytics, session replay, and feedback collection within internal/employee-facing software applications.
Helps enterprises improve employee software adoption, training, and compliance by delivering contextual in-app guidance, collecting usage analytics, and gathering feedback directly within the tools employees use—without requiring separate training platforms.
An IT admin configures the Pendo Launcher with a Pendo subscription API key (via Chrome managed storage for mass enterprise deployment or manual configuration). The extension fetches application configuration from Pendo's backend, determining which web domains to activate on. When an employee visits a configured application, the extension injects the Pendo agent, which delivers personalized in-app guides, collects usage data, enables session replay, and shows feedback prompts. End-user identification can be handled via IDP integration or anonymously.
In-app guidance delivery (tooltips, guides, walkthroughs, announcements)Application usage analytics and behavior trackingSession replay recording for understanding user frictionIn-app feedback and survey collection (polls, NPS)Guide designer/authoring tool for content creatorsMass deployment of Pendo agent via API keys or managed storage (enterprise MDM)
- 目标用户
- Enterprise IT administrators (deploy and configure the extension) / Employee/end-users (receive in-app guidance and training) / Training and enablement teams (create guides and analyze adoption) / Digital adoption platform administrators
- The extension source is heavily minified/bundled, making some code paths difficult to trace precisely
- The 'subscription' keyword heuristic was a false positive—it refers to Pendo's data model for backend configuration, not in-extension paid features
- Cannot determine from source alone whether Pendo's SaaS platform has free vs. paid tiers that would gate features delivered through this extension
付费分析未识别到付费功能
The extension itself contains no payment UI, billing logic, Stripe/payment integrations, or feature-gating based on plans. The heuristic keyword hits ('subscription', 'subscribe', 'upgrade') are all references to the Pendo backend's subscription settings data model (e.g., subscriptionSettings, subscriptionId, SubscriptionKey) used to fetch configuration—not in-extension paid features. The 'pro' keyword hits are in minified code where 'pro' appears as part of other tokens (e.g., 'process', 'property', variable names in lodash). The 'license' hits are MIT license attributions for bundled libraries (zlib.js, is-number, to-regex-range). All features available through the extension are determined by the organization's Pendo SaaS subscription, which is a separate commercial product.
- 置信度
- 80
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension requires a Pendo subscription API key to function. managed_schema.json defines 'APIKey' described as 'The API Key for your Pendo Subscription' (line 4-7). The background.js fetches configuration from Pendo's backend using this key (e.g., /api/extension/config with X-Pendo-Extension-Key header). Additionally, an optional end-user login flow exists via IDP (Identity Provider) integration—background.js line 68 shows a 'Please log in' banner: 'There are training and onboarding guides available for this application, but we need to know who you are first.' This end-user login is configurable (controlled by browserIngestSettings/authRedirectUrl and forceAnonymous). The core product workflow (injecting Pendo agent, delivering guides, collecting analytics) requires the organization to have a Pendo subscription with a valid API key.