git clone <repository-url>cd backendWindows
python -m venv venv
venv\Scripts\activatemacOS / Linux
python3 -m venv venv
source venv/bin/activatepip install -r requirements.txtuvicorn app:app --reloadBackend runs at:
http://127.0.0.1:8000
cd ai-text-detectornpm installnpm run devFrontend runs at:
http://localhost:3000
| Service | Command | Port |
|---|---|---|
| Backend | uvicorn app:app --reload |
8000 |
| Frontend | npm run dev |
3000 |
From the project root:
cd extensions
Ensure this folder contains a manifest.json file.
Open Google Chrome and navigate to:
chrome://extensions
Turn Developer mode ON (top-right corner).
Click Load unpacked
Select the extensions folder
Click Open
✅ The extension will be successfully loaded into Chrome.
Click the 🧩 Extensions icon in the Chrome toolbar
Pin your extension
Open any webpage and use the extension features
| Service | Command / Action | Port |
|---|---|---|
| Backend | uvicorn app:app --reload | 8000 |
| Frontend | npm run dev | 3000 |
| Chrome Extension | Load Unpacked (extensions/) | — |