AI-powered LinkedIn job posting analyzer Chrome extension.
- 🤖 AI-powered job posting analysis
- 📊 Analyze job postings directly on LinkedIn
- 🎨 Modern UI with side panel interface
- ⚡ Built with React and Tailwind CSS
- Bun installed
bun installbun run devThis will start the development server with hot reload enabled.
Build the extension for production:
bun run buildThe built extension will be in .output/chrome-mv3/.
Create a packaged .crx file ready for distribution:
bun run packageThis will build and package the extension as .output/job-bro.crx.
- Run
bun run dev - Open Chrome and go to
chrome://extensions/ - Enable "Developer mode"
- Click "Load unpacked"
- Select the
.output/chrome-mv3directory
- Run
bun run package - Open Chrome and go to
chrome://extensions/ - Enable "Developer mode"
- Drag and drop
.output/job-bro.crxonto the extensions page
- WXT - Chrome extension framework
- React - UI library
- Tailwind CSS - Styling
- Radix UI - UI components
- Lucide React - Icons
- IndexedDB - Local storage
job-bro/
├── src/ # Source code
├── public/ # Static assets
├── .output/ # Build output
├── components.json # Component configuration
└── wxt.config.ts # WXT configuration
bun run dev- Start development serverbun run build- Build for productionbun run zip- Create a zip file of the extensionbun run package- Build and package as .crx file
MIT