I suggest a feature where it blurs NSFW images. Like a setting you can turn on. It get's annoying seeing them when looking through tags-
Quick one-liner for use with TamperMonkey. If you don't know how to use that, check out the Forum Rules (V2), Userscripts, & Forum Post Formatting thread.
// ==UserScript==
// @name Blur Dynasty Image Thumbnails
// @version 2025-04-12
// @description Blurs image thumbnails on the Dynasty Reader. This description is very necessary
// @author Zesc
// @match https://dynasty-scans.com/images*
// @match https://dynasty-scans.com/forum/*
// @grant none
// ==/UserScript==
(function() {'use strict'; for (var e of document.querySelectorAll("a.thumbnail")) if(e.dataset.content.includes("NSFW")) e.style.filter="blur(8px)";})();
This doesn't work on the images preview on the landing page though.
Edit: Updated to also work in the image thread.
last edited at Apr 13, 2025 6:13AM