Plugin

ShowAllMessageButtons

Always show all message buttons no matter if you are holding the shift key or not.

Chat Utility
index.ts
Download

Source

src/plugins/showAllMessageButtons/index.ts
1/*
2 * FiveCord — a Discord client mod
3 * Copyright (c) 2025 FiveCord
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
7import { Devs } from "@utils/constants";
8import definePlugin from "@utils/types";
9
10export default definePlugin({
11 name: "ShowAllMessageButtons",
12 description: "Always show all message buttons no matter if you are holding the shift key or not.",
13 tags: ["Chat", "Utility"],
14 authors: [Devs.Nuckyz],
15
16 patches: [
17 {
18 find: "#{intl::MESSAGE_UTILITIES_A11Y_LABEL}",
19 replacement: {
20 // isExpanded: isShiftPressed && other conditions...
21 match: /isExpanded:\i&&(.+?),/,
22 replace: "isExpanded:$1,"
23 }
24 }
25 ]
26});
27