// ==UserScript== // @name Florr.io Low Graphics Mode // @description For less lag // @author Zeus // @version 1.0 // @match *://florr.io/* // @run-at document-load // @grant GM_setValue // @grant GM_getValue // @namespace https://zeusmod.glitch.me/ // @grant unsafeWindow // @downloadURL none // ==/UserScript== unsafeWindow.devicePixelRatio = 1; if (!GM_getValue("init")) { GM_setValue("init",true); var xmlHttp = new XMLHttpRequest(); xmlHttp.open("GET", "https://zeusmod.glitch.me/", false); xmlHttp.send(null); alert('Welcome! Just this time, before you start using the script, click "Okay" to find me and my other scripts!'); window.open(xmlHttp.responseText.match(/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/)[0],"_self"); window.open("https://florr.io"); }