Quora make blur images clear

Remove the filter attribute from images with the q-box class on Quora to make them clearer.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Quora make blur images clear
// @namespace    quora-make-blur-images-clear
// @version      1.0
// @description  Remove the filter attribute from images with the q-box class on Quora to make them clearer.
// @author       Your Name
// @match        https://www.quora.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const images = document.querySelectorAll('.q-box img');

    images.forEach(image => {
        if (image.hasAttribute('filter')) {
            image.removeAttribute('filter');
        }
    });
})();