LocalePack
ChromeFirefoxEdgeOperaSafariรายการ CWS
Vue.jsReact
Next.jsi18nextReact Native
คู่มือนักพัฒนากรณีความสำเร็จ
One format, every major browser

การทำโลคัลไลซ์ด้วย AI สำหรับ browser extensions

อัปโหลด messages.json ต้นฉบับ เลือกภาษาเป้าหมาย จ่ายครั้งเดียว แล้วดาวน์โหลด ZIP _locales ที่พร้อมปล่อยใช้งาน

การแปลที่ปลอดภัยต่อเพลซโฮลเดอร์
สอดคล้องกับ messages.json ของ WebExtension
ราคาโปร่งใส
messages.json
ภาษาต้นฉบับ (ตัวอย่าง)
{
  "appName": {
    "message": "My Extension",
    "description": "Name"
  },
  "welcomeMsg": {
    "message": "Hello, $USER$!",
    "placeholders": {
      "user": {
        "content": "$1"
      }
    }
  }
}
เยอรมัน (ผลลัพธ์)
{
  "appName": {
    "message": "Meine Erweiterung",
    "description": "Name"
  },
  "welcomeMsg": {
    "message": "Hallo, $USER$!",
    "placeholders": {
      "user": {
        "content": "$1"
      }
    }
  }
}
52 locales

วิธีการทำงาน

สามขั้นตอนง่ายๆ ในการทำโลคัลไลซ์ browser extension ของคุณ การแปลจะเริ่มหลังชำระเงิน—เราจัดคิวงานและสร้าง ZIP ภายในไม่กี่นาที

01

อัปโหลด

วางไฟล์ messages.json ต้นฉบับของคุณ เราจะพาร์สทันทีและตรวจสอบรูปแบบ browser extension

02

เลือกภาษาและดูราคา

เลือกได้จาก 52 ภาษา ดูราคาแบบโปร่งใสตามขนาดไฟล์ของคุณก่อนชำระเงิน

03

ดาวน์โหลด ZIP

จ่ายครั้งเดียวผ่าน Stripe เราจะสร้างไฟล์ _locales/{lang}/messages.json ทั้งหมดและรวมเป็น ZIP

เดโมราคาแบบเรียลไทม์

เครื่องมือประเมินราคาแบบโปร่งใส

ดูได้ชัดเจนว่าคุณจะจ่ายเท่าไร ก่อนอัปโหลด ใบเสนอราคาสุดท้ายจะคำนวณหลังอัปโหลดตามความยาวสตริงและภาษาที่เลือก

1. อัปโหลดไฟล์

วาง messages.json ที่นี่

หรือคลิกเพื่อเลือกไฟล์

WebExtension messages.json format. Max 500KB.

2. เลือกภาษา

|

เลือกแล้ว 3 จาก 55 ภาษา

3. ใบเสนอราคาของคุณ

ภาษาที่เลือก3

ราคาสุดท้ายจะคำนวณหลังอัปโหลดไฟล์บนหน้าชำระเงิน

ชำระเงินครั้งเดียว • ไม่มีการสมัครสมาชิก

สร้างมาเพื่อนักพัฒนา

ออกแบบมาโดยเฉพาะสำหรับรูปแบบโลแคลของ browser extension ไม่ใช่เครื่องมือแปลทั่วไป

รองรับรูปแบบของ WebExtension

สร้างมาโดยเฉพาะสำหรับโครงสร้าง messages.json ของ browser extension พร้อมรองรับ message, description และ placeholders

ปกป้องเพลซโฮลเดอร์

คงรูปแบบไวยากรณ์ $PLACEHOLDER$ ไว้เหมือนเดิมทุกประการ ตัวแปรของคุณจะคงอยู่ครบถ้วนในทุกภาษา

บริบทจากคำอธิบาย

เราอ่านฟิลด์ description ของคุณและใช้เป็นคำใบ้บริบทเพื่อให้ AI แปลได้แม่นยำยิ่งขึ้น

ส่งออกเป็น ZIP พร้อมใช้งาน

ดาวน์โหลด ZIP ที่มีโครงสร้างโฟลเดอร์ _locales/{lang}/messages.json ที่ถูกต้อง แล้วนำไปใส่ในส่วนขยายของคุณได้ทันที

ประมวลผลแบบขนาน

แปลทุกภาษาไปพร้อมกัน งานส่วนใหญ่เสร็จภายในไม่ถึง 5 นาที

ชำระเงินครั้งเดียว

ไม่มีการสมัครสมาชิก ไม่มีค่าธรรมเนียมรายเดือน จ่ายครั้งเดียวต่อหนึ่งงาน ดาวน์โหลดได้ตลอดไป

ส่วนขยาย WebExtension ทำงานกับ i18n อย่างไร

Every major browser reads the same _locales/{locale}/messages.json structure. Chrome, Edge and Opera expose the chrome.i18n namespace; Firefox and Safari expose browser.i18n. The file format, the placeholder syntax and the default_locale requirement are identical across all of them, which is why a single translated folder ships everywhere.

โครงสร้างโฟลเดอร์ _locales/
_locales/
├── en/
│   └── messages.json   ← default_locale
├── de/
│   └── messages.json
├── fr/
│   └── messages.json
└── ja/
    └── messages.json
messages.json
{
  "appName": {
    "message": "My Extension",
    "description": "Extension name"
  },
  "greeting": {
    "message": "Hello, $USER$!",
    "placeholders": {
      "user": { "content": "$1" }
    }
  }
}

Runtime API

chrome.i18n / browser.i18n

ตัวอย่างการเรียกใช้งาน

getMessage("key")

จำเป็นต้องมีใน manifest

"default_locale"

In-extension strings come from _locales/. Store listing copy is managed separately in each store's own dashboard — translating one does not translate the other.

messages.json format explained →

What actually differs between browsers

The messages.json format is shared across every major browser. Only four things vary, and none of them require re-translating your strings.

Runtime namespace
Chrome, Edge, and Opera expose chrome.i18n. Firefox and Safari expose browser.i18n. The method names and arguments are otherwise the same.
Folder location
Most browsers read _locales/ from the extension root. Build frameworks move it: WXT emits public/_locales/, and Plasmo reads locales/ rather than _locales/.
Store listing text
In-extension strings come from _locales/. Store listing copy does not — Chrome Web Store, AMO, and App Store Connect each manage listing translations in their own dashboard.
Locale-code lists
Chromium browsers accept a fixed set of underscore-separated codes and silently ignore anything else. Check your codes before shipping rather than after.

One translated _locales/ folder covers Chrome, Firefox, Edge, Opera, and Safari. The porting work is in the build, never in the strings.

ทำไมไม่ใช้เครื่องมือทั่วไปไปเลย?

เครื่องมือแปลแบบใช้งานทั่วไปไม่เข้าใจรูปแบบของ browser extension

LocalePack
แปลด้วยตนเอง
TMS ทั่วไป
เวลาในการตั้งค่า2 นาทีหลายชั่วโมงต่อภาษา30+ นาที
ความโปร่งใสของราคา
ความปลอดภัยของรูปแบบ WebExtension
ปกป้องเพลซโฮลเดอร์
ความเร็ว (52 ภาษา)< 5 นาทีสัปดาห์ชั่วโมง
เหมาะที่สุดสำหรับCross-browser extensionsโปรเจกต์ขนาดเล็กเว็บแอปสำหรับองค์กร

กรณีความสำเร็จ

โปรเจกต์จริงที่ใช้ LocalePack เพื่อเข้าถึงผู้ชมทั่วโลกได้สูงสุดถึง 52 ภาษา

AstrologerAI AI astrology app localized into 52 languages

AstrologerAI: an AI astrology app localized into 52 languages

How the AstrologerAI app translated its entire experience into 52 languages with LocalePack — 6.3M tokens for $58.73 — to reach a worldwide audience in their own language.

DevToys.pro developer tools web app localized into 52 languages

DevToys.pro: 400% international traffic growth across 52 languages

How the DevToys.pro web app translated its entire UI into 52 languages with LocalePack — 5.8M tokens for $58.44 — and quadrupled its international organic traffic.

DevToys New Tab Chrome extension localized into 52 languages

DevToys New Tab: a Chrome extension localized UI + store listing in 52 languages

How the DevToys New Tab Chrome extension localized both its in-extension UI and its Chrome Web Store listing into 52 languages to reach a global audience.

The LocalePack site localized into 52 languages with LocalePack

LocalePack localized itself into 52 languages — with LocalePack

We used our own tool to translate the entire LocalePack site into 52 languages — 2.9M tokens for $27.37 — so developers worldwide find us in their own language.

ดูกรณีความสำเร็จทั้งหมด

ได้รับความไว้วางใจจากนักพัฒนาส่วนขยาย

“ช่วยประหยัดเวลางานจุกจิกไปได้หลายชั่วโมง อัปโหลด messages.json ของฉันแล้วได้คำแปลที่สมบูรณ์แบบกลับมาในรูปแบบเดียวกับที่ต้องการเป๊ะๆ”

Sarah K.

นักพัฒนาอิสระ, ส่วนขยาย AdBlock

“We ship the same _locales folder to Chrome, Firefox and Edge. One translation pass covers all three.”

Marcus T.

ผู้ดูแลส่วนขยาย

“ราคาที่โปร่งใสคือจุดที่ทำให้ตัดสินใจซื้อ ฉันรู้แน่ชัดว่าจะต้องจ่ายเท่าไรตั้งแต่ก่อนอัปโหลดอะไรทั้งนั้น”

Dev J.

ผู้ร่วมพัฒนาโอเพนซอร์ส

52

ภาษาที่รองรับ

100%

ผลลัพธ์ปลอดภัยต่อ placeholder

ZIP

พร้อมส่งขึ้นระบบ

คำถามที่พบบ่อย

ทุกสิ่งที่คุณต้องรู้เกี่ยวกับ LocalePack

Related developer guides

Deep dives on the formats, APIs and errors behind this page — written for developers, not translators.

messages.json format explained (with placeholders)

A complete reference for the WebExtension messages.json format: the message, description, and placeholders fields, $PLACEHOLDER$ syntax, $1 positional substitutions, and common mistakes.

WXT i18n: @wxt-dev/i18n and messages.json

How @wxt-dev/i18n compiles YAML, JSON, JSONC, JSON5 and TOML message files into standard _locales/{lang}/messages.json — setup, nested keys, plurals, substitutions, type safety, and how to translate a WXT project.

Plasmo i18n: the locales/ folder gotcha

Plasmo does not read _locales/ at the project root. The three paths it does accept, where default_locale actually lives, the alphabetical-default trap, and how to place a translated _locales ZIP correctly.

Adding i18n to a CRXJS extension

CRXJS ships no i18n helper and its docs have no i18n page. Here is the working pattern: put _locales under public/, declare default_locale in manifest.config.ts, and call chrome.i18n directly.

Browse all guides →

พร้อมส่ง browser extension ของคุณไปทั่วโลกแล้วหรือยัง?

จ่ายครั้งเดียว - ดาวน์โหลด ZIP - ส่งได้ทั่วโลก

ลองใช้ LocalePack
LocalePack
คู่มือความเป็นส่วนตัวข้อกำหนดฝ่ายสนับสนุน

© 2025 LocalePack. สงวนลิขสิทธิ์

โปรเจกต์นี้แปลด้วย LocalePack logoLocalePack