Make Chrome not Translate Code and Formula

For Google Translate, you can customize and specify tags and keywords without translating

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Make Chrome not Translate Code and Formula
// @name:zh-cn   让谷歌浏览器不翻译代码和公式
// @name:en      Make Chrome not Translate Code and Formula
// @description  For Google Translate, you can customize and specify tags and keywords without translating
// @author       @amormaid
// @run-at       document-end
// @namespace    http://tampermonkey.net/
// @version      1.6.2
// @description:zh-cn 针对谷歌翻译,可以自定义指定标签、关键词不翻译
// @description:en  For Google Translate, you can customize and specify tags and keywords without translating
// @match        *://*/*
// @license      MIT
// @grant        none
// ==/UserScript==




(function () {
    'use strict'

    console.log('not translate ready!');
    const root = document.getElementsByTagName('html')[0];
    root.classList.remove('notranslate');
    root.removeAttribute('translate');

    let action_id = undefined
    function setNotTranslate() {
        const list = [
            ...(document.getElementsByTagName("math") || []),
            ...(document.getElementsByTagName("svg") || []),
            ...(document.getElementsByTagName("tex-math") || []),
            ...(document.getElementsByClassName("MathJax"))
        ];
        Array.from(list).forEach(e => e.classList.add('notranslate'));
        Array.from(list).forEach(e => e.setAttribute('translate', 'no'));
        console.log('not translate complete')
    }
    action_id = setTimeout(setNotTranslate, 500);

    const observerOptions = {
        childList: true,
        subtree: true,
    };

    const observer = new MutationObserver((records, observer) => {
        for (const record of records) {
            // console.log('record is ', record.target.tagName )
            if (["math","svg","tex-math"].includes(record.target.tagName.toLowerCase()) || ["MathJax"].some(class_name => record.target.classList.contains(class_name))) {
                action_id && clearTimeout(action_id)
                action_id = setTimeout(setNotTranslate, 500);
            }

        }
    });
    observer.observe(document.body, observerOptions);



})();