Stop Google Translate from mangling <pre> and <code> tags. Read technical docs comfortably in your language with intact code snippets.
const init = () => {
// 翻訳されると変数が壊れる...
chrome.storage.sync.get(['有効'], (データ) => {
if (!データ.有効) return;
適用する();
});
};
const init = () => {
// This part remains untranslated!
chrome.storage.sync.get(['isEnabled'], (data) => {
if (!data.isEnabled) return;
applyNoTranslate();
});
};
Translating technical documentation often ruins code readability. Both block codes (<pre>) and inline codes (<code>) get mangled.
Automatically adds 'notranslate' class to both block code and inline code. No manual action needed.
You can specify domains to exclude from the extension's operation via the settings popup.
Works seamlessly on dynamic sites like React or Vue via smart DOM monitoring.
Install the extension now and stop fighting with broken translations.
Install NowFor Google Chrome / Brave / Edge