LukasLen / Privacy-Extension-For-WhatsApp-Web

Hides your WhatsApp messages until you hover over them.
https://pfwa.lukaslen.com
MIT License
118 stars 44 forks source link

Add an option to adjust blur amount #12

Open OJ7 opened 4 years ago

OJ7 commented 4 years ago

Is your feature request related to a problem? Please describe. I would like to be able to blur certain elements but to a certain amount so that they're partially visible.

Describe the solution you'd like An option to adjust blur amount (e.g. using a percentage).

Describe alternatives you've considered I was manually doing this using the Styler extension and just came about this extension. Here's the CSS I used:


._1Wn_k {
    color: transparent;
    text-shadow: 0 0 4px rgba(0,0,0,0.5);
}

._1Wn_k > span > img {
    filter: blur(4px)
}```