Plugin
ShowAllMessageButtons
Always show all message buttons no matter if you are holding the shift key or not.
1
/*2
* FiveCord — a Discord client mod3
* Copyright (c) 2025 FiveCord4
* SPDX-License-Identifier: GPL-3.0-or-later5
*/6
7
import { Devs } from "@utils/constants";8
import definePlugin from "@utils/types";9
10
export 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