AI 产品解读Translate manga/comic images on webpages by overlaying translated text onto the original images
Readers who don't understand Japanese can read manga on the web without needing to find fan-translated versions
User installs extension -> navigates to a manga/comic webpage -> extension detects images -> user hovers over an image to see a translate button -> clicking the button sends the image to either the cloud backend (sugoi-cloud-backend-m6rrp.ondigitalocean.app) or a local server for translation -> the translated image replaces the original in-place -> user can save translated images to a gallery
Cloud-based manga image translation (Japanese to multiple languages including English, Spanish, Chinese, Korean, etc.)Local server translation option for self-hosted translation engineImage caching and saved translations galleryShow original/translated toggle on hoverPixiv image referrer header manipulation for compatibilityGuest mode with daily quota limits
- 目标用户
- Manga readers who don't speak Japanese / Web comic enthusiasts / Pixiv users
- The popup JS is heavily minified (251KB React bundle), making UI-level analysis difficult. Some UI strings related to login/Patreon may be present but hard to trace. The Patreon membership link was found in external host references but its exact context (donation vs paid tier) could not be fully verified from minified code.
- The extension supports a local server mode (run_master_server.py) which is an advanced feature not fully analyzed here.
- Guest quota limits and exact authenticated user quotas are server-side and not visible in the source code.
付费分析未识别到付费功能
The extension itself does not gate any features behind a paywall or implement its own billing. Patreon is used solely as an authentication provider to increase the daily translation quota for logged-in users. There is no in-extension purchase flow, no Stripe/PayPal integration, and no paid feature names. The Patreon membership link found in the code appears to be a donation/support link rather than a paid feature gate within the extension. Guest users can still translate manga images, just with a lower daily limit.
- 置信度
- 90
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension supports both guest (anonymous) and authenticated modes. Guests are subject to a daily quota limit ('guestQuota') and receive a 'Daily free manga page limit reached' error when exhausted. Authenticated users (via Patreon OAuth) bypass this limit and receive higher quotas. The extension implements a full Patreon authentication flow (opening a tab to sugoi-cloud-backend/auth/patreon, exchanging the callback token via sugoitoolkit.com/?token=, and storing user/token in chrome.storage). While basic translation works without login, the core workflow is significantly constrained for guests, making login effectively required for sustained use.