An AI-powered Chrome extension that analyzes Amazon products and customer reviews to help users make better buying decisions.
- Detects Amazon product pages
- Gets product information from the page
- Collects customer reviews
- Uses Google Gemini to analyze the product and reviews
- Shows AI-generated pros, cons, review sentiment, and buying recommendations
Frontend
- React
- TypeScript/JavaScript
- Vite
- Tailwind CSS
- Chrome Extension Manifest V3
- Claude — used to help build the frontend UI
Backend
- Python
- FastAPI
- Google Gemini API
Amazon Product Page
↓
content.js
↓
Product Info + Reviews
↓
React Extension
↓
FastAPI Backend
↓
Google Gemini
↓
AI Analysis
npm install
npm run buildcd backend
python3 -m venv venv
source venv/bin/activate
pip install fastapi uvicorn google-genai python-dotenvCreate a .env file inside backend:
GEMINI_API_KEY=your_api_key_hereStart the backend:
uvicorn main:app --reload- Open Chrome
- Go to
chrome://extensions - Enable Developer Mode
- Click Load unpacked
- Select the
distfolder - Open an Amazon product page
- Open Amazon Helper
2026-09-04.18-36-49.mov
Claude was used to help design and build the frontend UI.