AI 产品解读CORS proxy helper for former2.com that executes AWS SDK API calls on behalf of the former2.com web application
Former2.com needs to call AWS API endpoints directly from the browser, but browser CORS policies block cross-origin requests to AWS. This extension acts as a proxy, using the bundled AWS SDK to make API requests that the website cannot make on its own.
User visits former2.com, provides their AWS credentials (access key, secret key, session token), former2.com sends API requests to the extension via chrome.runtime.sendMessage, the extension executes AWS SDK calls and returns the results (resource data), former2.com uses this data to generate IaC templates (CloudFormation, Terraform, etc.).
Proxies AWS SDK API calls from former2.com to AWS endpoints, bypassing CORS restrictionsBundles a full AWS SDK (v2.1519.0) for making authenticated API calls to AWS servicesSupports ping, config update (credential passing), and generic service action requestsWhitelists only former2.com, localhost, and 127.0.0.1 as valid callers
- 目标用户
- DevOps engineers and cloud architects using former2.com to generate Infrastructure as Code (CloudFormation, Terraform, etc.) from existing AWS resources / AWS users who want to reverse-engineer their existing infrastructure into code templates
- Extension is minimal (only bg.js + bundled AWS SDK), making analysis straightforward with little ambiguity.
- Cannot verify former2.com's current UI/workflow from extension source alone — relies on knowledge that former2.com is a free open-source tool with no account system.
付费分析未识别到付费功能
The extension contains no payment logic, no billing APIs, no premium feature gating, no subscription checks, and no upgrade UI. The 'pro' keyword hits in static analysis are false positives — one is in the AWS SDK filename (aws-sdk-2.1519.0-sw.js) and the other is in the word 'properties' within a service constructor call (bg.js line 36). Former2.com is a free, open-source project. The extension is a simple CORS proxy helper with no monetization layer.
- 置信度
- 97
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension itself has no login UI, no account system, and no authentication flow. It acts purely as a CORS proxy that receives requests from former2.com and executes AWS SDK calls. The user provides their own AWS credentials (access key, secret key, session token) as configuration input via the former2.com website (bg.js lines 12-16, 27-30), but this is not a login to the extension or to former2.com — it is the user's own AWS API credentials. Former2.com itself is a free, open-source tool with no user account system.