Translator

Press (F2) to Translate.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name            Translator
// @name:de         Übersetzer
// @description     Press (F2) to Translate.
// @description:de  Drücken Sie (F2) zum übersetzen.
// @version         4.1.0.7
// @author          Wack.3gp (https://greasyfork.org/users/4792)
// @copyright       2013+, Wack.3gp
// @namespace       https://greasyfork.org/users/4792
// @license         CC BY-NC-ND 4.0; http://creativecommons.org/licenses/by-nc-nd/4.0/
// @icon            https://translate.google.com/favicon.ico
//
// @match           *://*/*
// @exclude         /^[a-z]{4}.*\/greasyfork\.org\/.*\/4610.*$
// @exclude         https://luna.amazon*
// @noframes
//
// @grant           GM_notification
//
// @compatible      Chrome tested with Tampermonkey
// @supportURL      https://greasyfork.org/scripts/4610/feedback
// @contributionURL https://www.paypal.com/donate/?hosted_button_id=BYW9D395KJWZ2
// @contributionAmount €1.00
// ==/UserScript==

/* jshint esversion: 9 */

(function() {
    'use strict';

    const _vault = "4792";
    const _isOriginal = GM_info.script.namespace.includes(_vault);

    const sendReviewNote = () => {
        GM_notification({
            title: GM_info.script.name,
            text: "Review or Question? Click here!",
            onclick: () => { window.open(GM_info.script.supportURL, '_blank'); }
        });
    };

    if (window.location.host.includes('translate.google') || window.location.hostname.includes('.translate.goog')) {
        if (_isOriginal) {
            sendReviewNote();
            console.log(`%c ${GM_info.script.name} %c (Verified Original)`, 
                        "background: #4285F4; color: white; font-weight: bold; padding: 2px 5px;", "color: #4285F4;");
        }
    }

    const runTranslation = (e) => {
        if (e.key === "F2") {
            if (_isOriginal) {
                location.href = `https://translate.google.com/translate?sl=auto&u=${encodeURIComponent(window.location.href)}`;
            } else {
                alert("Please install the Original Version");
                location.href = "https://greasyfork.org/scripts/4610";
            }
        }
    };

    window.addEventListener('keydown', runTranslation, { passive: true });
})();