AI 产品解读Enhances the Zerodha Kite trading interface with additional portfolio analytics and stock information.
Traders using Zerodha Kite lack easy access to XIRR (Extended Internal Rate of Return) calculations for their portfolio directly in the holdings table and real-time stock fundamentals without navigating away.
User logs into Zerodha Kite. Extension injects content scripts into kite.zerodha.com. On the Holdings page, it fetches portfolio data from console.zerodha.com, calculates XIRR, and adds a sortable column. When user hovers over a stock ticker, it opens an iframe showing fundamentals from stocks.tickertape.in.
Adds an XIRR column to the Kite Holdings table, calculated via Zerodha Console API.Displays stock fundamentals (via Tickertape) in a popup overlay when hovering over stock symbols.Allows users to toggle XIRR and hover fundamentals features via extension settings.
- 目标用户
- Retail investors and traders using the Zerodha Kite platform in India.
- The extension code is heavily minified/bundled, making some logic harder to trace, but the core functionality is clear from the main chunks.
- Cannot verify if the destination service (Zerodha) charges for the specific API endpoints used, but the extension itself does not gate features behind a paywall.
付费分析未识别到付费功能
There is no evidence of paid features, subscription gating, or billing logic within the extension. The extension uses standard storage APIs and makes requests to the destination service using the existing user session. Keywords like 'pro' found in the static scan are from React library files (react.production.min.js) and are not related to paid tiers.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension operates entirely within the context of the Zerodha Kite trading platform (kite.zerodha.com). It reads the user's session token from localStorage (`__storejs_kite_public_token`) and makes authenticated API calls to console.zerodha.com using this token. Without a logged-in Zerodha account, the extension cannot fetch portfolio holdings or calculate XIRR. The extension itself does not implement a separate login mechanism.