您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Automatically replace the \n and -\n in the content when you use Google Translate
// ==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; } );