Blurs the IP address, location, and ISP information on fast.com to enhance privacy by obfuscating sensitive data.
Fast.com Info Blur by Htbatmann
Details
AuthorHtbatmann
LicenseMIT
CategoryFast.com
Created
Updated
Size555 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This userstyle applies a blur effect to the IP address, location, and ISP information displayed on fast.com.
It helps protect user privacy by making sensitive information less visible.
The blur effect is removed on hover to allow viewing the details when needed.
Source code
/* ==UserStyle==
@name Fast.com Info Blur
@version 20240729.03.17
@namespace userstyles.org
@description Blurs the IP address, location, and ISP information on fast.com to enhance privacy by obfuscating sensitive data.
@author Endsouls
@license MIT
==/UserStyle== */
@-moz-document url-prefix("https://fast.com/#") {
#user-location, #user-ip, #user-isp {
filter: blur(5px);
user-select: none; /* Prevent text selection */
}
#user-location:hover, #user-ip:hover, #user-isp:hover {
filter: none;
}
}