Google翻译 替换

对翻译后的字符串进行替换。github:https://github.com/Ahaochan/Tampermonkey,欢迎star和fork。

Από την 12/11/2017. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name        Google翻译 替换
// @name:zh     Google翻译 替换
// @name:ja 	Google Translate replace
// @name:en  	Google Translate replace
// @namespace   https://github.com/Ahaochan/Tampermonkey
// @version     0.0.1
// @description:zh 对翻译后的字符串进行替换。github:https://github.com/Ahaochan/Tampermonkey,欢迎star和fork。
// @description:ja Replace the translated string. Github:https://github.com/Ahaochan/Tampermonkey. Star and fork is welcome.
// @description:en Replace the translated string. Github:https://github.com/Ahaochan/Tampermonkey. Star and fork is welcome.
// @author      Ahaochan
// @include     http*://translate.google.*
// @grant       GM_setValue
// @grant       GM_getValue
// @require     https://code.jquery.com/jquery-2.2.4.min.js
// @description 对翻译后的字符串进行替换。github:https://github.com/Ahaochan/Tampermonkey,欢迎star和fork。
// ==/UserScript==

(function ($) {
    'use strict';

    var pattern = GM_getValue('pattern', ' ');
    var replace = GM_getValue('replace', '_');

    var $div = $('<div class="gt-lang-sugg-message goog-inline-block je"' +
        ' style="float: right; padding: 2px">' +
        '<input id="ahao-pattern" placeholder="pattern" style="width: 50px;" value="'+pattern+'"> >>' +
        '<input id="ahao-replace" placeholder="replace" style="width: 50px; margin: 0 4px;" value="'+replace+'">' +
        '<input id="ahao-button" type="button" class="jfk-button jfk-button-action" value="replace">' +
        '</div>');
    var $resultBox = $('#result_box');

    $div.find('#ahao-button').on('click', function () {
        var pattern = $div.find('#ahao-pattern').val();
        var replace = $div.find('#ahao-replace').val();
        GM_setValue('pattern', pattern);
        GM_setValue('replace', replace);

        var text = $resultBox.text();
        $resultBox.text(text.replace(new RegExp(pattern, 'gm'),replace));
    });

    $('#gt-lang-right').append($div);
})(jQuery);