Auto Translate to English

Automatically translate web pages to English

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Auto Translate to English
// @namespace    https://discord.gg/VnxvMFbKbu
// @version      0.2
// @description  Automatically translate web pages to English
// @author       Pixel.Pilot
// @match        http://*/*
// @match        https://*/*
// @grant        GM_xmlhttpRequest
// @license You are not allowed to reuse this script for any purpose.
// ==/UserScript==
(function() {
    'use strict';

    function translateText(text, onSuccess, onError) {
        const url = `https://translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=en&dt=t&q=${encodeURIComponent(text)}`;
        GM_xmlhttpRequest({
            method: 'GET',
            url: url,
            onload: function(response) {
                const jsonResponse = JSON.parse(response.responseText);
                const translatedText = jsonResponse[0][0][0];
                if (translatedText) {
                    onSuccess(translatedText);
                } else {
                    onError();
                }
            },
            onerror: function(error) {
                onError(error);
            }
        });
    }

    function translateAllVisibleElements() {
        const allElements = document.querySelectorAll('*');
        allElements.forEach(element => {
            if (element.nodeType === Node.TEXT_NODE && element.parentElement.tagName !== 'SCRIPT') {
                translateText(element.textContent.trim(), 
                              translatedText => {
                                  element.textContent = translatedText;
                              },
                              () => {
                                  console.log(`Translation failed for: ${element.textContent}`);
                              });
            } else if (element.hasChildNodes() && element.tagName !== 'SCRIPT') {
                translateAllVisibleElementsRecursive(element);
            }
        });
    }

    function translateAllVisibleElementsRecursive(element) {
        element.childNodes.forEach(childNode => {
            if (childNode.nodeType === Node.TEXT_NODE && childNode.parentElement.tagName !== 'SCRIPT') {
                translateText(childNode.textContent.trim(), 
                              translatedText => {
                                  childNode.textContent = translatedText;
                              },
                              () => {
                                  console.log(`Translation failed for: ${childNode.textContent}`);
                              });
            } else if (childNode.hasChildNodes() && childNode.tagName !== 'SCRIPT') {
                translateAllVisibleElementsRecursive(childNode);
            }
        });
    }

    translateAllVisibleElements();

    // Update Ideas:
    // 1. Language Detection
    // 2. User Interaction (Button/Menu)
    // 3. Customization (Select Target Language)
    // 4. Error Handling (Display Messages)
    // 5. Performance Optimization
    // 6. Exclude Elements
    // 7. Translation Cache
    // 8. Settings Panel

})();