NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name 句解霸回车 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 句解霸回车 // @author SUNSHINE // @match http://www.en998.com/* // @grant none // @license MIT // @copyright 2020, SUNbrightness (https://openuserjs.org/users/SUNbrightness) // ==/UserScript== (function() { $(document).keyup(function (event){ console.log(event); var metaKeyPressed = event.metaKey; var altKeyPressed = event.altKey; var shiftKey = event.shiftKey; if(event.keyCode==13){ GetAnalysis2(); } }); })();