Chrome extension to quickly capture frontend interview experiences from any blog.
- Open
chrome://extensions/ - Enable Developer mode (top right toggle)
- Click Load unpacked
- Select this
chrome-extension/folder
Before using, set your capture key in browser console on any page:
localStorage.setItem('fj_capture_key', 'your-capture-secret-here');This must match the CAPTURE_SECRET env var on your backend.
- Browse to any blog with a frontend interview experience
- Click the extension icon
- URL and title auto-fill, page text auto-extracts into textarea
- Edit/clean the text if needed, or paste your own
- Click Capture & Send
- Item goes to
queuedstatus → processed by AI pipeline
Extension → POST /api/pipeline/ingest → captured_content table (status: queued)
↓
AI pipeline (cron or manual trigger)
↓
score 8+ → published
score 7 → review (admin approves)
score <7 → rejected
Edit popup.js to change API URLs:
- First URL = production
- Second URL = local dev (fallback)
This is part of the Frontend Junction open source project.