// ==UserScript== // @name GoogleTranslateEnhance // @namespace https://github.com/Fadeness/Tamper-Monkey-Scripts // @version 0.2 // @description enhance the user experience of Google Translate // @author Fadeness // @match https://translate.google.cn/* // @match https://translate.google.com/* // @grant none // @require https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js // @downloadURL https://update.greasyfork.icu/scripts/380642/GoogleTranslateEnhance.user.js // @updateURL https://update.greasyfork.icu/scripts/380642/GoogleTranslateEnhance.meta.js // ==/UserScript== (function() { 'use strict'; const source = $("#source"); source.on("mouseenter", function() { $(this).select(); }) })();