Google翻译自动中英互译

自动切换输出语言

目前为 2019-02-23 提交的版本。查看 最新版本

// ==UserScript==
// @name         Google翻译自动中英互译
// @description  自动切换输出语言
// @namespace    https://gf.qytechs.cn/users/197529
// @author       kkocdko
// @version      0.1
// @include      *://translate.google.cn/*
// ==/UserScript==
'use strict';

setInterval(() => {
    location.hash = document.querySelector('.tlid-open-small-source-language-list').innerText == '检测到英语'
        ? location.hash.replace('tl=en', 'tl=zh-CN')
        : location.hash.replace('tl=zh-CN', 'tl=en');
}, 200);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址