AI 产品解读Translate text in input fields on web pages
Allows users to quickly translate text they type into input boxes or text areas on any webpage without manually copying and pasting into a separate translator.
1. User types text into an input field or textarea. 2. Content script detects the input. 3. If the text contains the configured trigger flag (e.g., '/lang'), it sends the content to the background script. 4. Background script translates the text using Google or Azure API. 5. Result is sent back to the content script. 6. Content script replaces the original text in the input field with the translation.
Real-time translation of text in input fields and textareasSupport for multiple languages via simple mode (single target) and advanced mode (multiple targets)Trigger-based translation (e.g., typing '/lang' to trigger translation)Configuration stored in Chrome sync storageUses Google Translate and Azure Cognitive Services APIs
- 目标用户
- Non-native speakers browsing foreign language websites / Users who need quick translations while filling out forms or writing comments
- The extension uses a hardcoded Azure Translator API key in background.bundle.js, which poses a security risk and potential rate-limit issue. This was not flagged as a paid feature because the key is embedded, implying the developer pays or uses a free tier, not the end-user.
付费分析未识别到付费功能
The extension uses free tiers of translation services (Google Translate API and Azure Cognitive Services with a hardcoded key). There is no code gating features behind a paywall, no subscription management, and no payment processing logic. The hardcoded Azure key suggests the developer covers costs or uses a free tier, but the extension itself does not charge users.
- 置信度
- 90
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension operates entirely locally using Chrome storage for configuration and public translation APIs (Google Translate and Azure Cognitive Services). There is no code implementing user authentication, session management, or account creation. The extension does not redirect to a web app requiring login to function.