Advanced Disboard Filter

Allows you to filter discord servers from Disboard by things such as: How many members there are, what tags it has, and more.

Auteur
kellofkindles (kellofkindles)
Nombre d'installations quotidiennes
0
Nombre d'installations
4
Évaluations
0 0 0
Version
1.0
Créer
2025-03-05
Mis à jour
2025-03-05
Taille
8,04 ko
Licence
GNU GPLv3
S'applique à

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.