🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Google Translate static toolbar

This script moves Google Translate output's toolbar (with the buttons to Copy, Listen, Share etc.) to the top. Thanks to that, the toolbar position is static regardless of translation output. Useful for some things, like mouse-pos macros.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

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

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name            Google Translate static toolbar
// @name:pl         Statyczny przybornik Google Translate
// @name:dk         Statisk værktøjslinje til Google Translate
// @include         https://translate.google.*/*
// @grant           none
// @description     This script moves Google Translate output's toolbar (with the buttons to Copy, Listen, Share etc.) to the top. Thanks to that, the toolbar position is static regardless of translation output. Useful for some things, like mouse-pos macros.
// @description:pl  Skrypt przenosi pasek narzędziowy (Kopiuj, Odsłuchaj, Udostępnij, etc.) tłumaczenia wyjściowego Google Translate na górę panelu. Dzięki temu przybornik jest statyczny, niezależnie od długości tłumaczenia. Przydatne w niektórych sytuacjach, np. tworzeniu makro używających pozycji kursora.
// @description:dk  Flytes værktøjslinjen til toppen af oversættelsesudskrivningsboksen.
// @version 0.0.1.20181204211407
// @namespace https://greasyfork.org/users/153635
// ==/UserScript==
// @author          Nullmaruzero, Kamaz91

// Run event listener in order to run the script only after the page is loaded completely.
window.addEventListener('load', function() {

    // Define elements
    const target = "tlid-results-container results-container";
    const toolboxDiv = '.result-footer.source-or-target-footer.tlid-copy-target';
    var container = document.querySelector('.tlid-results-container.results-container')
    var outputDiv = document.querySelector('.tlid-result-error.error-placeholder.placeholder');

    // Change toolbox position
    let toolbox = document.querySelector(toolboxDiv)
    toolbox.style.position = "absolute";
    toolbox.style.top = "-10px";


    /* ADD MUTATION OBSERVER BELOW
    This is required since the new Material Design version of Google Translate destroys the existing (old) result toolbar and creates a new one with each translation. */

    // Define observer config for tracked changes/mutations.
    var observerConfig = {
        childList: true
    };

    // Callback function to execute when mutations are observed
    var callback = function(mutationsList, observer) {
        mutationsList.forEach(function(mutation){
            if(mutation.type === "childList" && mutation.target.className === target){
                let container = document.querySelector(toolboxDiv);
                container.style.position = "absolute";
                container.style.top = "-10px";
            }
        });
    };

    // Create an observer instance linked to the callback function
    var observer = new MutationObserver(callback);

    // Start observing the target node for configured mutations.
    observer.observe(container, observerConfig);

}, false);