您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Press (F2) to Translate.
当前为
// ==UserScript== // @version 4.0.2.3 // @name Translator // @name:de Übersetzer // @description Press (F2) to Translate. // @description:de Drücken Sie (F2) zum übersetzen. // @author wack.3gp // @copyright 2019+ , wack.3gp (https://gf.qytechs.cn/users/4792) // @include *://* // @exclude *gf.qytechs.cn/*scripts/4610-* // @exclude *gf.qytechs.cn/*scripts/4610/* // @license CC BY-NC-ND 4.0; http://creativecommons.org/licenses/by-nc-nd/4.0/ // @namespace https://gf.qytechs.cn/users/4792 // @supportURL https://gf.qytechs.cn/scripts/4610/feedback // @compatible Chrome tested with Tampermonkey // @grant GM_notification // ==/UserScript== if (GM_info.script.copyright.includes(GM_info.script.namespace)) { // nothing } else { location.href = GM_info.script.supportURL.replace("feedback", ""); alert("Please install the Orginal Version"); } // =============== // ==Key== document.onkeydown = openPage; function openPage(e) { e = window.event ? event : e; if (e.keyCode == 113) { location.href = "http://translate.google.com/translate?sl=auto&u=" + window.location; GM_notification({ title: GM_info.script.name, text: "Post a review, comment, or question", onclick: function () { location.href = GM_info.script.supportURL; }, }); console.log("Post a review, comment, or question\n" + GM_info.script.supportURL + "\n\nCopyright " + GM_info.script.copyright); } } // ==============
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址