Only changes the background colour, the size of the comic strip (width) and turns off scroll on click.
MangaDex.org Personal Style by Nobepico

Details
AuthorNobepico
LicenseNo License
Categorymangadex
Created
Updated
Code size481 B
Code checksum169db82
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name MangaDex.org
@version 20241103.02.04
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://mangadex.org/chapter/") {
/* Remove scroll on click */
.min-w-0.relative.pages-wrap.ls.md--reader-pages {
pointer-events: none;
}
/* Change background colour */
.overflow-x-auto.flex.items-center.h-full {
background: hsl(210 10% 5%) !important;
}
/* Change comic strip width */
.md--page.ls.limit-width.mx-auto {
width: 700px;
}
}