Disables the "Sensitive Media" blur on everyone's Media tab
Twitter/X Disable Media Tab Blur by furfnsfw
Details
Authorfurfnsfw
LicenseNo License
CategoryTwitter
Created
Updated
Size680 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Updated to also fix blurring on the main feed.
Source code
/* ==UserStyle==
@name Twitter/X Disable Media Blur
@version 20240409.23.42
@namespace https://userstyles.world/user/furfnsfw
@description Disables the "Sensitive Media" blur on everyone's Media tab and feed
@author furfnsfw
@license No License
==/UserStyle== */
@-moz-document domain("twitter.com"), domain("x.com") {
li[id^='verticalGrid'] div *, article > div > div > div > div > div[id] > div > div > div > div > div {
filter: none !important;
}
li[id^='verticalGrid'] > div > div > div > div:last-child, article > div > div > div > div > div[id] > div > div > div > div > div + div:has(div[role="button"]){
display:none;
}
}