Google translation replace

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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;
    }
);