AI 产品解读OAuth bridge linking ARC Raiders game accounts to MetaForge.app for progress syncing
Allows ARC Raiders players to sync their in-game items, quests, workshop progress, and stats to MetaForge.app by facilitating OAuth authentication between the game client and the web service
1. User installs extension and visits metaforge.app/arc-raiders. 2. The content script (presence.js) injects a meta tag signaling the extension is active. 3. User initiates account linking on MetaForge. 4. The game client (ARC Raiders) opens an OAuth callback on localhost:49173. 5. The extension's declarativeNetRequest rule redirects this callback to MetaForge's /api/arc-raiders/embark/oauth/callback endpoint, completing the account link. 6. MetaForge can then sync the user's in-game progress.
Intercepts OAuth callback from ARC Raiders game client (local server on port 49173) and redirects to MetaForge APIInjects presence marker on metaforge.app to signal extension is installedEnables syncing of in-game items, quests, workshops, and stats to MetaForge.app
- 目标用户
- ARC Raiders players who want to track and manage their in-game progress on MetaForge.app
- Very small extension (5 files, ~145 bytes of JS) with minimal code to analyze — straightforward but limited depth
- Cannot verify MetaForge.app's own paid features or account requirements from the extension source alone
- The local server port (49173) is hardcoded in the rule, suggesting tight coupling with a specific game client version
付费分析未识别到付费功能
No billing, subscription, payment platform, or feature-gating code found in the extension source. The 'pro' keyword hits are false positives (base64 data in verified_contents.json and the word 'progress' in manifest description). The extension itself is a simple OAuth bridge with no paid tiers. MetaForge.app may have paid plans, but the extension does not implement or gate any paid functionality.
- 置信度
- 85
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension's entire purpose is to link a user's ARC Raiders (Embark) game account to MetaForge.app via OAuth. The rules.json file redirects a local OAuth callback (127.0.0.1:49173) to MetaForge's /api/arc-raiders/embark/oauth/callback endpoint, and the description explicitly states 'Link MetaForge to your ARC Raiders account.' Users must authenticate with both MetaForge.app and their Embark game account to use the syncing functionality.