Greasy Fork is available in English.

谷歌翻译换行

try to take over the world!

À partir de 2020-10-13. Voir la dernière version.

// ==UserScript==
// @name         谷歌翻译换行
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://translate.google.cn/
// @require      https://cdn.staticfile.org/jquery/3.5.0/jquery.min.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    String.prototype.toLine = function() {
        let str = this;
        let _str = "";
        str.split('\n').map(_ => _.trim()).forEach(l => {
            _str += l ? l : '\r\n';
        });
        return _str;
    }
    window.onload = function() {
        let div = document.createElement('div');
        div.innerText = "去除换行";
        'tlid-input-button input-button header-button'.split(' ').forEach(cl => {
            div.classList.add(cl);
        });
        div.style.paddingLeft = "16px";
        div.style.marginLeft = "20px";
        div.style.lineHeight = "34px";
        $('#gb > div.gb_Ud.gb_ee.gb_4d.gb_3d > div.gb_Td.gb_1c.gb_2c').append(div);
        div.onclick = function() {
            let src = $('#source');
            src.val(src.val().toLine());
        }
    }
    // Your code here...
})();