Plugin
ShowAllMessageButtons
Always show all message buttons no matter if you are holding the shift key or not.
1
import { Devs } from "@utils/constants";2
import definePlugin from "@utils/types";3
4
export 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