AI 产品解读AliExpress product monitoring and order management for RC model parts
Helps users (specifically RC model enthusiasts) track price history, compare prices across sellers, check availability in special deals (SuperDeals, LimitedDeals), and automatically sync order data from AliExpress and Nkon.nl into a centralized inventory system.
User installs extension -> Extension injects into AliExpress/Nkon pages -> Extracts product/order data -> Authenticates with swarm.army backend using JWT -> Sends data to swarm.army API for processing and storage -> Displays UI overlays or updates local inventory.
Replace vi.aliexpress.com links to www.aliexpress.comMonitor AliExpress price historyCompare prices across different sellersCheck product availability in SuperDeals/LimitedDealsRecommend new RC model partsAutomatically sync orders to swarm.army inventory system
- 目标用户
- RC model enthusiasts / AliExpress shoppers looking for RC parts / Users of the swarm.army platform
- The extension code is heavily minified, making some logic hard to trace precisely.
- The 'subscription' keyword hit was a false positive from library code.
- The exact nature of the 'swarm.army' service's paid tiers is not visible in the extension code, only that it requires authentication.
付费分析未识别到付费功能
The extension itself does not implement any payment gateway, subscription management, or paid feature gating. The 'subscription' and 'subscribe' keywords found in the static analysis are false positives from minified code or generic terms (e.g., 'unsubscribe' in RxJS library code found in background.js/polyfills.js). The extension connects to a backend (swarm.army) which may have its own business model, but the extension code does not reflect any paid features, upgrade prompts, or billing logic.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension requires a JWT token stored in a cookie named 'auth-jwt' on the swarm.army domain to authenticate API requests to api.swarm.army. The content.js code explicitly reads this cookie to set the 'authorization: Bearer <jwt>' header for all backend calls. Without this token, the extension cannot fetch products, sync orders, or use its core features. The login is managed by the destination service (swarm.army), not by the extension itself or a generic browser profile.