ESJ Zone: Blurs NSFW Covers

Blurs the covers of NSFW novels on ESJ Zone.

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 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               ESJ Zone: Blurs NSFW Covers
// @name:zh-TW         ESJ Zone:模糊 18+ 封面
// @name:zh-CN         ESJ Zone:模糊 18+ 封面
// @description        Blurs the covers of NSFW novels on ESJ Zone.
// @description:zh-TW  模糊 ESJ Zone 18+ 小說的封面。
// @description:zh-CN  模糊 ESJ Zone 18+ 小说的封面。
// @icon               https://icons.duckduckgo.com/ip3/www.esjzone.cc.ico
// @author             Jason Kwok
// @namespace          https://jasonhk.dev/
// @version            1.2.0
// @license            MIT
// @match              https://www.esjzone.cc/
// @match              https://www.esjzone.cc/update
// @match              https://www.esjzone.cc/update/
// @match              https://www.esjzone.cc/list
// @match              https://www.esjzone.cc/list/
// @match              https://www.esjzone.cc/list-*
// @match              https://www.esjzone.cc/tags/*
// @match              https://www.esjzone.cc/tags-*
// @match              https://www.esjzone.me/
// @match              https://www.esjzone.me/update
// @match              https://www.esjzone.me/update/
// @match              https://www.esjzone.me/list
// @match              https://www.esjzone.me/list/
// @match              https://www.esjzone.me/list-*
// @match              https://www.esjzone.me/tags/*
// @match              https://www.esjzone.me/tags-*
// @run-at             document-idle
// @grant              GM.addStyle
// @supportURL         https://greasyfork.org/scripts/471774/feedback
// ==/UserScript==

GM.addStyle(`
    .card.nsfw .product-badge
    {
        z-index: 1;
    }

    .card.nsfw .main-img > div
    {
        filter: blur(var(--nsfw-blur-radius, 7.5px));
        transition: filter var(--nsfw-transition-duration, 0.3s);
    }

    .card.nsfw:hover .main-img > div, .card.nsfw:focus-within .main-img > div
    {
        filter: blur(0px);
    }
`);

const badges = document.querySelectorAll(".card .product-badge");
for (const badge of badges)
{
    badge.parentElement.classList.add("nsfw");
}