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.

作者
kellofkindles (kellofkindles)
今日安裝
0
安裝總數
3
評價
0 0 0
版本
1.0
建立日期
2025-03-05
更新日期
2025-03-05
尺寸
8.0 KB
授權條款
GNU GPLv3
腳本執行於

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.