您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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://greasyfork.org/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); })();