Fuck Reddit Karma (For New Reddit)

Hides anything related to karma on Reddit.

  1. // ==UserScript==
  2. // @name Fuck Reddit Karma (For New Reddit)
  3. // @namespace https://gf.qytechs.cn/en/users/14470-sewil
  4. // @description Hides anything related to karma on Reddit.
  5. // @include https://*.reddit.com/*
  6. // @version 1.0.0
  7. // @grant none
  8. // @require https://code.jquery.com/jquery-3.6.0.min.js
  9. // @require https://gitcdn.xyz/cdn/uzairfarooq/arrive/cfabddbd2633a866742e98c88ba5e4b75cb5257b/minified/arrive.min.js
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. const selectors = [
  14. '[id^=vote-arrows-] > div', // Comment/post karma
  15. '.Rz5N3cHNgTGZsIQJqBfgk, ._2fN55zgax6VM7DyEl9pOmM', // User profile karma
  16. '._2ETuFsVzMBxiHia6HfJCTQ._3_GZIIN1xcMEC5AVuv4kfa' // User profile comment karma
  17. ].join(',');
  18.  
  19. $(selectors).remove(); // Remove on page load
  20. $(document).arrive(selectors, function (element) { // Remove any elements appearing after page load
  21. $(this).remove();
  22. });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址