AI 产品解读Displays a badge count of unread emails from all user Mail.ru mailboxes directly in the browser toolbar
Prevents users from missing important or urgent emails by providing a persistent, visible unread email counter next to the address bar
User installs extension and is logged into Mail.ru. A content script on mail.ru pages reads the active user and monitors authentication changes. The service worker periodically fetches the unread email count from Mail.ru's NaviData API, aggregates counts from all mailboxes, and displays the total as a badge on the extension icon. Clicking the icon opens a popup showing per-mailbox unread counts with links to navigate directly to each inbox.
Aggregates unread email counts from all connected Mail.ru mailboxesDisplays unread count as a badge on the extension iconShows per-mailbox breakdown of new emails in popupAllows direct navigation to specific inboxes from the popupUpdates email count periodically via alarms (every 2 minutes)
- 目标用户
- Mail.ru email users / Russian-speaking internet users who use Mail.ru as their primary email service / Users managing multiple Mail.ru email accounts
- Source code is heavily minified (popup.js is 568KB single line), making exact code tracing difficult
- The VK Mini Apps SDK is bundled in popup.js (likely for the popup UI framework), but no VK payment features are used
- Could not verify if the popup displays a login prompt directly or simply shows 0 count when not authenticated
付费分析未识别到付费功能
No evidence of payment systems, subscriptions, premium tiers, or billing in the source code. The 'pro' keyword hits are false positives from filenames like 'proxy_messages.js' and React production builds. The 'license' hits are all open-source MIT license attributions. The extension provides its full email counting functionality for free.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension fetches user email count from Mail.ru's NaviData API (https://portal.mail.ru/NaviData?mac=1&ldata=1) and checks for 'ok' or 'noauth' status. If 'noauth', it returns 0 unread emails. The content script (auth.js) injects into mail.ru pages and reads the active user via window.__PH.activeUser(), monitoring authChange events. The popup references https://account.mail.ru/login. Without being logged into a Mail.ru account, the core workflow (counting unread emails) returns zero.