English | Korean
MangoTL is an AI-powered manga, manhwa, webtoon, and comic image translator. It ships as a browser extension plus a self-hostable local server. The extension reads the selected image and uploads the image bytes to the server, then the server runs OCR, translates detected text with an OpenAI-compatible provider, and returns a rendered translated image.
View on Firefox Add-ons (As of 26/05/31, the add-on is still under review)
- Lang: English to Korean
- Provider: OpenRouter
- Model: google/gemma-4-26b-a4b-it model.
MangoTL supports a variety of websites, languages, AI providers, and OCR engines.
You can check the full list below.
- Pixiv
- Japanese
- Korean
- English
- Chinese
- German
- Swedish
- Japanese
- Korean
- English
- Chinese
- German
- Swedish
- CrofAI
- OpenRouter
- OpenAI-compatible endpoints
-
Install dependencies.
bun install
-
Create your environment file.
cp .env.example .env
-
Add your provider API key and select your provider in
.env. Below is an example using OpenRouter.OPENROUTER_API_KEY=your_api_key_here MANGOTL_AI_PROVIDER=openrouter
-
Start the server.
bun run start
-
Check that the server is ready.
curl http://localhost:8787/health
- Browser: The user clicks the button overlaid on the image. The browser sends the image information to the server.
- Server: Downloads the image and extracts text using OCR engines such as PaddleOCR and manga-ocr.
- Server: Sends the extracted text to the configured AI model for translation.
- Server: Removes the original comic bubble text from the image, inserts the translated text on top, and sends the final image back to the browser.
- Browser: Overlays the received image onto the original image. The user can now see the translated comic.
- Firefox Add-ons to install.
- Build the release zip:
bun run release:extension - In Firefox, open
about:debugging→ This Firefox → Load Temporary Add-on and select any file insideextension/.
MangoTL is free software licensed under the GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later).
Copyright © 2026 gpdir16 and MangoTL contributors.
If you modify this software and make it available to users over a network, you must provide the corresponding source code under the same license. See the AGPL FAQ for details.