Translator

Press (F2) to Translate.

Από την 27/10/2020. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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==
// @version 4.0.2.2
// @author wack.3gp
// @copyright 2019+ , wack.3gp (https://greasyfork.org/users/4792)
// @description Press (F2) to Translate.
// @description:de Drücken Sie (F2) zum übersetzen.
// @include *://*
// @exclude *greasyfork.org/*scripts/4610-*
// @exclude *greasyfork.org/*scripts/4610/*
// @license CC BY-NC-ND 4.0; http://creativecommons.org/licenses/by-nc-nd/4.0/
// @name Translator
// @name:de Übersetzer
// @namespace https://greasyfork.org/users/4792
// @supportURL https://greasyfork.org/scripts/4610/feedback
// @compatible Chrome tested with Tampermonkey
// @grant GM_notification
// ==/UserScript==

if (GM_info.script.copyright.includes(GM_info.script.namespace)) {
  // nothing
}
else {
  location.href = GM_info.script.supportURL.replace("feedback", "");
  alert("Please install the Orginal Version");
}
// ===============

// ==Key==
document.onkeydown = openPage;

function openPage(e) {
  e = window.event ? event : e;
  if (e.keyCode == 113) {
    location.href = "http://translate.google.com/translate?sl=auto&u=" + window.location;
    GM_notification({
      title: GM_info.script.name,
      text: "Post a review, comment, or question",
      onclick: function () {
        location.href = GM_info.script.supportURL;
      },
    });
    console.log("Post a review, comment, or question\n" + GM_info.script.supportURL + "\n\nCopyright " + GM_info.script.copyright);
  }
}
// ==============