Florr.io leave the current game by pressing Escape

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.

// ==UserScript==
// @name		Florr.io leave the current game by pressing Escape
// @author		Zeus
// @version		1.1
// @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   https://zeusmod.glitch.me/
// ==/UserScript==

window.addEventListener("keydown", function(e) {
    if (e.keyCode == 27) {
        e.preventDefault();
        cp6.disconnect();
    }
})

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址