Hacker News - Antisocial

Remove social features such as upvotes and comment links from the main page of Hacker News

  1. /* ==UserStyle==
  2. @name Hacker News - Antisocial
  3. @namespace https://greasyfork.org/en/users/710405-ajhall
  4. @version 1.0.0
  5. @description Remove social features such as upvotes and comment links from the main page of Hacker News
  6. @author ajhall
  7. ==/UserStyle== */
  8. @-moz-document domain("news.ycombinator.com") {
  9. #hnmain td.subtext,
  10. #hnmain td.title + td,
  11. a[href="newcomments"],
  12. a[href="ask"] {
  13. display: none;
  14. }
  15.  
  16. #hnmain td.title {
  17. padding-right: 10px;
  18. padding-bottom: 3px;
  19. }
  20. }