# Deploy docs to GitHub Pages

These files power the **privacy policy URL** and **reviewer guide** for the Chrome Web Store.

## One-time setup (GitHub website)

1. Push this repository to GitHub.
2. Open the repo on GitHub → **Settings** → **Pages**.
3. Under **Build and deployment**:
   - **Source:** Deploy from a branch  
   - **Branch:** `main` (or your default branch)  
   - **Folder:** `/docs`  
4. Click **Save**. After 1–3 minutes the site is live.

**Alternative:** enable **GitHub Actions** as the Pages source and use the workflow in `.github/workflows/pages.yml` (deploys the same `docs/` folder on push).

## Your URLs

Replace `Transloc-` with your actual repository name if different.

| Page | URL |
|------|-----|
| Home | `https://imadatov.github.io/Transloc-/` |
| **Privacy policy (Chrome Web Store)** | `https://imadatov.github.io/Transloc-/privacy-policy.html` |
| Reviewer test guide | `https://imadatov.github.io/Transloc-/reviewer-test.html` |

Check: **Settings → Pages** shows the exact URL GitHub assigned.

## Chrome Web Store fields

| Field | Value |
|-------|--------|
| Privacy policy | `https://imadatov.github.io/Transloc-/privacy-policy.html` |
| Notes to tester | Paste from [reviewer-test.html](reviewer-test.html) or the short block at the bottom |

## Updating

Edit `docs/privacy-policy.html` or `docs/privacy-policy.md`, commit, push. Pages redeploys automatically.

## Local preview

```bash
cd docs
python3 -m http.server 8765
```

Open `http://localhost:8765/privacy-policy.html`
