Show HN: Kill Blur Backdrop Filter Bookmarklet

2 days ago 3

I'm noticing recently that there is an emerging website development/website design trends, that is adding as much blur backdrop filter to your website as much as possible.

It's already annoying enough that website developers adds thick sticky navbars that covers 10% of your website, now they want me to make my laptop fan spins faster for no benefit?

Try below

Kill this using the bookmarklet

Photo by Paul Jarvis

Code

(function () { var i, e = document.querySelectorAll("body *"); for (i = 0; i < e.length; i++) { if (getComputedStyle(e[i]).backdropFilter.trim().startsWith("blur")) { e[i].style.backdropFilter = "none"; } } })();

Alternative Methods

Firefox

As an alternative, on Firefox, you can enter about:config to your address bar, search for `layout.css.backdrop-filter.enabled`. More or less like this:

config where the search bar is filled with "backdrop" and below it is an option named `layout.css.backdrop-filter.enabled`. The option is turned on in this screenshot, indicated by the "true" on the center.

If you find the option and the option is set as "true", click the button on the right side to toggle it into "false". This way the backdrop-filter feature is turned off.

Chrome/Chromium

There isn't any that I know of :/

© 2025 Muhammad Rizqi Ardiansyah

Read Entire Article