A Chrome extension that analyzes web pages for SEO optimization and provides AI-powered recommendations to improve search rankings.
Website: https://ai-seo-copilot.webflow.io/
⚠️ Rebrand in progress (AI SEO Copilot → Optia). The codebase, UI, docs, and package names have been renamed to Optia. The items below live on external systems and must be renamed/migrated manually by the project owner — they were intentionally left unchanged so links don't break before migration:
- GitHub repository & remote URL — currently
die-Manufaktur/AISEOC-Chrome-Extension. Rename the repo, update the git remote, then update the links indocs/andapp/src/components/Footer.tsx.- Marketing website —
https://ai-seo-copilot.webflow.io/(Webflow project).- Chrome Web Store listing — extension name, description, screenshots, and the public store URL.
- Documentation site —
ai-seo-copilot.gitbook.io(referenced inapp/src/lib/docs-links.tsandapp/src/components/Footer.tsx).- Feature-request portal —
aiseocopilot.featurebase.app(referenced inapp/src/components/Footer.tsx).- Bug-report repo link —
github.com/PMDevSolutions/seo-copilot(referenced inapp/src/components/Footer.tsx).- Figma design file —
…/AI-SEO-Copilot-design(referenced inapp/QA-PROMPT.md).- Donation / sponsor links — none found in the repo; update if any exist outside it.
After migrating each external property, update the corresponding URL in
Footer.tsx,docs-links.ts, and the docs to the new Optia domain.
- Real-time SEO Analysis - Instant scoring for titles, meta descriptions, headings, images, and more
- AI-Powered Recommendations - OpenAI integration generates optimized content suggestions
- Keyword Optimization - Track keyword usage across all page elements
- One-Click Copy - Copy suggestions directly to your clipboard
- Visual Score Breakdown - See exactly where your page needs improvement
See the detailed setup instructions in app/README.md.
TL;DR:
# Install Node.js from https://nodejs.org/ first, then:
npm install -g pnpm
cd app
pnpm install
pnpm build
# Load app/dist folder in Chrome as unpacked extensionoptia-extension/
├── app/ # Chrome extension source code
│ ├── src/ # React + TypeScript source
│ ├── dist/ # Built extension (load this in Chrome)
│ ├── icons/ # Extension icons
│ ├── manifest.json # Chrome extension manifest
│ └── README.md # Detailed setup instructions
├── .claude/ # Claude Code AI agent configuration
├── docs/ # Additional documentation
└── README.md # This file
cd app
pnpm install # Install dependencies
pnpm dev # Start development server
pnpm build # Build for production
pnpm test # Run test suite (283 tests)- React 19 - UI framework
- TypeScript - Type-safe JavaScript
- Tailwind CSS - Utility-first styling
- Vite - Build tool and dev server
- Zustand - State management
- OpenAI API - AI-powered recommendations
- Vitest - Testing framework
MIT
- Fork the repository
- Create a feature branch
- Make your changes
- Run tests (
pnpm test) - Submit a pull request