🏠 Home 

Greasy Fork is available in English.

Old reddit no users info

Remove subscribers and online users info from subreddits on Old Reddit


安装此脚本?
  1. // ==UserScript==
  2. // @name Old reddit no users info
  3. // @namespace https://github.com/AbdurazaaqMohammed
  4. // @author Abdurazaaq Mohammed
  5. // @version 1.1
  6. // @description Remove subscribers and online users info from subreddits on Old Reddit
  7. // @match https://old.reddit.com/r/*
  8. // @match https://np.reddit.com/r/*
  9. // @run-at document-start
  10. // @grant none
  11. // @homepage https://github.com/AbdurazaaqMohammed/userscripts
  12. // @supportURL https://github.com/AbdurazaaqMohammed/userscripts/issues
  13. // @license The Unlicense
  14. // ==/UserScript==
  15. (function() {
  16. 'use strict';
  17. (document.head || document.documentElement).appendChild(document.createElement('style')).textContent = '.subscribers, .users-online { display: none !important; }';
  18. })();