// ==UserScript== // @name Agar.io Troll Your Friends!! // @namespace http://tampermonkey.net/ // @version 0.1 // @description Forces the installer to split every time they press w LOL // @author Jack Burch // @match http://abs0rb.me/* // @match http://agar.io/* // @match http://agarabi.com/* // @match http://agarly.com/* // @match http://en.agar.bio/* // @match http://agar.pro/* // @match http://agar.biz/* // @grant none // @run-at document-end // @downloadURL https://update.greasyfork.icu/scripts/22074/Agario%20Troll%20Your%20Friends%21%21.user.js // @updateURL https://update.greasyfork.icu/scripts/22074/Agario%20Troll%20Your%20Friends%21%21.meta.js // ==/UserScript== window.addEventListener('keydown', keydown); function keydown(event) { if (event.keyCode == 87) { $("body").trigger($.Event("keydown", { keyCode: 32})); $("body").trigger($.Event("keyup", { keyCode: 32})); } } //#JasonMcAssHatforTrumpsVP