GoogleTranslateEnhance

enhance the user experience of Google Translate

  1. // ==UserScript==
  2. // @name GoogleTranslateEnhance
  3. // @namespace https://github.com/Fadeness/Tamper-Monkey-Scripts
  4. // @version 0.2
  5. // @description enhance the user experience of Google Translate
  6. // @author Fadeness
  7. // @match https://translate.google.cn/*
  8. // @match https://translate.google.com/*
  9. // @grant none
  10. // @require https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. const source = $("#source");
  17.  
  18. source.on("mouseenter", function() {
  19. $(this).select();
  20. })
  21. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址