Google translation replace

Automatically replace the \n and -\n in the content when you use Google Translate

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Google translation replace
// @version      2024-06-22
// @author       Sokranotes
// @namespace    http://tampermonkey.net/
// @description  Automatically replace the \n and -\n in the content when you use Google Translate
// @license      MIT
// @match        https://translate.google.cn/*
// @match        https://translate.google.com/*
// ==/UserScript==

document.getElementsByTagName("textarea")[0].addEventListener('input',
    function() {
        var curtxt = "";
        curtxt = document.getElementsByTagName("textarea")[0].value;
        //alert(curtxt);
        for (var i=0;i<curtxt.length;i++)
        {
            if(curtxt.indexOf("\n"))
            {
                curtxt = curtxt.replace("\n"," ");
            }
        }
        document.getElementsByTagName("textarea")[0].value = curtxt;
    }
);