Greasy Fork is available in English.

Discord Hide Custom Status

A script that hides the custom status' of all users in Discord.

// ==UserScript==
// @name         Discord Hide Custom Status
// @description  A script that hides the custom status' of all users in Discord.
// @version      1.0
// @author       Midnight
// @namespace    https://google.com
// @match        https://discord.com/*
// @run-at       document-start
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
  "use strict";

  // Get the list of users.
  const users = document.querySelectorAll(".user-status");

  // Hide the custom status' of all users.
  for (const user of users) {
    user.style.display = "none";
  }
})();