Voxiom.io fps booster + anticheat remover

Voxiom fps booster, and anticheat remover

// ==UserScript==
// @name         Voxiom.io fps booster + anticheat remover
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Voxiom fps booster, and anticheat remover
// @match        https://voxiom.io/*
// @author       Code Meteor dev
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    window.onblur = function() {
        // Simulate losing focus
        Object.defineProperty(document, 'hidden', {value: true});
        document.dispatchEvent(new Event('visibilitychange'));
    };
})();