Keep Your Code Clean
When Translating.

Stop Google Translate from mangling <pre> and <code> tags. Read technical docs comfortably in your language with intact code snippets.

technical-doc.html
Google Translate: ON (English → Japanese)
const init = () => {
  // 翻訳されると変数が壊れる...
  chrome.storage.sync.get(['有効'], (データ) => {
    if (!データ.有効) return;
    適用する();
  });
};
BEFORE (Broken)
Extension Active: Code Protected
const init = () => {
  // This part remains untranslated!
  chrome.storage.sync.get(['isEnabled'], (data) => {
    if (!data.isEnabled) return;
    applyNoTranslate();
  });
};
AFTER (Protected)

The Pain of Broken Code

Translating technical documentation often ruins code readability. Both block codes (<pre>) and inline codes (<code>) get mangled.

Protect pre & code

Automatically adds 'notranslate' class to both block code and inline code. No manual action needed.

Ignore Domain List

You can specify domains to exclude from the extension's operation via the settings popup.

SPA Ready

Works seamlessly on dynamic sites like React or Vue via smart DOM monitoring.

Ready to read docs faster?

Install the extension now and stop fighting with broken translations.

Install Now

For Google Chrome / Brave / Edge