Greasy Fork is available in English.

Remove blur from images

10/19/2024, 5:24:55 PM

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name        Remove blur from images
// @namespace   Violentmonkey Scripts
// @match       https://cults3d.com/*
// @grant       none
// @version     1.2
// @author      JinxTheCat
// @description 10/19/2024, 5:24:55 PM
// ==/UserScript==

(function() {
    'use strict';
    const elements = document.querySelectorAll('div.img--blurred.painting');

    elements.forEach((el) => {
        el.className = 'painting';
    });
})();