Per-Site Rules

Override global settings for specific manga reader websites.

What are Per-Site Rules?

Per-site rules let you define different settings for different manga reader websites. For example, you might want Japanese-to-English on one site but Korean-to-Spanish on another.

Format

Rules are defined in a textarea in the Backend tab using a JSON-like format. Each rule specifies a domain pattern and the settings to override:

mangareader.example.com:
  sourceLang: ja
  targetLang: en
  backend: openai

webtoon.other-site.com:
  sourceLang: ko
  targetLang: es
  backend: ollama

Overridable Settings

SettingKeyValues
Source languagesourceLangja, ko, zh, auto
Target languagetargetLangen, es, pt, fr, de, ru, id
Backendbackendopenai, ollama, server
Domain matching

The domain must match exactly. Use only the hostname (e.g., reader.mangasite.com), not the full URL path.