A simple, lightweight bookmarklet designed to instantly remove CSS blur effects from elements on a webpage.
Many websites use CSS properties (like filter: blur()) to hide or obscure content (e.g., spoilers, premium content, or answers) while the content remains present in the HTML.
This bookmarklet executes a tiny snippet of JavaScript that scans the entire document for any element with the CSS class name of .blur and immediately removes that class, thereby revealing the content.
A bookmarklet is essentially a piece of JavaScript code saved as a bookmark. When clicked, it runs the code on the page you are currently viewing.
Copy the complete code below. Do not use the code in a file; it must be used as the URL of a bookmark.
javascript:(function(){document.querySelectorAll('.blur').forEach(el=>el.classList.remove('blur'))})();The easiest way to install a bookmarklet is to manually create a new bookmark and paste the code into the URL field.
- Right-click on your browser's bookmarks bar.
- Select "Add page" or "Add bookmark...".
- Name: Give it a memorable name, like
Un-BlurerorShow Hidden Text. - URL/Location: Paste the entire code string from Step 1 into the URL or Location field.
- Click Save or Done.
- Navigate to the webpage where the content is blurred.
- Click the
Un-Blurerbookmark you just created on your bookmarks bar. - The content that was previously hidden by the
.blurclass should now be visible!
The bookmarklet executes the following JavaScript logic:
document.querySelectorAll('.blur')selects all HTML elements currently on the page that have the class nameblur..forEach(el => ...)iterates through this collection of elements.el.classList.remove('blur')removes the classblurfrom each element.
If the site uses the .blur class to apply the visual blur effect (via CSS properties like filter: blur(5px)), removing this class immediately removes the effect.
This bookmarklet only works if the target website uses the specific CSS class name .blur to apply the blurring effect. If a website uses a different class name (e.g., .spoiler-text, .hidden), this tool will not work.
https://denniskeefe.me/tools/