A Chrome extension that lets you chat with any webpage using AI. Your design thinking partner for hackathon projects.
- Claude-inspired UI - Clean, minimal design with warm color palette
- Toggle Sidebar - Slides in from the right, adjusting page content
- Multi-model Support - Choose from 4 AI models:
- Kimi K2 (Moonshot AI)
- DeepSeek R1 (DeepSeek)
- Qwen 2.5 VL (Alibaba) - Vision
- Pixtral 12B (Mistral AI) - Vision
- Page Context - Automatically extracts content from the current page
- Quick Actions - One-click prompts for common tasks
- Settings - Configure your API key in the extension
# Install dependencies
npm install
# Build the extension
npm run build- Open Chrome and go to
chrome://extensions/ - Enable Developer mode (toggle in top right)
- Click Load unpacked
- Select the
distfolder
- Click the extension icon or the floating button on any page
- Click Settings in the sidebar footer
- Enter your Hyperbolic API Key
- Click Save
- Navigate to any webpage
- Click the floating chat button (bottom right)
- The sidebar opens with page context loaded
- Select your preferred AI model
- Start chatting or use quick actions:
- Analyze this page - Extract key points
- Find pain points - Identify user problems
- Suggest solutions - Get innovative ideas
- Tech recommendations - Get stack suggestions
# Install dependencies
npm install
# Build for production
npm run build
# Development with watch mode
npm run dev├── src/
│ ├── background/ # Service worker
│ │ └── index.ts
│ ├── content/ # React sidebar app
│ │ ├── components/
│ │ │ ├── App.tsx
│ │ │ ├── Sidebar.tsx
│ │ │ ├── ModelSelector.tsx
│ │ │ ├── SettingsModal.tsx
│ │ │ ├── Message.tsx
│ │ │ └── Icons.tsx
│ │ ├── styles/
│ │ │ └── index.css
│ │ └── index.tsx
│ └── shared/ # Shared types
│ ├── types.ts
│ └── constants.ts
├── public/
│ ├── manifest.json
│ └── icons/
├── scripts/
│ └── create-icons.cjs
├── dist/ # Build output (load this in Chrome)
├── package.json
├── vite.config.ts
└── tsconfig.json
- React 18 - UI components
- TypeScript - Type safety
- Vite - Build tool
- Chrome Extension Manifest V3
Uses the Hyperbolic API for AI chat completions.
MIT