Skip to content

Instantly share code, notes, and snippets.

@revooms
Last active October 23, 2022 10:48
Show Gist options
  • Save revooms/faf0dcb2bdd766a137453445b3ae4869 to your computer and use it in GitHub Desktop.
Save revooms/faf0dcb2bdd766a137453445b3ae4869 to your computer and use it in GitHub Desktop.
UnPoint - Remove useless virtual points from websites
/* ==UserStyle==
@name UnPoint
@namespace github.com/revooms
@version 0.0.1
@description Remove useless virtual points from websites
@author revooms
@homepageURL https://gist.github.com/revooms/faf0dcb2bdd766a137453445b3ae4869#file-unpoint-user-css
@updateURL https://gist.github.com/revooms/faf0dcb2bdd766a137453445b3ae4869/raw/UnPoint.user.css
==/UserStyle== */
@-moz-document domain("stackoverflow.com") {
ul.s-user-card--awards,
.s-post-summary--stats-item:first-child,
.user-details .-flair,
.js-vote-count {
display: none !important;
}
}
@-moz-document domain("imgur.com") {
.point-info-points,
.post-action-stats-points,
.author span.comment-meta-spacer {
display: none !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment