mirror of
https://github.com/System-End/Vencord.git
synced 2026-04-19 22:05:11 +00:00
24 lines
661 B
TypeScript
24 lines
661 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: /0===(\i)\.length(?=.{0,25}?\(0,\i\.jsxs?\)\(.{0,75}?children:\1)/,
|
|
replace: "(Vencord.Api.ChatButtons._injectButtons($1,arguments[0]),$&)"
|
|
}
|
|
}
|
|
]
|
|
});
|