Google翻译 替换

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

目前為 2017-11-12 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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 对翻译后的字符串进行替换。github:https://github.com/Ahaochan/Tampermonkey,欢迎star和fork。
// @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
// ==/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);