A Vencord userplugin that visually badges servers in the TomFront network using Discord's own native rendering:
- Partnered servers show the Discord Partnered badge, and their owner gets the Partnered Server Owner badge on their profile.
- Content-creator servers show the Verified check.
- A server can be both Verified & Partnered.
The network list is fetched live from tomfront.com, so it stays up to date automatically.
Important
This plugin is 100% client-side and purely cosmetic. It only changes what you see on your client — nothing is sent to Discord's servers, and it is not real Discord verification or partnership. It only badges servers you're a member of.
You need Vencord installed from source (userplugins are not supported by the normal one-click installer). If you haven't set that up yet, follow Vencord's guide: https://docs.vencord.dev/installing/custom-plugins/
In short, you need: Git, Node.js, and pnpm (npm i -g pnpm), then a source clone of Vencord.
From the root of your Vencord source folder, create the userplugins folder if needed and clone this repo into it:
# (only if it doesn't already exist)
mkdir -p src/userplugins
git clone https://github.com/TomFront/TomFrontNetwork.git src/userplugins/TomFrontNetworkThen build and inject:
pnpm build
pnpm inject # skip if Vencord is already injected into DiscordFinally:
- Fully quit and reopen Discord (a
Ctrl+Rreload is not enough — this plugin has a native module that runs in the main process). - Open User Settings → Vencord → Plugins, search TomFrontNetwork, and enable it.
cd src/userplugins/TomFrontNetwork
git pull
cd ../../..
pnpm buildThen fully restart Discord.
Disable the plugin in Vencord settings, delete the src/userplugins/TomFrontNetwork folder, run pnpm build, and restart Discord.
GPL-3.0-or-later — see LICENSE.