As the title says make the synopsis is automatically scrollable and hide the scroll bar. the stupid scroll bar ruins the synopsis lines and you can't find your last word you read.
Scrollable Synopsis on MyAnimeList Genre Page by 666satana
Details
Author666satana
Licenseanyone
Categorymyanimelist
Created
Updated
Size621 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
I don't know, i just learned CSS and HTML so i made this, so i can read synopsis of stupid isekai on MAL without the stupid hidden scroll bar suddenly ruins my reading.
Source code
/* ==UserStyle==
@name Scrollable Synopsis on MyAnimeList Genre Page
@version 20230211.06.06
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://myanimelist.net/anime/genre/") {
.preline{
overflow: scroll !important;
}
.preline {
-ms-overflow-style: none !important;
scrollbar-width: none !important;
}
.preline::-webkit-scrollbar {
display: none !important; /* Safari and Chrome */
}
.synopsis {
-ms-overflow-style: none !important;
scrollbar-width: none !important;
}
.synopsis::-webkit-scrollbar {
display: none !important; /* Safari and Chrome */
}
}