您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Allows you to filter discord servers from Disboard by things such as: How many members there are, what tags it has, and more.
Allows you to filter Discord servers on Disboard by:
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.