您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Just want to use the translation service normally, you can also cooperate with other purification plug-ins(只是想正常的使用翻译服务,你也可以配合其他净化插件)
// ==UserScript== // @name Youdao Translator Redirect // @namespace http://tampermonkey.net/ // @version 2.2 // @description Just want to use the translation service normally, you can also cooperate with other purification plug-ins(只是想正常的使用翻译服务,你也可以配合其他净化插件) // @author Bela Proinsias // @license MIT // @match fanyi.youdao.com/* // @grant none // ==/UserScript== (function() { 'use strict'; function redirectToTextTranslate() { if (window.location.hash.includes("#/AITranslate")) { window.location.hash = "#/TextTranslate"; } } // Initial check redirectToTextTranslate(); setInterval(redirectToTextTranslate, 500); // Listen for hash changes window.addEventListener('hashchange', redirectToTextTranslate, false); // Monitor for link clicks and changes document.addEventListener('click', function() { setTimeout(redirectToTextTranslate, 100); }, true); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址