// ==UserScript== // @name Always L // @version 1.2 // @description Holds L for you // @author JaPNaA // @match *://diep.io/* // @grant none // @namespace https://greasyfork.org/users/117222 // @downloadURL none // ==/UserScript== (function() { function f(e){ var a = new KeyboardEvent("keydown", { bubbles: true, cancelable: true, shiftKey: false }); delete a.keyCode; Object.defineProperty(a, "keyCode", { "value": 76 }); dispatchEvent(a); } function a(e) { addEventListener(e, f); } for(var i of ["focus", "blur", "keyup"]) { a(i); } }());