Skip to content

Instantly share code, notes, and snippets.

@wazowski78
Forked from basilesimon/README.md
Created October 2, 2018 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wazowski78/ebfe73311acfaf7761680583031519ef to your computer and use it in GitHub Desktop.
Save wazowski78/ebfe73311acfaf7761680583031519ef to your computer and use it in GitHub Desktop.
discreet-whatsapp-web

A more discreet Whatsapp

This stylesheet intends to render the Whatsapp Web interface more discreet.

It will hide contact names and blur their pictures just enough so you recognise them.
The messages themselves will be blurred as well and reveal on hovering them with your mouse.
Incoming and outgoing pictures and media will be blurred and greyed out to remove obvious colour dominances, such as blood or skin.

Installation

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("web.whatsapp.com") {
/* Hide names */
.chat-title {
visibility: hidden;
}
/* Blur and gray out incoming/outgoing pictures in chat feed */
.image-thumb-body {
filter: blur(20px) grayscale(80%);
}
/* Blur just a bit the contact pictures */
.avatar-image, .icon-user-default-square {
filter: blur(3px);
}
/* Blur messages - but not on hover */
.message {
filter: blur(2px);
-webkit-transition: all .1s ease;
-moz-transition: all .1s ease;
transition: all .1s ease;
}
.message:hover {
filter: blur(0px);
-webkit-transition: all .1s ease;
-moz-transition: all .1s ease;
transition: all .1s ease;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment