Translator

Press (F2) to Translate.

Verze ze dne 28. 03. 2021. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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

/* jshint esversion: 9 */

document.onkeydown = openPage;

function openPage(F2) {
  if (GM_info.script.copyright.includes(GM_info.script.namespace)) {
    F2 = window.event ? event : F2;
    if (F2.keyCode == 113) {
      if (GM_getResourceText("meta").indexOf(GM_info.script.version) > -1) {
        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",
          timeout: "10000",
          onclick: function () {
            location.href = GM_info.script.supportURL;
          },
        });
      }
      else {
        console.warn("Please download " + GM_getResourceText("meta").replace(/.*(?=v.*\d\D\d\D\d\D\d)/gims, '').split('/')[0] + GM_info.script.supportURL.replace("feedback", ""));
        GM_notification({
          title: "Update!",
          text: "Please download " + GM_getResourceText("meta").replace(/.*(?=v.*\d\D\d\D\d\D\d)/gims, '').split('/')[0],
          onclick: function () {
            location.href = GM_info.script.supportURL.replace("feedback", "");
          },
        });
      }
    }
  }
  else {
    location.href = GM_info.script.supportURL.replace("feedback", "");
    alert("Please install the Orginal Version");
  }
}

if (window.location.host.includes('translate.google')) {
  console.log("Post a review, comment, or question\n" + GM_info.script.supportURL + "\n\nCopyright " + GM_info.script.copyright);
}
// ==============