您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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.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 https://github.com/ZeusFlorr/Mod // ==/UserScript== window.addEventListener("keydown", function(e) { if (e.keyCode == 27) { e.preventDefault(); cp6.disconnect(); } }) if (!localStorage.zeus) { localStorage.zeus = "Y"; alert('Welcome! Just this time, before you start using the script, click "Okay" to find me and my other scripts!'); window.open("https://github.com/ZeusFlorr/Mod","_self"); window.open("https://florr.io"); }