Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/71307f0ae3ff861b0fdbb94bc925b88d.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Google(谷歌)翻译自动中英互译
// @description 自动切换输出语言
// @namespace https://greasyfork.org/users/197529
// @author kkocdko
// @version 0.3
// @include *://translate.google.cn/*
// @downloadURL none
// ==/UserScript==
'use strict';
document.querySelector('.sl-selector a').addEventListener('DOMSubtreeModified', function() {
location.hash = this.innerText == '检测到英语'
? location.hash.replace('tl=en', 'tl=zh-CN')
: location.hash.replace('tl=zh-CN', 'tl=en');
});