AI 产品解读AI-powered executive concierge and productivity assistant for PwC employees, accessible via browser extension popup and injected chatbot widget on PwC web pages
Helps PwC employees efficiently manage daily work tasks—scheduling, time tracking, benefits inquiries, goal tracking, and client relationship insights—through a unified conversational interface (voice/text) rather than navigating multiple internal systems
User clicks the Astro extension icon in Chrome to open the popup (index.html → Angular app). The popup uses chrome.identity.getProfileUserInfo() to retrieve the user's email from their Chrome profile. Firebase Cloud Messaging is initialized to receive push notifications from PwC's Astro orchestrator API (astro-orchestrator-api.pwc.com). Users can interact via text/voice to query meetings, time entries, benefits, goals, and client insights. Additionally, a chatbot widget (astro_chatbot.js) is injected as an iframe on PwC internal pages (*.pwc.com, *.pwcinternal.com, SharePoint) providing contextual assistance. Content scripts (qlscript.js) dynamically replace page elements with Astro quick-links based on stored configuration data.
Meeting and calendar management ("When is my next meeting with Isa Morales?")Time entry tracking ("Enter time for today")Benefits and leave balance queries ("What is my vacation balance?")Goal and revenue tracking ("How am I doing against my revenue goals?")Client relationship insights ("Who at PwC has the strongest relationship with Coca-Cola?")Push notifications via Firebase Cloud Messaging
- 目标用户
- PwC employees and partners / PwC executives
- The main Angular app bundle (main.2654cc8cad1e183a.js, 363KB) is minified and was not fully analyzed for internal login/auth flows or feature gating
- Cannot confirm whether the PwC backend APIs require authentication for all requests without testing live endpoints
- The embedded API keys and server keys in bg.js (lines 11-14) suggest the extension is tightly coupled with PwC's internal infrastructure
付费分析未识别到付费功能
No evidence of paid features, payment integrations, upgrade prompts, or billing UI found anywhere in the source. Searched for: premium, payment, billing, stripe, paywall, purchase, subscription, upgrade, plan, pro (in context). All matches were either third-party library code (Firebase push notification subscriptions, IndexedDB upgrades) or open-source license text. This is an internal enterprise tool for PwC employees, provided as part of their workplace toolkit—not a commercial product with monetized tiers.
- 置信度
- 92
- 支付平台
- --
- 来源
- AI / 中
- 需要登录
- 是
- 登录理由
- The extension is designed exclusively for PwC employees and integrates with PwC's internal systems (astro-orchestrator-api.pwc.com, *.pwcinternal.com, *.pwc.com, *.pwcglb.com). popup-identity.js uses chrome.identity.getProfileUserInfo() to retrieve the user's email (line 7), which is then sent to PwC's backend to register FCM tokens (popup-firebase.js line 31-56). The extension does not implement its own login UI, but the core workflow—managing meetings, time entries, benefits, goals, and client insights—requires the user to be authenticated on PwC's internal destination services. The manifest requests 'identity' and 'identity.email' permissions (manifest.json lines 22-23), and host permissions are limited to PwC corporate domains (lines 27-29). Without PwC SSO/internal access, the extension cannot function.