FXAA for voxiom (Only Visual)

Creates a transparent square with 1px blur on the whole screen. Attempting to blur the distance

// ==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://gf.qytechs.cn/users/1077599
// ==/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);

})();

QingJ © 2025

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