Privacy for telegram
telegram privacy style by jamir-boop
Details
Authorjamir-boop
LicenseNo License
Categoryweb.telegram.org
Created
Updated
Size609 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name web.telegram.org - Nov 2023
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("web.telegram.org") {
.media-photo,
.media-video,
.chatlist-chat {
filter: grayscale(100%) blur(10px);
transition: filter 150ms;
}
.peer-title {
filter: grayscale(100%);
color: gray;
}
.media-photo:hover,
.media-video:hover,
.peer-title:hover,
.chatlist-chat:hover {
filter: none;
color: white;
}
}