AI 产品解读Decentralized compute-sharing network node client that contributes spare CPU/memory resources from the user's device to a peer-to-peer network, replacing centralized cloud infrastructure
Creates a user-powered alternative to centralized cloud providers (AWS, Google Cloud) by pooling unused computing resources from millions of devices, enabling an internet 'both powered and controlled by the people that use it'
User installs extension → creates account via Bless dashboard login → extension stores auth token → connects to B7S peer network → monitors device CPU/memory → contributes spare compute to supported websites/services → receives rewards. Optionally connects to AI platforms (ChatGPT, Claude, etc.) to verify authentication and enable platform-specific functionality.
Shares spare CPU and memory resources via B7S/libp2p peer-to-peer networkIntegrates with AI platforms (ChatGPT, Claude, Grok, Perplexity, Gemini, Meta AI, Amazon Rufus) for authentication and functionality verificationRuns local LLM inference via ONNX runtime and tinyLlm workerMonitors system stats (CPU usage, memory) to manage resource contributionIncludes local PII detection for AI platform interactionsGoogle search crawler for additional network functionality
- 目标用户
- Users who want to earn rewards by sharing their device's idle computing resources / Decentralized computing enthusiasts / Users of AI platforms (ChatGPT, Claude, etc.) who want to support the network
- The popup.js and background.js files are heavily bundled/minified (16K+ lines in popup.js, 49K+ in background.js), making it difficult to trace the complete auth flow and identify all features
- Cannot verify the reward system details or whether there are paid tiers on the external Bless dashboard
- The AI platform integration details (what exactly is being 'verified' or 'enabled') are not fully clear from the code examined
付费分析未识别到付费功能
No evidence of paid features, payment APIs, billing systems, subscription tiers, or upgrade UI within the extension. The deterministic scan found 'subscription' only in WASI poll_oneoff function signature (assets/core-ChJUrRWm.js line 450) and 'pro' only in generic JS module helpers. No stripe, payment, pricing, billing, or premium keywords found in any source files. The extension operates as a free compute-sharing client where users contribute spare resources in exchange for rewards from the Bless network.
- 置信度
- 85
- 支付平台
- --
- 来源
- AI / 中
- 需要登录
- 需要复核
- 登录理由
- The extension requires authentication with the Bless network service to function. The popup shows a 'Log in' button that redirects to the Bless dashboard login page (popup.js line 16051: openTab(`${dashboardUrl}/login`)). The dashboard sends back an AUTH_LOGIN token via externally_connectable (background.js line 49139-49148), which is stored as authToken and used as a Bearer token for all gateway API calls (background.js lines 201, 230). Node connection requires both nodeData and authToken (background.js line 49081). Without authentication, users cannot connect to the B7S peer network or contribute compute resources.
存在冲突