// ==UserScript== // @name FXAA for voxiom (Only Visual) // @version 1.0 // @description Creates a transparent square with 1px blur on the whole screen. Attempting to blur the distance // @author Code Meteor // @match voxiom.io // @grant GM_addStyle // @namespace https://greasyfork.org/users/1077599 // @downloadURL https://update.greasyfork.cloud/scripts/474857/FXAA%20for%20voxiom%20%28Only%20Visual%29.user.js // @updateURL https://update.greasyfork.cloud/scripts/474857/FXAA%20for%20voxiom%20%28Only%20Visual%29.meta.js // ==/UserScript== (function() { 'use strict'; // Create a div element for the transparent square const square = document.createElement('div'); square.style.position = 'fixed'; square.style.top = '0'; square.style.left = '0'; square.style.width = '100%'; square.style.height = '100%'; square.style.backgroundColor = 'rgba(255, 255, 255, 0.0)'; square.style.backdropFilter = 'blur(0.3px)'; // You can change the value! If it`s higher the Blurrier (worse) it gets, so play with the values square.style.pointerEvents = 'none'; document.body.appendChild(square); })();