KBin.social hide vote counters

Hide vote counters on posts and comments (until you place a vote yourself).

  1. // ==UserScript==
  2. // @name KBin.social hide vote counters
  3. // @namespace https://kbin.social/
  4. // @version 0.1
  5. // @description Hide vote counters on posts and comments (until you place a vote yourself).
  6. // @author H2SO4
  7. // @match https://kbin.social/*
  8. // @grant none
  9. // @license Whatever
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. const upvotes = document.querySelectorAll('span[data-subject-target="favCounter"]');
  14. const downvotes = document.querySelectorAll('span[data-subject-target="downvoteCounter"]');
  15. let votes = [];
  16. votes.push.apply(votes, upvotes);
  17. votes.push.apply(votes, downvotes);
  18. for(let i=0;i<votes.length;i++) {
  19. votes[i].style.display = "none";
  20. }
  21. })();