Google Translate Page

Display option to translate the current page with google translate in violentmonkey menu

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name        Google Translate Page
// @namespace   432346-fke9fgjew89gjwe89
// @match       *://*/*
// @grant       GM_registerMenuCommand
// @noframes
// @version     1.2
// @icon        https://translate.google.com/favicon.ico
// @author      432346-fke9fgjew89gjwe89
// @description Display option to translate the current page with google translate in violentmonkey menu
// ==/UserScript==

(function () {
  'use strict';

  if (window.top != window.self)
    return;
  var d = document;

  function translate() {
    
    document.cookie = "googtrans=/auto/en; path=/";

    var d, b, o, v, p;
    b = (d = document).body;
    o = d.createElement('script');
    o.setAttribute('src', 'https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit');
    o.setAttribute('type', 'text/javascript');
    b.appendChild(o);
    v = b.insertBefore(d.createElement('div'), b.firstChild);
    v.id = 'google_translate_element';
    v.style.display = 'none';
    p = d.createElement('script');
    p.text = 'function googleTranslateElementInit(){new google.translate.TranslateElement({pageLanguage:"auto"},"google_translate_element");}';
    p.setAttribute('type', 'text/javascript');
    b.appendChild(p);
  }

  GM_registerMenuCommand("Translate this page", translate)

})();