Skip to content

Instantly share code, notes, and snippets.

@androiddevnotes
Last active April 16, 2022 23:59
Show Gist options
  • Save androiddevnotes/1717f175465bfa422413f632996eaa9a to your computer and use it in GitHub Desktop.
Save androiddevnotes/1717f175465bfa422413f632996eaa9a to your computer and use it in GitHub Desktop.
Userstyle to hide scores, views, member count from MyAnimeList to give each anime, manga, light novel a fair chance. Link: https://userstyles.world/style/4220/no-score-mal
/* ==UserStyle==
@name No Score MAL
@version 20220416.23.57
@namespace userstyles.world/user/androiddevnotes
@description Userstyle to hide score, views, and member count on MAL (MyAnimeList). This is so that you won't judge Anime, Manga, and Light Novels by ratings and views but give each one a fair chance.
@author androiddevnotes
@license No License
==/UserStyle== */
@-moz-document url-prefix("https://myanimelist.net/") {
.ranking-digest .ranking-unit .info, .ranking-digest .ranking-unit .members {
display: none
}
.anime-detail-header-stats .stats-block {
display: none
}
.leftside {
display: none
}
.mb8 > div{
display: none
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment