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
1import { Devs } from "@utils/constants";
2import definePlugin from "@utils/types";
3
4export default definePlugin({
5 name: "ShowAllMessageButtons",
6 description: "Always show all message buttons no matter if you are holding the shift key or not.",
7 tags: ["Chat", "Utility"],
8 authors: [Devs.Nuckyz],
9
10 patches: [
11 {
12 find: "#{intl::MESSAGE_UTILITIES_A11Y_LABEL}",
13 replacement: {
14 // isExpanded: isShiftPressed && other conditions...
15 match: /isExpanded:\i&&(.+?),/,
16 replace: "isExpanded:$1,"
17 }
18 }
19 ]
20});
21