AI 产品解读A Chrome extension that lets users send food 'treats' to others by integrating with multiple food delivery platforms
Enables users to gift food orders from food delivery services (Grubhub, Papa John's, Just Eat, Skip The Dishes, Lieferando, Thuisbezorgd, Foodora) to friends, family, or colleagues through the TreatStream platform
1. User installs extension and logs into TreatStream.com. 2. User browses a supported food delivery site (e.g., Grubhub) and adds items to cart. 3. Extension injects a TreatStream overlay on checkout pages. 4. Extension validates cart (delivery mode, price limits, address match). 5. User names/describes the treat and clicks 'Add This Treat!'. 6. Extension POSTs cart data to treatstream.com/addtreat/addTreat. 7. TreatStream handles the treat delivery to the recipient.
Injects 'Add Treat' UI overlay into supported food delivery checkout pages (Grubhub, Papa John's, Just Eat UK/DK/FR, Skip The Dishes, Lieferando, Thuisbezorgd, Foodora)Reads cart items, prices, and restaurant details from delivery sites and posts them to TreatStream's addTreat API endpointValidates delivery address, minimum/maximum order prices, and other constraints before allowing treat creationProvides image search for treat imagesManages TreatStream user session via cookies and login state checkingDisplays TreatStream dashboard link for managing treats
- 目标用户
- Users of TreatStream.com who want to send food treats/gifts to others / People in the US, Canada, UK, Germany, Denmark, France, Netherlands, and Sweden who use supported food delivery platforms
- Chrome Web Store detail was unavailable (API error), so store description/rating/reviews could not be consulted
- The TreatStream.com website itself was not crawled, so the full treat-giving workflow on the destination service is inferred from extension code
- Could not determine whether TreatStream has paid tiers for its service since only the extension code was analyzed
付费分析未识别到付费功能
No evidence of paid features, premium tiers, subscription gates, or payment platform integrations within the extension. No matches for premium, subscription, upgrade, billing, stripe, or similar keywords. The 'payment' matches in script.js refer to reading price totals from food delivery checkout pages (Grubhub, Just Eat, etc.) for treat validation, not to extension monetization. The deterministic heuristic returned isPaid=0. TreatStream.com as a destination service may have its own pricing model, but no evidence of that is present in the extension source.
- 置信度
- 80
- 支付平台
- --
- 来源
- AI / 中
- 需要登录
- 是
- 登录理由
- The extension checks login status by reading a cookie (_ext_treat) from treatstream.com. If the user is not logged in, the 'Add This Treat!' button is disabled and a message is shown: 'You are currently not logged in. Please log in at TreatStream.com to proceed.' The server-side addTreat endpoint also returns a req_login flag if not authenticated. Core workflow (adding treats) is blocked without login.