Translator

Press (F2) to Translate.

当前为 2019-10-21 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @version 4.0.1.8
  3. // @author wack.3gp
  4. // @copyright 2019+ , wack.3gp
  5. // @description Press (F2) to Translate.
  6. // @description:de Drücken Sie (F2) zum übersetzen.
  7. // @grant unsafeWindow
  8. // @include *://*
  9. // @license CC BY-NC 3.0; http://creativecommons.org/licenses/by-nc/3.0/
  10. // @name Translator
  11. // @name:de Übersetzer
  12. // @namespace wack.3gp
  13. // @supportURL https://gf.qytechs.cn/scripts/4610/feedback
  14. // ==/UserScript==
  15.  
  16. // ==VAR==
  17. var jslink = "javascript";
  18. // ==============
  19.  
  20. // ==Function==
  21. unsafeWindow.translate = function(){
  22. window.location="http://translate.google.com/translate?sl=auto&u="+window.location;
  23. };
  24. // ==============
  25.  
  26. // ==Key==
  27. document.onkeydown= openPage ;
  28. function openPage(e) {
  29. e= window.event ? event : e;
  30. if (e.keyCode == 113 ) {location.href=jslink+":translate()";}
  31. }
  32. // ==============

QingJ © 2025

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