Greasy Fork is available in English.

Discord antihijack clicks

Prevents discord from hijacking right and middle mouse button clicks. That means your context menu will be the same as usual.

// ==UserScript==
// @name        Discord antihijack clicks
// @namespace   Violentmonkey Scripts
// @match       https://discord.com/*
// @grant       none
// @version     1.0
// @license     0BSD
// @author      -
// @description Prevents discord from hijacking right and middle mouse button clicks. That means your context menu will be the same as usual.
// ==/UserScript==

document.addEventListener("contextmenu", e => e.stopPropagation(), true);
document.addEventListener("auxclick", e => e.stopPropagation(), true);