Allows you to filter Discord servers on Disboard by:
- Minimum number of members online
- Maximum number of members online
- What tags it has
- Whether a server has shown up on page already
This will also add a total member count next to the number of members currently online.
Configure the settings by modifying the following portion of code:
const REMOVE_DUPLICATES = true;
const MIN_ONLINE_COUNT = 0;
const MAX_ONLINE_COUNT = 20;
const FILTERED_TAGS = new Set(["rp","roleplay","dating","system","fandom","4chan"]);
const SERVER_DETAILS_RATE_LIMIT = 1500;
REMOVE_DUPLICATES
: Prevents the same server from showing up in the list twice. Formatted as either true
or false
.
MIN_ONLINE_COUNT
: Minimum number of members currently online. Formatted as any number.
MAX_ONLINE_COUNT
: Maximum number of members currently online. Formatted as any number.
FILTERED_TAGS
: List of which tags to hide. Formatted as comma separated lowercase strings surrounded by quotation marks all inside of new Set([])
.
SERVER_DETAILS_RATE_LIMIT
: How often to get the details of a server, such as total member count. Formatted as any number in ms.