SnapFlow optional libraries
============================

OCR (Tesseract.js)
------------------
To enable the OCR button inside the editor, drop a copy of tesseract.min.js
here. The editor lazy-loads `chrome.runtime.getURL("lib/tesseract.min.js")`.

One-line install (PowerShell, from the extension/ folder):

    Invoke-WebRequest `
      -Uri https://cdn.jsdelivr.net/npm/tesseract.js@5/dist/tesseract.min.js `
      -OutFile lib/tesseract.min.js

Notes:
* Tesseract.js will fetch language data (kor + eng) from its CDN on first use
  while OCR runs in the user's browser. No data leaves the device for OCR itself.
* The extension ships with strict MV3 CSP, so this file must live inside the
  extension package — it cannot be loaded from a remote CDN at runtime.
