// ==UserScript== // @name Florr.io leave the current game by pressing Escape // @author Zeus // @version 1.0 // @description You lazy? Good! This script allows you to quit the current party you are in by pressing escape instead of going all the way to the top left corner in order to do so. // @match *://florr.io/* // @run-at document-load // @namespace none // @downloadURL none // ==/UserScript== window.addEventListener("keydown", function(e) { if (e.keyCode == 27) { e.preventDefault(); cp6.disconnect(); } })