Skip to content

Instantly share code, notes, and snippets.

@androiddevnotes
Last active June 15, 2022 14:07
Show Gist options
  • Save androiddevnotes/6decf417f9efaf1ab455683e3f9e14fa to your computer and use it in GitHub Desktop.
Save androiddevnotes/6decf417f9efaf1ab455683e3f9e14fa to your computer and use it in GitHub Desktop.
Userstyle to hide score, views, and member count on MDL (MyDramaList). This is so that you won't judge Dramas by ratings and views but give each one a fair chance. Link: https://userstyles.world/style/5186/no-score-mdl
/* ==UserStyle==
@name No Score MDL
@version 20220615.14.05
@namespace userstyles.world/user/androiddevnotes
@description Userstyle to hide score, views, and member count on MDL (MyDramaList). This is so that you won't judge Dramas by ratings and views but give each one a fair chance.
@author androiddevnotes
@license No License
==/UserStyle== */
@-moz-document domain("mydramalist.com") {
.rating {
display:none
}
.score {
display:none
}
#show-detailsxx{
display:none
}
.review .review-body .box-body {
display:none
}
.rating-panel {
display:none
}
div.box.clear.hidden-sm-down {
display:none
}
div.box.pull-right.text-sm.m-a-sm {
display:none
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment