Greasy Fork 还支持 简体中文。

Magic Twitter translate with DeepL

Adds external translation with DeepL

目前為 2021-03-10 提交的版本,檢視 最新版本

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

You will need to install an extension such as Tampermonkey to install this script.

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Magic Twitter translate with DeepL
// @namespace    https://github.com/magicoflolis
// @version      0.6
// @description  Adds external translation with DeepL
// @author       Magic of Lolis
// @match        https://twitter.com/*
// @grant        none
// @require      https://code.jquery.com/jquery-3.5.1.min.js
// ==/UserScript==

( () => {
    'use strict';

    let injectInterval = null,
        waitForHeadNodeInterval = null;
    function isHTML(str) {
        let doc = new DOMParser().parseFromString(str, "text/html");
        return Array.from(doc.body.childNodes).some(node => node.nodeType === 1);
    }

    function injectDeeplTranslationButton() {
        let translateButton = $("div[lang]").eq(0).siblings().eq(0).children("span"),
            deeplbtn = $("div[lang]").eq(0).siblings().eq(1).children("span"),
            translateBio = $('[data-testid="UserDescription"]').eq(0).siblings().eq(0).children("span"),
            deeplBio = $('[data-testid="UserDescription"]').eq(0).siblings().eq(1).children("span"),
            deepbtn = () => {
                let tweetContainer = translateButton.parent().siblings(),
                    tweetLang = tweetContainer.attr("lang"),
                    tweetContent = "",
                    deeplButton = translateButton.parent().clone().appendTo(translateButton.parent().parent());
                tweetContainer.children("span").each((index,item) => {
                    let tweetPart = $(item).html().trim();
                    if(tweetPart && tweetPart != "" && !isHTML(tweetPart)) {
                        tweetContent += " " + tweetPart;
                    }
                });
                deeplButton.children("span").html("Translate with DeepL");
                deeplButton.hover(function() {
                    $(this).css("text-decoration", "underline");
                }, function() {
                    $(this).css("text-decoration", "none");
                });
                deeplButton.on("click", () => {
                    window.open(`https://www.deepl.com/translator#${tweetLang}/en/${tweetContent}`,'_blank');
                })
            },
            biobtn = () => {
                let bioContainer = translateBio.parent().siblings(),
                    bioLang = bioContainer.attr("lang"),
                    bioContent = "",
                    deeplButton = translateBio.parent().clone().appendTo(translateBio.parent().parent());
                bioContainer.children("span").each((index,item) => {
                    let bioPart = $(item).html().trim();
                    if(bioPart && bioPart != "" && !isHTML(bioPart)) {
                        bioContent += " " + bioPart;
                    }
                });
                deeplButton.children("span").html("Translate with DeepL");
                deeplButton.hover(function() {
                    $(this).css("text-decoration", "underline");
                }, function() {
                    $(this).css("text-decoration", "none");
                });
                deeplButton.on("click", () => {
                    window.open(`https://www.deepl.com/translator#${bioLang}/en/${bioContent}`,'_blank');
                })
            };
            (deeplBio.length != 1 && translateBio.length > 0) ? biobtn() : false;
            (deeplbtn.length != 1 && translateButton.length > 0) ? deepbtn() : false;
            // (deeplBio.length != 1 && translateBio.length > 0) ? biobtn() : false;
            // (deeplbtn.length != 1 && translateButton.length > 0) ? deepbtn() : false;
            clearInterval(injectInterval);
            injectInterval = null;
    }

    function addObserverIfHeadNodeAvailable() {
        const target = $("head > title")[0],
        MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
        let observer = new MutationObserver((mutations) => {
            mutations.forEach( () => {
                if(injectInterval == null) {
                    injectInterval = setInterval(injectDeeplTranslationButton, 100);
                }
            });
        });
        if(!target) {
            return;
        }
        clearInterval(waitForHeadNodeInterval);
        observer.observe(target, { subtree: true, characterData: true, childList: true });
    }
    waitForHeadNodeInterval = setInterval(addObserverIfHeadNodeAvailable, 100);
})();