您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Um script que adiciona o sistema de tradução ao novo Character AI
当前为
// ==UserScript== // @name Sistema de Tradução do Character.AI // @namespace http://tampermonkey.net/ // @version 0.1 // @description Um script que adiciona o sistema de tradução ao novo Character AI // @author Zlajoyast // @match https://character.ai/* // @icon https://www.google.com/s2/favicons?sz=64&domain=character.ai // @grant GM_setValue // @grant GM_getValue // @grant GM_xmlhttpRequest // @license MIT // ==/UserScript== (function () { 'use strict'; function getElementByXpath(path, elem = undefined) { let e = elem; if (e == undefined) e = document return document.evaluate(path, e, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; } function getElementsByXpath(path, elem = undefined) { let e = elem; if (e == undefined) e = document var nodes = document.evaluate(path, e, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); var result = []; for (var i = 0; i < nodes.snapshotLength; i++) { result.push(nodes.snapshotItem(i)); } return result; } // VARIAVEL DAS CONFIGURAÇÕES var Config = { LanguageFrom: "en", // IDIOMA INICIAL LanguageTo: "pt-BR", // TRADUÇÃO OFINAL AutoTranslate: false, delay: 1000, TextColor:"cyan" // COR DO TEXTO QUANDO TRADUZIDO } // getElementByXpath("div[2]/button",$0).onclick = ()=>{alert("ava")} var activetranslate; function Build_UI_Dialog(div) { let button = div.childNodes[0].childNodes[0].cloneNode(true); button.childNodes[0].childNodes[0].setAttribute("d", "M 16.848 8.0654 H 15.3014 l -1.8144 4.8038 A 12.528 12.528 90 0 1 8.8992 10.7611 a 12.4243 12.4243 90 0 0 3.0715 -6.2597 h 2.2507 a 0.864 0.864 90 0 0 0 -1.728 H 8.4974 V 0.864 a 0.864 0.864 90 1 0 -1.728 0 V 2.7734 H 1.0411 a 0.864 0.864 90 0 0 0 1.728 H 3.2962 a 12.4114 12.4114 90 0 0 3.0672 6.2597 A 12.7483 12.7483 90 0 1 1.4126 12.96 a 0.864 0.864 90 0 0 0.1858 1.728 a 0.6955 0.6955 90 0 0 0.1901 -0.0216 a 14.0659 14.0659 90 0 0 5.845 -2.7 a 13.824 13.824 90 0 0 5.2402 2.5488 L 9.8626 22.464 H 12.096 l 1.1664 -3.3523 H 18.8525 L 20.0318 22.464 h 2.255 Z m -6.6096 -3.564 a 10.2643 10.2643 90 0 1 -2.592 5.1235 a 10.2427 10.2427 90 0 1 -2.592 -5.1235 Z m 3.7498 12.5928 l 2.0866 -5.9746 L 18.144 17.0942 Z"); button.childNodes[0].childNodes[0].setAttribute("stroke-width", "1"); button.title = "Traduzir Tudo"; button.id = "TRANSLATORBUTTON"; button.className = button.className.replace("hover:bg-surface-elevation-1", ""); button.onclick = () => { if (Config.AutoTranslate == false) { button.className = button.className += " bg-primary"; Save_Config("AutoTranslate", true); AutoTranslate(); } else { Save_Config("AutoTranslate", false); button.className = button.className.replace(" bg-primary", ""); AutoTranslate(true); } } if (Config.AutoTranslate) button.className = button.className += " bg-primary"; div.appendChild(button); div.insertBefore(button, div.childNodes[1]); } async function Initialize_Script() { console.log("iniciado"); if (Config.AutoTranslate == true) { AutoTranslate(); } let maindialog = getElementByXpath("//main[contains(@class,'flex')]/div/div/div[2]/div[2]"); Build_UI_Dialog(maindialog); // ADICIONA O EVENTO DE CLICK NOS 3 PONTINHOS EM CADA DIALOGO setInterval(() => { var dialogs = getElementByXpath("//main[contains(@class,'flex')]/div/div/div/div[2]/div").childNodes; dialogs.forEach((element, index) => { let _id = makeid(5) if (element.getAttribute("idtranslation") == undefined) element.setAttribute("idtranslation", _id) let button = getElementByXpath("div[2]/button", element); if (button == null) return; if (button.getAttribute("onck") == null || button.getAttribute("onck") != "true") { button.onclick = () => { _clicked() } button.addEventListener("touchend", () => { // PARA USUÁRIOS MOVEIS _clicked() }); function _clicked() { setTimeout(() => { let div = getElementByXpath("//div[@data-radix-popper-content-wrapper]"); let buttondiv = div.childNodes[0].childNodes[0].cloneNode(true); buttondiv.childNodes[0].innerHTML = "Translate Dialog"; buttondiv.onclick = () => { TranslateDialog(_id); }; div.childNodes[0].appendChild(buttondiv); }, 50) } button.setAttribute("onck", "true"); } }); }, 1000); } function Initialize_Observer() { // OBSERVA SE O MENU A DIREITA FOR ABERTO, ASSIM EXECUTANDO A FUNÇÃO const observer = new MutationObserver(function (mutations_list) { mutations_list.forEach(function (mutation) { mutation.addedNodes.forEach(function (added_node) { if (added_node.role == 'dialog') { On_Dialog_Open(); } }); }); }); observer.observe(document.body, { subtree: false, childList: true }); } function On_Dialog_Open() { let dialog = getElementByXpath("//body/div[@role='dialog']/div[2]"); Build_UI_Dialog(dialog); } function AutoTranslate(remove = false) { if (remove) { clearInterval(activetranslate) activetranslate = undefined; return; } if (activetranslate != undefined) return; activetranslate = setInterval(() => { var dialogs = getElementByXpath("//main[contains(@class,'flex')]/div/div/div/div[2]/div").childNodes; // ENCONTRA O ELEMENTO DE CADA INTERAÇÃO DA CONVERÇA dialogs.forEach(element => { let dialogversions = getElementsByXpath("div//div[contains(@class,'prose')]", element) // ENCONTRA O TEXTO dialogversions.forEach(v => { // DUBPLICA if (v.getAttribute("translated") == "true") return; v.setAttribute("translated", "true"); const prose = v.cloneNode(true); v.parentNode.appendChild(prose); prose.childNodes.forEach((p) => { // COMEÇA A TRADUÇÃO DO TEXTO var response = Translate(p.innerHTML, Config.LanguageFrom, Config.LanguageTo); response.then((a) => { p.innerHTML = a; p.style.color = Config.TextColor; console.log("Traduzido texto"); }) }); }); }); }, 1000) } function TranslateDialog(id) { var dialog = getElementByXpath("//main[contains(@class,'flex')]/div/div/div/div[2]/div/div[@idtranslation='" + id + "']") // ENCONTRA O ELEMENTO DE CADA INTERAÇÃO DA CONVERÇA let dialogversions = getElementsByXpath("div//div[contains(@class,'prose')]", dialog) // ENCONTRA O TEXTO dialogversions.forEach(v => { // DUBPLICA if (v.getAttribute("translated") == "true") { v.parentNode.childNodes[2].remove(); } v.setAttribute("translated", "true"); const prose = v.cloneNode(true); v.parentNode.appendChild(prose); prose.setAttribute("scripttranslation", "true"); prose.childNodes.forEach((p) => { // COMEÇA A TRADUÇÃO DO TEXTO var response = Translate(p.innerHTML, Config.LanguageFrom, Config.LanguageTo); response.then((a) => { p.innerHTML = a; p.style.color = Config.TextColor; console.log("Traduzido texto"); }) }); }); } window.document.translate = (text, from, to) => { // TESTE Translate(text, from, to).then((e) => { console.log(e) }); } function Translate(text, from, to) { return new Promise((resolve) => { GM_xmlhttpRequest({ method: "GET", url: `https://translate.googleapis.com/translate_a/single?client=gtx&sl=${from}&tl=${to}&dt=t&q=${encodeURI(text)}`, onload: (ev) => { var json = JSON.parse(ev.responseText); let text = ""; json[0].forEach((t) => { text += t[0]; }) resolve(text); }, onerror: () => { console.error("Error"); } }); }) } function Save_Config(name, value) { // SALVA O VALOR DE UMA VARIAVEL E MANTEM OS OUTROS if (name != undefined) { Config[name] = value; GM.setValue("Config", Config); return; } // SALVA TUDO GM.setValue("Config", Config); }; async function Load_Config() {// OBTEM OS VALORES DA CONFIGURAÇÃO let _config = await GM.getValue("Config"); if (_config != undefined) { for (var k in _config) { Config[k] = _config[k] } } console.log("Script Settings", _config); Load(); }; function Load() { let interval = setInterval(function () { if (getElementByXpath("//main[contains(@class,'flex')]") != null) { Initialize_Script(); clearInterval(interval); } }, Config.delay); } var u = window.document.URL; navigation.addEventListener('navigate', (e) => { // DETECTA MUDANÇAS NO URL let newurl = new URL(e.destination.url); if (!newurl.pathname.startsWith("/chat/")) { u = newurl; } else { let oldurl = new URL(u); if (oldurl.pathname != newurl.pathname) { u = newurl; Load(); } } console.log("URL changed to : " + newurl); }) Initialize_Observer(); Load_Config(); function makeid(length) { let result = ''; const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; const charactersLength = characters.length; let counter = 0; while (counter < length) { result += characters.charAt(Math.floor(Math.random() * charactersLength)); counter += 1; } return result; } /* bg-outline : classe botão desligado bg-primary : Classe botão ativo */ })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址