Never lose a deal because you forgot to follow up.
A lightweight Chrome Extension that helps you manage LinkedIn follow-ups without leaving LinkedIn.
- Status Management - Track contacts (Contacted, Replied, Meeting Booked, Not Interested)
- Follow-up Reminders - Never forget to follow up again
- Search Overlay - See contact status directly in LinkedIn search results
- Local Storage - All data stored locally, no external servers
- Framework: React 18 + TypeScript
- Build Tool: Vite
- Styling: Tailwind CSS
- Extension: Chrome Manifest V3
blink/
├── public/
│ ├── manifest.json # Chrome Extension manifest
│ └── icons/ # Extension icons
├── src/
│ ├── background/ # Service Worker
│ ├── content/ # LinkedIn page injection
│ ├── popup/ # Extension popup UI
│ ├── storage/ # chrome.storage wrapper
│ ├── utils/ # Utility functions
│ ├── types/ # TypeScript types
│ └── styles/ # Global styles
└── popup.html # Popup entry point
- Node.js 18+
- Chrome browser
npm installnpm run devnpm run buildThe built extension will be in the dist/ folder.
- Open Chrome and go to
chrome://extensions/ - Enable "Developer mode"
- Click "Load unpacked"
- Select the
dist/folder