A full-stack Chrome extension + FastAPI backend that:
- Scans articles in real time
- Detects fake news with a trained ML model
- Analyzes sentiment
- Verifies if the source is trusted
- Go to
chrome://extensions - Enable Developer Mode
- Click Load Unpacked → Select
extension/folder - Click the extension icon → Click Analyze
cd backend
python -m venv venv && source venv/bin/activate
pip install -r requirements.txt
uvicorn app.main:app --reload