Co-authored-by: sadan <117494111+sadan4@users.noreply.github.com> Co-authored-by: Nuckyz <61953774+Nuckyz@users.noreply.github.com>
24 lines
641 B
TypeScript
24 lines
641 B
TypeScript
/*
|
|
* Vencord, a Discord client mod
|
|
* Copyright (c) 2024 Vendicated and contributors
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
import { Devs } from "@utils/constants";
|
|
import definePlugin from "@utils/types";
|
|
|
|
export default definePlugin({
|
|
name: "ChatInputButtonAPI",
|
|
description: "API to add buttons to the chat input",
|
|
authors: [Devs.Ven],
|
|
|
|
patches: [
|
|
{
|
|
find: '"sticker")',
|
|
replacement: {
|
|
match: /return\(\i\.\i\|\|(?=\(.+?(\i)\.push)/,
|
|
replace: "$&(Vencord.Api.ChatButtons._injectButtons($1,arguments[0]),false)||"
|
|
}
|
|
}
|
|
]
|
|
});
|